aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-03-18 11:39:58 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-03-18 11:39:58 +0300
commit90b00e6f803c69a2b6868cb9ec30e84b08456683 (patch)
tree30f6161f517c885e5a77a77f932f8ed968ac31e5 /src/include
parent41f35bbcb5d2771ea37ed920c34d8092a58dc432 (diff)
downloadlibmicrohttpd-90b00e6f803c69a2b6868cb9ec30e84b08456683.tar.gz
libmicrohttpd-90b00e6f803c69a2b6868cb9ec30e84b08456683.zip
Updated doxy for some of the MHD_create_response_*() functions
Diffstat (limited to 'src/include')
-rw-r--r--src/include/microhttpd.h18
1 files changed, 14 insertions, 4 deletions
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index fd9ddaba..087a7d96 100644
--- a/src/include/microhttpd.h
+++ b/src/include/microhttpd.h
@@ -3425,8 +3425,13 @@ MHD_set_response_options (struct MHD_Response *response,
3425 3425
3426 3426
3427/** 3427/**
3428 * Create a response object. The response object can be extended with 3428 * Create a response object.
3429 * header information and then be used any number of times. 3429 * The response object can be extended with header information and then be used
3430 * any number of times.
3431 *
3432 * If response object is used to answer HEAD request then the body of the
3433 * response is not used, while all headers (including automatic headers) are
3434 * used.
3430 * 3435 *
3431 * @param size size of the data portion of the response, #MHD_SIZE_UNKNOWN for unknown 3436 * @param size size of the data portion of the response, #MHD_SIZE_UNKNOWN for unknown
3432 * @param block_size preferred block size for querying crc (advisory only, 3437 * @param block_size preferred block size for querying crc (advisory only,
@@ -3448,8 +3453,13 @@ MHD_create_response_from_callback (uint64_t size,
3448 3453
3449 3454
3450/** 3455/**
3451 * Create a response object. The response object can be extended with 3456 * Create a response object.
3452 * header information and then be used any number of times. 3457 * The response object can be extended with header information and then be used
3458 * any number of times.
3459 *
3460 * If response object is used to answer HEAD request then the body of the
3461 * response is not used, while all headers (including automatic headers) are
3462 * used.
3453 * 3463 *
3454 * @param size size of the @a data portion of the response 3464 * @param size size of the @a data portion of the response
3455 * @param data the data itself 3465 * @param data the data itself