aboutsummaryrefslogtreecommitdiff
path: root/src/include/microhttpd.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/microhttpd.h')
-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