gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r4742 - libmicrohttpd/src/daemon


From: gnunet
Subject: [GNUnet-SVN] r4742 - libmicrohttpd/src/daemon
Date: Tue, 3 Apr 2007 18:14:41 -0600 (MDT)

Author: dpittman
Date: 2007-04-03 18:14:41 -0600 (Tue, 03 Apr 2007)
New Revision: 4742

Modified:
   libmicrohttpd/src/daemon/daemontest.c
Log:
First draft implementation of libmicrohttpd API. Many features incomplete at 
this time, some functionality has yet to be tested.

Modified: libmicrohttpd/src/daemon/daemontest.c
===================================================================
--- libmicrohttpd/src/daemon/daemontest.c       2007-04-04 00:09:13 UTC (rev 
4741)
+++ libmicrohttpd/src/daemon/daemontest.c       2007-04-04 00:14:41 UTC (rev 
4742)
@@ -58,7 +58,9 @@
 static int ahc_nothing(void * cls,
                       struct MHD_Session * session,
                       const char * url,
-                      const char * method) {
+                      const char * method,
+               const char * upload_data,
+               unsigned int * upload_data_size) {
   return MHD_NO;
 }
 
@@ -86,7 +88,9 @@
 static int ahc_echo(void * cls,
                    struct MHD_Session * session,
                    const char * url,
-                   const char * method) {
+                   const char * method,
+            const char * upload_data,
+            unsigned int * upload_data_size) {
   const char * me = cls;
   struct MHD_Response * response;
   int ret;





reply via email to

[Prev in Thread] Current Thread [Next in Thread]