2013-05-01 00:35:33 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2013 Joris Vink <joris@coders.se>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __H_HTTP_H
|
|
|
|
#define __H_HTTP_H
|
|
|
|
|
|
|
|
struct http_request {
|
|
|
|
char *host;
|
|
|
|
char *method;
|
|
|
|
char *path;
|
|
|
|
|
|
|
|
struct connection *owner;
|
|
|
|
struct spdy_stream *stream;
|
|
|
|
|
|
|
|
TAILQ_ENTRY(http_request) list;
|
|
|
|
};
|
|
|
|
|
2013-05-01 08:09:04 +02:00
|
|
|
void http_init(void);
|
|
|
|
void http_process(void);
|
2013-05-01 20:10:45 +02:00
|
|
|
time_t http_date_to_time(char *);
|
2013-05-01 08:09:04 +02:00
|
|
|
void http_request_free(struct http_request *);
|
|
|
|
int http_response(struct http_request *, int,
|
2013-05-01 16:51:34 +02:00
|
|
|
u_int8_t *, u_int32_t, char *);
|
2013-05-01 08:09:04 +02:00
|
|
|
int http_new_request(struct connection *, struct spdy_stream *,
|
|
|
|
char *, char *, char *);
|
|
|
|
|
2013-05-01 00:35:33 +02:00
|
|
|
#endif /* !__H_HTTP_H */
|