From 443d0ccb147b5d845dcf1fc68a5f39c12f47ac6f Mon Sep 17 00:00:00 2001 From: Sebastian Hammer Date: Thu, 21 Dec 2006 04:16:25 +0000 Subject: [PATCH] More detailed logging of HTTP requests --- src/http.c | 11 ++++++++--- src/http.h | 1 + 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/src/http.c b/src/http.c index 48a2643..bb61e9f 100644 --- a/src/http.c +++ b/src/http.c @@ -1,5 +1,5 @@ /* - * $Id: http.c,v 1.2 2006-12-20 23:31:24 adam Exp $ + * $Id: http.c,v 1.3 2006-12-21 04:16:25 quinn Exp $ */ #include @@ -263,6 +263,7 @@ struct http_request *http_parse_request(struct http_channel *c, struct http_buf if (http_buf_read(queue, buf, len) < len) return 0; + r->search = ""; r->channel = c; r->arguments = 0; r->headers = 0; @@ -293,6 +294,7 @@ struct http_request *http_parse_request(struct http_channel *c, struct http_buf r->path = nmem_strdup(c->nmem, buf); if (p2) { + r->search = nmem_strdup(c->nmem, p2); // Parse Arguments while (*p2) { @@ -548,8 +550,11 @@ static void http_io(IOCHAN i, int event) return; } hc->response = 0; - yaz_log(YLOG_LOG, "Request: %s %s v %s", hc->request->method, - hc->request->path, hc->request->http_version); + yaz_log(YLOG_LOG, "Request: %s %s%s%s v %s", hc->request->method, + hc->request->path, + *hc->request->search ? "?" : "", + hc->request->search, + hc->request->http_version); if (http_weshouldproxy(hc->request)) http_proxy(hc->request); else diff --git a/src/http.h b/src/http.h index 7501424..cd9ca38 100644 --- a/src/http.h +++ b/src/http.h @@ -57,6 +57,7 @@ struct http_request char http_version[20]; char method[20]; char *path; + char *search; struct http_header *headers; struct http_argument *arguments; }; -- 1.7.10.4