diff options
Diffstat (limited to 'src/daemon/internal.h')
-rw-r--r-- | src/daemon/internal.h | 10 |
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 @@ #define MAX(a,b) ((a)<(b)) ? (b) : (a) + +/** + * fprintf-like helper function for logging debug + * messages. + */ +void MHD_DLOG(const struct MHD_Daemon * daemon, + const char * format, + ...); + + /** * Header or cookie in HTTP request or response. */ |