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.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/daemon/internal.h b/src/daemon/internal.h
index bcbe2724..101acfdd 100644
--- a/src/daemon/internal.h
+++ b/src/daemon/internal.h
@@ -156,8 +156,8 @@ struct MHD_Response {
156 156
157 157
158 158
159struct MHD_Session { 159struct MHD_Connection {
160 struct MHD_Session * next; 160 struct MHD_Connection * next;
161 161
162 struct MHD_Daemon * daemon; 162 struct MHD_Daemon * daemon;
163 163
@@ -196,7 +196,7 @@ struct MHD_Session {
196 struct sockaddr_in * addr; 196 struct sockaddr_in * addr;
197 197
198 /** 198 /**
199 * Thread for this session (if we are using 199 * Thread for this connection (if we are using
200 * one thread per connection). 200 * one thread per connection).
201 */ 201 */
202 pthread_t pid; 202 pthread_t pid;
@@ -279,7 +279,7 @@ struct MHD_Daemon {
279 279
280 struct MHD_Access_Handler default_handler; 280 struct MHD_Access_Handler default_handler;
281 281
282 struct MHD_Session * connections; 282 struct MHD_Connection * connections;
283 283
284 MHD_AcceptPolicyCallback apc; 284 MHD_AcceptPolicyCallback apc;
285 285