chore(lander): move a log line
parent
8e0477c34b
commit
89cc41f28a
|
@ -17,7 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
* Allow custom & an arbitrary number of response headers
|
* Allow custom & an arbitrary number of response headers
|
||||||
* Better API for adding routes
|
* Better API for adding routes
|
||||||
* State machine HTTP loop
|
* State machine HTTP loop
|
||||||
* Auomatically support HEAD requests for all GET requests
|
* Automatically support HEAD requests for all GET requests
|
||||||
* Landerctl
|
* Landerctl
|
||||||
* `-c` flag to use custom config file (useful for testing)
|
* `-c` flag to use custom config file (useful for testing)
|
||||||
|
|
||||||
|
|
|
@ -27,6 +27,10 @@ void lnm_http_loop_process_parse_req(lnm_http_conn *conn) {
|
||||||
case lnm_http_parse_err_ok:
|
case lnm_http_parse_err_ok:
|
||||||
conn->r.read += ctx->req.len;
|
conn->r.read += ctx->req.len;
|
||||||
ctx->state = lnm_http_loop_state_route;
|
ctx->state = lnm_http_loop_state_route;
|
||||||
|
|
||||||
|
lnm_linfo(section, "%s %.*s HTTP/1.%i",
|
||||||
|
lnm_http_method_names[ctx->req.method], (int)ctx->req.path.len,
|
||||||
|
ctx->req.path.s, ctx->req.minor_version);
|
||||||
break;
|
break;
|
||||||
case lnm_http_parse_err_incomplete:
|
case lnm_http_parse_err_incomplete:
|
||||||
// If the request is already the size of the read buffer, we close the
|
// If the request is already the size of the read buffer, we close the
|
||||||
|
@ -48,10 +52,6 @@ void lnm_http_loop_process_parse_req(lnm_http_conn *conn) {
|
||||||
ctx->state = lnm_http_loop_state_first_res;
|
ctx->state = lnm_http_loop_state_first_res;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
lnm_linfo(section, "%s %.*s HTTP/1.%i",
|
|
||||||
lnm_http_method_names[ctx->req.method], (int)ctx->req.path.len,
|
|
||||||
ctx->req.path.s, ctx->req.minor_version);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void lnm_http_loop_process_route(lnm_http_conn *conn) {
|
void lnm_http_loop_process_route(lnm_http_conn *conn) {
|
||||||
|
|
Loading…
Reference in New Issue