aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/response.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/response.c')
-rw-r--r--src/microhttpd/response.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/microhttpd/response.c b/src/microhttpd/response.c
index e1f2aebf..c91125eb 100644
--- a/src/microhttpd/response.c
+++ b/src/microhttpd/response.c
@@ -198,7 +198,7 @@ add_response_entry (struct MHD_Response *response,
198 * 198 *
199 * When reply is generated with queued response, some headers are generated 199 * When reply is generated with queued response, some headers are generated
200 * automatically. Automatically generated headers are only sent to the client, 200 * automatically. Automatically generated headers are only sent to the client,
201 * but not added back to the response. 201 * but not added back to the response object.
202 * 202 *
203 * The list of automatic headers: 203 * The list of automatic headers:
204 * + "Date" header is added automatically unless already set by 204 * + "Date" header is added automatically unless already set by
@@ -217,6 +217,8 @@ add_response_entry (struct MHD_Response *response,
217 * to enforce closure of the connection after sending this response. 217 * to enforce closure of the connection after sending this response.
218 * "Keep-Alive" cannot be enforced and will be removed automatically. 218 * "Keep-Alive" cannot be enforced and will be removed automatically.
219 * 219 *
220 * Headers are used in order as they were added.
221 *
220 * @param response the response to add a header to 222 * @param response the response to add a header to
221 * @param header the header name to add 223 * @param header the header name to add
222 * @param content the header value to add 224 * @param content the header value to add