aboutsummaryrefslogtreecommitdiff
path: root/src/lib/request_resume.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2018-02-16 07:24:27 +0100
committerChristian Grothoff <christian@grothoff.org>2018-02-16 07:24:27 +0100
commita2f8683def34643b64a3c1afd00900fbe99f6d0f (patch)
tree8e7c0e2e6b8a20e0d71ec96f675a8b90c5277a53 /src/lib/request_resume.c
parente101aeb4a9e18d506bd93afc87ea55183128f2cd (diff)
downloadlibmicrohttpd-a2f8683def34643b64a3c1afd00900fbe99f6d0f.tar.gz
libmicrohttpd-a2f8683def34643b64a3c1afd00900fbe99f6d0f.zip
implement recv/send adapters
Diffstat (limited to 'src/lib/request_resume.c')
-rw-r--r--src/lib/request_resume.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/request_resume.c b/src/lib/request_resume.c
index b632d200..8a231292 100644
--- a/src/lib/request_resume.c
+++ b/src/lib/request_resume.c
@@ -66,6 +66,7 @@ MHD_request_resume (struct MHD_Request *request)
66/** 66/**
67 * Run through the suspended connections and move any that are no 67 * Run through the suspended connections and move any that are no
68 * longer suspended back to the active state. 68 * longer suspended back to the active state.
69 *
69 * @remark To be called only from thread that process 70 * @remark To be called only from thread that process
70 * daemon's select()/poll()/etc. 71 * daemon's select()/poll()/etc.
71 * 72 *
@@ -74,6 +75,7 @@ MHD_request_resume (struct MHD_Request *request)
74 */ 75 */
75bool 76bool
76MHD_resume_suspended_connections_ (struct MHD_Daemon *daemon) 77MHD_resume_suspended_connections_ (struct MHD_Daemon *daemon)
78/* FIXME: rename connections -> requests? */
77{ 79{
78 struct MHD_Connection *pos; 80 struct MHD_Connection *pos;
79 struct MHD_Connection *prev = NULL; 81 struct MHD_Connection *prev = NULL;