aboutsummaryrefslogtreecommitdiff
path: root/doc/chapters/exploringrequests.inc
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2009-02-06 06:12:33 +0000
committerChristian Grothoff <christian@grothoff.org>2009-02-06 06:12:33 +0000
commitb90c37b2f38d97952613e26627b3e8ebf9932112 (patch)
tree6f4cd17446da6dcf96ed53679e7c5b42e8c02869 /doc/chapters/exploringrequests.inc
parent8c8db696a0b7974b432100b8f4466f11163b66cc (diff)
downloadlibmicrohttpd-b90c37b2f38d97952613e26627b3e8ebf9932112.tar.gz
libmicrohttpd-b90c37b2f38d97952613e26627b3e8ebf9932112.zip
incompatible API change to allow 64-bit uploads and downloads on 32-bit systems
Diffstat (limited to 'doc/chapters/exploringrequests.inc')
-rw-r--r--doc/chapters/exploringrequests.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/chapters/exploringrequests.inc b/doc/chapters/exploringrequests.inc
index 11a169dd..d8790025 100644
--- a/doc/chapters/exploringrequests.inc
+++ b/doc/chapters/exploringrequests.inc
@@ -11,7 +11,7 @@ without much ado by the server.
11@verbatim 11@verbatim
12int answer_to_connection (void *cls, struct MHD_Connection *connection, const char *url, 12int answer_to_connection (void *cls, struct MHD_Connection *connection, const char *url,
13 const char *method, const char *version, const char *upload_data, 13 const char *method, const char *version, const char *upload_data,
14 unsigned int *upload_data_size, void **con_cls) 14 size_t *upload_data_size, void **con_cls)
15{ 15{
16 ... 16 ...
17 return MHD_NO; 17 return MHD_NO;