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.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/daemon/internal.h b/src/daemon/internal.h
index 25d231ee..8aa08243 100644
--- a/src/daemon/internal.h
+++ b/src/daemon/internal.h
@@ -53,6 +53,10 @@
53#define MAX(a,b) ((a)<(b)) ? (b) : (a) 53#define MAX(a,b) ((a)<(b)) ? (b) : (a)
54#define MIN(a,b) ((a)<(b)) ? (a) : (b) 54#define MIN(a,b) ((a)<(b)) ? (a) : (b)
55 55
56/**
57 * Size by which MHD usually tries to increment read/write buffers.
58 */
59#define MHD_BUF_INC_SIZE 2048
56 60
57/** 61/**
58 * fprintf-like helper function for logging debug 62 * fprintf-like helper function for logging debug
@@ -147,6 +151,11 @@ struct MHD_Response {
147 size_t data_size; 151 size_t data_size;
148 152
149 /** 153 /**
154 * Size of the data buffer.
155 */
156 size_t data_buffer_size;
157
158 /**
150 * At what offset in the stream is the 159 * At what offset in the stream is the
151 * beginning of data located? 160 * beginning of data located?
152 */ 161 */