transmit http answer code using http_client

This commit is contained in:
MPR 2014-10-11 17:56:35 +02:00
parent 531fec34fd
commit df206bc05a
2 changed files with 4 additions and 0 deletions

View File

@ -36,6 +36,7 @@ static int ev_handler(struct mg_connection *conn, enum mg_event ev) {
case MG_REPLY:
// Send reply to the original connection
orig = (struct mg_connection *) conn->connection_param;
mg_send_status(orig, conn->status_code);
mg_send_header(orig, "Content-Type", "text/plain");
mg_send_data(orig, conn->content, conn->content_len);
mg_send_data(orig, "", 0); // Last chunk: mark the end of reply

View File

@ -2410,6 +2410,9 @@ static int parse_http_message(char *buf, int len, struct mg_connection *ri) {
if (is_request) {
ri->http_version += 5;
}
else {
ri->status_code = atoi(ri->uri);
}
parse_http_headers(&buf, ri);
if ((ri->query_string = strchr(ri->uri, '?')) != NULL) {