added HTTP headers "pazpar2-version", "pazpar2-server-host", "pazpar2-server-port...
[pazpar2-moved-to-github.git] / src / http.h
index 7501424..20f0521 100644 (file)
@@ -35,6 +35,7 @@ struct http_proxy //  attached to iochan for proxy connection
     IOCHAN iochan;
     struct http_channel *channel;
     struct http_buf *oqueue;
+    int first_response;
 };
 
 struct http_header
@@ -57,6 +58,7 @@ struct http_request
     char http_version[20];
     char method[20];
     char *path;
+    char *search;
     struct http_header *headers;
     struct http_argument *arguments;
 };
@@ -70,13 +72,19 @@ struct http_response
     char *payload;
 };
 
-void http_set_proxyaddr(char *url);
+void http_set_proxyaddr(char *url, char *baseurl);
 void http_init(const char *addr);
-void http_addheader(struct http_response *r, const char *name, const char *value);
+void http_addheader(struct http_response *r, 
+                    const char *name, const char *value);
+struct http_header * http_header_append(struct http_channel *ch, 
+                                        struct http_header * hp, 
+                                        const char *name, 
+                                        const char *value);
 char *http_argbyname(struct http_request *r, char *name);
-char *http_headerbyname(struct http_request *r, char *name);
+char *http_headerbyname(struct http_header *r, char *name);
 struct http_response *http_create_response(struct http_channel *c);
 void http_send_response(struct http_channel *c);
+void urlencode(const char *i, char *o);
 
 /*
  * Local variables: