mirror of
https://github.com/cesanta/mongoose.git
synced 2024-11-29 06:08:59 +08:00
9101cd0339
PUBLISHED_FROM=1246247fc29eb9a75b986ff7bb2d2350a52c03fc
645 B
645 B
title | decl_name | symbol_kind | signature |
---|---|---|---|
mg_serve_http() | mg_serve_http | func | void mg_serve_http(struct mg_connection *nc, struct http_message *hm, struct mg_serve_http_opts opts); |
Serve given HTTP request according to the options
.
Example code snippet:
static void ev_handler(struct mg_connection *nc, int ev, void *ev_data) {
struct http_message *hm = (struct http_message *) ev_data;
struct mg_serve_http_opts opts = { .document_root = "/var/www" }; // C99
switch (ev) {
case MG_EV_HTTP_REQUEST:
mg_serve_http(nc, hm, opts);
break;
default:
break;
}
}