aboutsummaryrefslogtreecommitdiff
path: root/src/daemon
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-01-27 09:52:23 +0000
committerChristian Grothoff <christian@grothoff.org>2011-01-27 09:52:23 +0000
commitd251f28095446c57221a94d3d4ccaf200149bf61 (patch)
treecbc882b19d0138f977e65f650f9017410379115a /src/daemon
parent1d5bf289b439e45efa6b54d62b578f0747359642 (diff)
downloadlibmicrohttpd-d251f28095446c57221a94d3d4ccaf200149bf61.tar.gz
libmicrohttpd-d251f28095446c57221a94d3d4ccaf200149bf61.zip
mantis 1652
Diffstat (limited to 'src/daemon')
-rw-r--r--src/daemon/internal.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/daemon/internal.h b/src/daemon/internal.h
index 6d90b787..4fb79583 100644
--- a/src/daemon/internal.h
+++ b/src/daemon/internal.h
@@ -33,7 +33,11 @@
33#include <gnutls/gnutls.h> 33#include <gnutls/gnutls.h>
34#endif 34#endif
35 35
36#define EXTRA_CHECKS MHD_YES 36/**
37 * Should we perform additional sanity checks at runtime (on our internal
38 * invariants)? This may lead to aborts, but can be useful for debugging.
39 */
40#define EXTRA_CHECKS MHD_NO
37 41
38#define MHD_MAX(a,b) ((a)<(b)) ? (b) : (a) 42#define MHD_MAX(a,b) ((a)<(b)) ? (b) : (a)
39#define MHD_MIN(a,b) ((a)<(b)) ? (a) : (b) 43#define MHD_MIN(a,b) ((a)<(b)) ? (a) : (b)