Commit f7c0a2ee authored by Yiming Sun's avatar Yiming Sun Committed by Cesanta Bot

Fix server_example.md

PUBLISHED_FROM=dfbfeaae983daa0412964ac0402759f632bf7aeb
parent 874b5bfd
...@@ -30,8 +30,8 @@ static void ev_handler(struct mg_connection *c, int ev, void *p) { ...@@ -30,8 +30,8 @@ static void ev_handler(struct mg_connection *c, int ev, void *p) {
// We have received an HTTP request. Parsed request is contained in `hm`. // We have received an HTTP request. Parsed request is contained in `hm`.
// Send HTTP reply to the client which shows full original request. // Send HTTP reply to the client which shows full original request.
mg_send_head(c, 200, hm.message.len, "Content-Type: text/plain"); mg_send_head(c, 200, hm->message.len, "Content-Type: text/plain");
mg_printf(c, "%.*s", hm.message.len, hm.message.p); mg_printf(c, "%.*s", (int)hm->message.len, hm->message.p);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment