aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-09-04 10:47:22 +0000
committerChristian Grothoff <christian@grothoff.org>2016-09-04 10:47:22 +0000
commitbc616b31c7ccbeedb8eeaa2248ff3fc0b4264ddf (patch)
tree820845992071584db3590e76d3fc09c6d735fac6
parent64c6b9904a3c9f3c42d93aa4917ce50c3f7e941b (diff)
downloadlibmicrohttpd-bc616b31c7ccbeedb8eeaa2248ff3fc0b4264ddf.tar.gz
libmicrohttpd-bc616b31c7ccbeedb8eeaa2248ff3fc0b4264ddf.zip
update manual
-rw-r--r--doc/libmicrohttpd.texi9
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/libmicrohttpd.texi b/doc/libmicrohttpd.texi
index 2adfd51d..9a361064 100644
--- a/doc/libmicrohttpd.texi
+++ b/doc/libmicrohttpd.texi
@@ -109,9 +109,12 @@ example, using the @code{MHD_create_response_from_fd_at_offset} call
109to serve ranges from a file). MHD does understands headers that 109to serve ranges from a file). MHD does understands headers that
110control connection management (specifically, @code{Connection: close} 110control connection management (specifically, @code{Connection: close}
111and @code{Expect: 100 continue} are understood and handled 111and @code{Expect: 100 continue} are understood and handled
112automatically). @code{Connection: upgrade} is not yet supported. 112automatically). @code{Connection: upgrade} is supported by passing
113control over the socket (or something that behaves like the real
114socket in the case of TLS) to the application (after sending the
115desired HTTP response header).
113 116
114MHD also largely ignores the semantics of the different HTTP methods, 117MHD largely ignores the semantics of the different HTTP methods,
115so clients are left to handle those. One exception is that MHD does 118so clients are left to handle those. One exception is that MHD does
116understand @code{HEAD} and will only send the headers of the response 119understand @code{HEAD} and will only send the headers of the response
117and not the body, even if the client supplied a body. (In fact, 120and not the body, even if the client supplied a body. (In fact,
@@ -2169,8 +2172,6 @@ Set of actions to be performed on upgraded connections. Passed as an argument t
2169@item MHD_UPGRADE_ACTION_CLOSE 2172@item MHD_UPGRADE_ACTION_CLOSE
2170Closes the connection. Must be called once the application is done with the client. Takes no additional arguments. 2173Closes the connection. Must be called once the application is done with the client. Takes no additional arguments.
2171 2174
2172@item MHD_UPGRADE_ACTION_CORK
2173Uncork the TCP write buffer. Not implemented. Takes no additional arguments.
2174@end table 2175@end table
2175@end deftp 2176@end deftp
2176 2177