2016-05-12 04:36:12 +08:00
|
|
|
---
|
|
|
|
title: "mg_send_head()"
|
|
|
|
decl_name: "mg_send_head"
|
|
|
|
symbol_kind: "func"
|
|
|
|
signature: |
|
|
|
|
void mg_send_head(struct mg_connection *n, int status_code,
|
|
|
|
int64_t content_length, const char *extra_headers);
|
|
|
|
---
|
|
|
|
|
2016-09-01 22:19:01 +08:00
|
|
|
Sends the response line and headers.
|
|
|
|
This function sends the response line with the `status_code`, and
|
|
|
|
automatically
|
2016-07-26 22:53:33 +08:00
|
|
|
sends one header: either "Content-Length" or "Transfer-Encoding".
|
2016-05-12 04:36:12 +08:00
|
|
|
If `content_length` is negative, then "Transfer-Encoding: chunked" header
|
|
|
|
is sent, otherwise, "Content-Length" header is sent.
|
|
|
|
|
|
|
|
NOTE: If `Transfer-Encoding` is `chunked`, then message body must be sent
|
|
|
|
using `mg_send_http_chunk()` or `mg_printf_http_chunk()` functions.
|
|
|
|
Otherwise, `mg_send()` or `mg_printf()` must be used.
|
2016-07-26 22:53:33 +08:00
|
|
|
Extra headers could be set through `extra_headers`. Note `extra_headers`
|
2016-05-12 04:36:12 +08:00
|
|
|
must NOT be terminated by a new line.
|
|
|
|
|