aboutsummaryrefslogtreecommitdiff
path: root/src/daemon/internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/daemon/internal.h')
-rw-r--r--src/daemon/internal.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/daemon/internal.h b/src/daemon/internal.h
index 4beff728..9a3ec5a2 100644
--- a/src/daemon/internal.h
+++ b/src/daemon/internal.h
@@ -48,6 +48,16 @@
48 48
49#define MAX(a,b) ((a)<(b)) ? (b) : (a) 49#define MAX(a,b) ((a)<(b)) ? (b) : (a)
50 50
51
52/**
53 * fprintf-like helper function for logging debug
54 * messages.
55 */
56void MHD_DLOG(const struct MHD_Daemon * daemon,
57 const char * format,
58 ...);
59
60
51/** 61/**
52 * Header or cookie in HTTP request or response. 62 * Header or cookie in HTTP request or response.
53 */ 63 */