aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-03-06 19:56:30 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-03-07 21:29:40 +0300
commitf46f4b75dd3bc97f3e20403fde46d37087f89d61 (patch)
tree9faae8577a11a19808491990ed940283652526c7 /src/include
parente9292a95ec87a3c4fe1c1662fae4b3cf8d887bbb (diff)
downloadlibmicrohttpd-f46f4b75dd3bc97f3e20403fde46d37087f89d61.tar.gz
libmicrohttpd-f46f4b75dd3bc97f3e20403fde46d37087f89d61.zip
MHD_queue_response(): improved doxy
Diffstat (limited to 'src/include')
-rw-r--r--src/include/microhttpd.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index 42409403..d26702da 100644
--- a/src/include/microhttpd.h
+++ b/src/include/microhttpd.h
@@ -3224,6 +3224,11 @@ MHD_lookup_connection_value_n (struct MHD_Connection *connection,
3224 * For suspended connection this function can be called at any moment. Response 3224 * For suspended connection this function can be called at any moment. Response
3225 * will be sent as soon as connection is resumed. 3225 * will be sent as soon as connection is resumed.
3226 * 3226 *
3227 * If response object is used to answer HEAD request then the body of
3228 * the response is not used, while all headers (including automatic headers)
3229 * are used. In practice, the same response object can be used to respond to
3230 * both HEAD and GET requests.
3231 *
3227 * @param connection the connection identifying the client 3232 * @param connection the connection identifying the client
3228 * @param status_code HTTP status code (i.e. #MHD_HTTP_OK) 3233 * @param status_code HTTP status code (i.e. #MHD_HTTP_OK)
3229 * @param response response to transmit, the NULL is tolerated 3234 * @param response response to transmit, the NULL is tolerated