Update mg_http_serve_file() doc

This commit is contained in:
cpq 2021-01-07 16:21:01 +00:00
parent b7a79a556a
commit a4c9d1ecb7

View File

@ -650,7 +650,12 @@ void mg_http_serve_file(struct mg_connection *, struct mg_http_message *hm,
const char *extra_headers);
```
Serve static file.
Serve static file. Note that the `extra_headers` must end with `\r\n`. Here
is an example call:
```c
mg_http_serve_file(c, hm, "a.png", "image/png", "AA: bb\r\nCC: dd\r\n");
```
### mg\_http\_reply()