1 /* $Id: http.h,v 1.8 2007-04-15 00:35:57 quinn Exp $
2 Copyright (c) 2006-2007, Index Data.
4 This file is part of Pazpar2.
6 Pazpar2 is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 2, or (at your option) any later
11 Pazpar2 is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with Pazpar2; see the file LICENSE. If not, write to the
18 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
28 #define HTTP_BUF_SIZE 4096
32 struct http_buf *next;
38 struct http_buf *iqueue;
39 struct http_buf *oqueue;
41 struct http_proxy *proxy;
45 Http_Busy // Don't process new HTTP requests while we're busy
49 struct http_request *request;
50 struct http_response *response;
51 struct http_channel *next; // for freelist
52 char addr[20]; // forwarded address
55 struct http_proxy // attached to iochan for proxy connection
58 struct http_channel *channel;
59 struct http_buf *oqueue;
67 struct http_header *next;
74 struct http_argument *next;
79 struct http_channel *channel;
80 char http_version[20];
84 struct http_header *headers;
85 struct http_argument *arguments;
92 struct http_channel *channel;
93 struct http_header *headers;
97 void http_set_proxyaddr(char *url, char *baseurl);
98 void http_init(const char *addr);
99 void http_addheader(struct http_response *r,
100 const char *name, const char *value);
101 struct http_header * http_header_append(struct http_channel *ch,
102 struct http_header * hp,
105 char *http_argbyname(struct http_request *r, char *name);
106 char *http_headerbyname(struct http_header *r, char *name);
107 struct http_response *http_create_response(struct http_channel *c);
108 void http_send_response(struct http_channel *c);
109 void urlencode(const char *i, char *o);
114 * indent-tabs-mode: nil
116 * vim: shiftwidth=4 tabstop=8 expandtab