From cc4a4fb2abcdb6da8f625ce04fa54c1b9e37f3c1 Mon Sep 17 00:00:00 2001 From: Sergey Lyubka <valenok@gmail.com> Date: Sat, 16 Feb 2013 15:26:11 +0000 Subject: [PATCH] Added http_error() to struct mg_callbacks --- UserManual.md | 1 + 1 file changed, 1 insertion(+) diff --git a/UserManual.md b/UserManual.md index aac3f3f92..b4c6aa4c0 100644 --- a/UserManual.md +++ b/UserManual.md @@ -335,6 +335,7 @@ To start the embedded web server, call `mg_start()`. To stop it, call const char *path, size_t *data_len); void (*init_lua)(struct mg_connection *, void *lua_context); void (*upload)(struct mg_connection *, const char *file_name); + int (*http_error)(struct mg_connection *, int status); }; [hello.c](https://github.com/valenok/mongoose/blob/master/examples/hello.c) -- GitLab