blob: 45a42d7929bfcf89178d64e9ad854bb42cb18574 [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
Willy Tarreau0f772532006-12-23 20:51:41 +010043void client_retnclose(struct session *s, const struct chunk *msg);
44void client_return(struct session *s, const struct chunk *msg);
Willy Tarreaubaaee002006-06-26 02:48:02 +020045void srv_close_with_err(struct session *t, int err, int finst,
Willy Tarreau0f772532006-12-23 20:51:41 +010046 int status, const struct chunk *msg);
Willy Tarreaubaaee002006-06-26 02:48:02 +020047
48int produce_content(struct session *s);
Willy Tarreauc0dde7a2007-01-01 21:38:07 +010049int produce_content_stats(struct session *s);
50int produce_content_stats_proxy(struct session *s, struct proxy *px);
Willy Tarreau58f10d72006-12-04 02:26:12 +010051void debug_hdr(const char *dir, struct session *t, const char *start, const char *end);
52void get_srv_from_appsession(struct session *t, const char *begin, const char *end);
53void apply_filters_to_session(struct session *t, struct buffer *req, struct hdr_exp *exp);
54void manage_client_side_cookies(struct session *t, struct buffer *req);
Willy Tarreaub2513902006-12-17 14:52:38 +010055int stats_check_uri_auth(struct session *t, struct proxy *backend);
Willy Tarreau80587432006-12-24 17:47:20 +010056void init_proto_http();
Willy Tarreaubaaee002006-06-26 02:48:02 +020057
58#endif /* _PROTO_PROTO_HTTP_H */
59
60/*
61 * Local variables:
62 * c-indent-level: 8
63 * c-basic-offset: 8
64 * End:
65 */