Commit 44416902 authored by Sergey Lyubka's avatar Sergey Lyubka

Changed debug in do_proxy()

parent 25e646c1
...@@ -4290,10 +4290,9 @@ static void try_parse(struct connection *conn) { ...@@ -4290,10 +4290,9 @@ static void try_parse(struct connection *conn) {
static void do_proxy(struct connection *conn) { static void do_proxy(struct connection *conn) {
if (conn->request_len == 0) { if (conn->request_len == 0) {
DBG(("%p parsing", conn));
try_parse(conn); try_parse(conn);
if (conn->request_len > 0 && DBG(("%p parsing -> %d", conn, conn->request_len));
call_user(conn, MG_REQUEST) == MG_FALSE) { if (conn->request_len > 0 && call_user(conn, MG_REQUEST) == MG_FALSE) {
proxy_request(conn->endpoint.nc, &conn->mg_conn); proxy_request(conn->endpoint.nc, &conn->mg_conn);
} else if (conn->request_len < 0) { } else if (conn->request_len < 0) {
ns_forward(conn->ns_conn, conn->endpoint.nc); ns_forward(conn->ns_conn, conn->endpoint.nc);
......
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