From 0ff0788458f46f14d3b3e2dcb665a731d3aa2200 Mon Sep 17 00:00:00 2001 From: Sergey Lyubka <valenok@gmail.com> Date: Wed, 4 Jun 2014 12:32:31 +0100 Subject: [PATCH] Formatting change for mg_send_file() --- docs/API.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/API.md b/docs/API.md index 646c86db6..1db34ed4d 100644 --- a/docs/API.md +++ b/docs/API.md @@ -169,11 +169,11 @@ a response body. Mongoose provides functions for all three parts: send data in pieces by saving state in `struct mg_connection::connection_param` variable and returning `0`. Then Mongoose will call a handler repeatedly after each socket write. - - void mg_send_file(struct mg_connection *, const char *path); <!-- --> + void mg_send_file(struct mg_connection *, const char *path); + Tells Mongoose to serve given file. Mongoose handles file according to it's extensions, i.e. Mongoose will invoke CGI script if `path` has CGI extension, it'll render SSI file if `path` has SSI extension, etc. If `path` -- GitLab