blob: aee364cef115b9766855fa7159640996d4290606 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 include/proto/proto_http.h
3 This file contains HTTP protocol definitions.
4
5 Copyright (C) 2000-2006 Willy Tarreau - w@1wt.eu
6
7 This library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation, version 2.1
10 exclusively.
11
12 This library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
16
17 You should have received a copy of the GNU Lesser General Public
18 License along with this library; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20*/
21
22#ifndef _PROTO_PROTO_HTTP_H
23#define _PROTO_PROTO_HTTP_H
24
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020025#include <common/config.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020026#include <types/proto_http.h>
27#include <types/session.h>
28#include <types/task.h>
29
Willy Tarreau58f10d72006-12-04 02:26:12 +010030/*
31 * some macros used for the request parsing.
32 * from RFC2616:
33 * CTL = <any US-ASCII control character (octets 0 - 31) and DEL (127)>
34 */
35static inline int IS_CTL(const unsigned char x) { return (x < 32)||(x == 127);}
36
Willy Tarreaubaaee002006-06-26 02:48:02 +020037
38int event_accept(int fd);
39int process_session(struct task *t);
40int process_cli(struct session *t);
41int process_srv(struct session *t);
42
43void client_retnclose(struct session *s, int len, const char *msg);
44void client_return(struct session *s, int len, const char *msg);
45void srv_close_with_err(struct session *t, int err, int finst,
Willy Tarreaub17916e2006-10-15 15:17:57 +020046 int status, int msglen, const char *msg);
Willy Tarreaubaaee002006-06-26 02:48:02 +020047
48int produce_content(struct session *s);
Willy Tarreau58f10d72006-12-04 02:26:12 +010049void debug_hdr(const char *dir, struct session *t, const char *start, const char *end);
50void get_srv_from_appsession(struct session *t, const char *begin, const char *end);
51void apply_filters_to_session(struct session *t, struct buffer *req, struct hdr_exp *exp);
52void manage_client_side_cookies(struct session *t, struct buffer *req);
Willy Tarreaub2513902006-12-17 14:52:38 +010053static http_meth_t find_http_meth(const char *str, const int len);
54int stats_check_uri_auth(struct session *t, struct proxy *backend);
Willy Tarreaubaaee002006-06-26 02:48:02 +020055
56#endif /* _PROTO_PROTO_HTTP_H */
57
58/*
59 * Local variables:
60 * c-indent-level: 8
61 * c-basic-offset: 8
62 * End:
63 */