aboutsummaryrefslogtreecommitdiff
path: root/doc/examples
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-05-05 18:01:09 +0000
committerChristian Grothoff <christian@grothoff.org>2013-05-05 18:01:09 +0000
commit1725bcf3c546fccbf22d7794bf7290fcc28c385d (patch)
tree0e45eb34ffc834c9ae2e3d22916c987a37158649 /doc/examples
parent8e796aefcc5980863088935033fe4d48d4a2e3fa (diff)
downloadlibmicrohttpd-1725bcf3c546fccbf22d7794bf7290fcc28c385d.tar.gz
libmicrohttpd-1725bcf3c546fccbf22d7794bf7290fcc28c385d.zip
-improvements to docs
Diffstat (limited to 'doc/examples')
-rw-r--r--doc/examples/sessions.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/examples/sessions.c b/doc/examples/sessions.c
index eff035df..870f9249 100644
--- a/doc/examples/sessions.c
+++ b/doc/examples/sessions.c
@@ -522,6 +522,7 @@ post_iterator (void *cls,
522 * 522 *
523 * @param cls argument given together with the function 523 * @param cls argument given together with the function
524 * pointer when the handler was registered with MHD 524 * pointer when the handler was registered with MHD
525 * @param connection handle to connection which is being processed
525 * @param url the requested url 526 * @param url the requested url
526 * @param method the HTTP method used ("GET", "PUT", etc.) 527 * @param method the HTTP method used ("GET", "PUT", etc.)
527 * @param version the HTTP version string (i.e. "HTTP/1.1") 528 * @param version the HTTP version string (i.e. "HTTP/1.1")
@@ -535,7 +536,7 @@ post_iterator (void *cls,
535 * @param upload_data_size set initially to the size of the 536 * @param upload_data_size set initially to the size of the
536 * upload_data provided; the method must update this 537 * upload_data provided; the method must update this
537 * value to the number of bytes NOT processed; 538 * value to the number of bytes NOT processed;
538 * @param con_cls pointer that the callback can set to some 539 * @param ptr pointer that the callback can set to some
539 * address and that will be preserved by MHD for future 540 * address and that will be preserved by MHD for future
540 * calls for this request; since the access handler may 541 * calls for this request; since the access handler may
541 * be called many times (i.e., for a PUT/POST operation 542 * be called many times (i.e., for a PUT/POST operation