X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=src%2Fhttp.c;h=cbba2a8a094e866f029bea708496bda1b1de4047;hb=717296a6a0e0a47ab62fea3597fea7ea7b9177f9;hp=bb61e9fbe628a04940866f82939ff8439aea236a;hpb=443d0ccb147b5d845dcf1fc68a5f39c12f47ac6f;p=pazpar2-moved-to-github.git diff --git a/src/http.c b/src/http.c index bb61e9f..cbba2a8 100644 --- a/src/http.c +++ b/src/http.c @@ -1,5 +1,5 @@ /* - * $Id: http.c,v 1.3 2006-12-21 04:16:25 quinn Exp $ + * $Id: http.c,v 1.8 2007-01-10 10:04:23 adam Exp $ */ #include @@ -15,11 +15,14 @@ #include #include +#if HAVE_CONFIG_H +#include +#endif + #include #include #include -#include "command.h" #include "util.h" #include "eventl.h" #include "pazpar2.h" @@ -89,10 +92,10 @@ static struct http_buf *http_buf_bybuf(char *b, int len) while (len) { - *p = http_buf_create(); int tocopy = len; if (tocopy > HTTP_BUF_SIZE) tocopy = HTTP_BUF_SIZE; + *p = http_buf_create(); memcpy((*p)->buf, b, tocopy); (*p)->len = tocopy; len -= tocopy; @@ -372,9 +375,9 @@ struct http_request *http_parse_request(struct http_channel *c, struct http_buf static struct http_buf *http_serialize_response(struct http_channel *c, struct http_response *r) { - wrbuf_rewind(c->wrbuf); struct http_header *h; + wrbuf_rewind(c->wrbuf); wrbuf_printf(c->wrbuf, "HTTP/1.1 %s %s\r\n", r->code, r->msg); for (h = r->headers; h; h = h->next) wrbuf_printf(c->wrbuf, "%s: %s\r\n", h->name, h->value); @@ -392,10 +395,10 @@ static struct http_buf *http_serialize_response(struct http_channel *c, static struct http_buf *http_serialize_request(struct http_request *r) { struct http_channel *c = r->channel; - wrbuf_rewind(c->wrbuf); struct http_header *h; struct http_argument *a; + wrbuf_rewind(c->wrbuf); wrbuf_printf(c->wrbuf, "%s %s", r->method, r->path); if (r->arguments) @@ -492,8 +495,10 @@ static int http_proxy(struct http_request *rq) void http_send_response(struct http_channel *ch) { struct http_response *rs = ch->response; + struct http_buf *hb; + assert(rs); - struct http_buf *hb = http_serialize_response(ch, rs); + hb = http_serialize_response(ch, rs); if (!hb) { yaz_log(YLOG_WARN, "Failed to serialize HTTP response"); @@ -550,11 +555,10 @@ static void http_io(IOCHAN i, int event) return; } hc->response = 0; - yaz_log(YLOG_LOG, "Request: %s %s%s%s v %s", hc->request->method, + yaz_log(YLOG_LOG, "Request: %s %s%s%s", hc->request->method, hc->request->path, *hc->request->search ? "?" : "", - hc->request->search, - hc->request->http_version); + hc->request->search); if (http_weshouldproxy(hc->request)) http_proxy(hc->request); else @@ -759,7 +763,7 @@ static void http_accept(IOCHAN i, int event) if (fcntl(s, F_SETFL, flags | O_NONBLOCK) < 0) yaz_log(YLOG_FATAL|YLOG_ERRNO, "fcntl2"); - yaz_log(YLOG_LOG, "New command connection"); + yaz_log(YLOG_DEBUG, "New command connection"); c = iochan_create(s, http_io, EVENT_INPUT | EVENT_EXCEPT); ch = http_create(); @@ -783,7 +787,7 @@ void http_init(const char *addr) yaz_log(YLOG_LOG, "HTTP listener is %s", addr); - bzero(&myaddr, sizeof myaddr); + memset(&myaddr, 0, sizeof myaddr); myaddr.sin_family = AF_INET; pp = strchr(addr, ':'); if (pp)