aboutsummaryrefslogtreecommitdiff
path: root/src/daemon/daemontest.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/daemon/daemontest.c')
-rw-r--r--src/daemon/daemontest.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/daemon/daemontest.c b/src/daemon/daemontest.c
index b8d98efc..e110b139 100644
--- a/src/daemon/daemontest.c
+++ b/src/daemon/daemontest.c
@@ -58,7 +58,9 @@ static int apc_all(void * cls,
58static int ahc_nothing(void * cls, 58static int ahc_nothing(void * cls,
59 struct MHD_Session * session, 59 struct MHD_Session * session,
60 const char * url, 60 const char * url,
61 const char * method) { 61 const char * method,
62 const char * upload_data,
63 unsigned int * upload_data_size) {
62 return MHD_NO; 64 return MHD_NO;
63} 65}
64 66
@@ -86,7 +88,9 @@ static size_t copyBuffer(void * ptr,
86static int ahc_echo(void * cls, 88static int ahc_echo(void * cls,
87 struct MHD_Session * session, 89 struct MHD_Session * session,
88 const char * url, 90 const char * url,
89 const char * method) { 91 const char * method,
92 const char * upload_data,
93 unsigned int * upload_data_size) {
90 const char * me = cls; 94 const char * me = cls;
91 struct MHD_Response * response; 95 struct MHD_Response * response;
92 int ret; 96 int ret;