Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
| 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 Tarreau | e3ba5f0 | 2006-06-29 18:54:54 +0200 | [diff] [blame] | 25 | #include <common/config.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 26 | #include <types/proto_http.h> |
| 27 | #include <types/session.h> |
| 28 | #include <types/task.h> |
| 29 | |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 30 | /* |
| 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 | */ |
| 35 | static inline int IS_CTL(const unsigned char x) { return (x < 32)||(x == 127);} |
| 36 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 37 | |
| 38 | int event_accept(int fd); |
| 39 | int process_session(struct task *t); |
| 40 | int process_cli(struct session *t); |
| 41 | int process_srv(struct session *t); |
| 42 | |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 43 | void client_retnclose(struct session *s, const struct chunk *msg); |
| 44 | void client_return(struct session *s, const struct chunk *msg); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 45 | void srv_close_with_err(struct session *t, int err, int finst, |
Willy Tarreau | 0f77253 | 2006-12-23 20:51:41 +0100 | [diff] [blame] | 46 | int status, const struct chunk *msg); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 47 | |
| 48 | int produce_content(struct session *s); |
Willy Tarreau | c0dde7a | 2007-01-01 21:38:07 +0100 | [diff] [blame] | 49 | int produce_content_stats(struct session *s); |
| 50 | int produce_content_stats_proxy(struct session *s, struct proxy *px); |
Willy Tarreau | 58f10d7 | 2006-12-04 02:26:12 +0100 | [diff] [blame] | 51 | void debug_hdr(const char *dir, struct session *t, const char *start, const char *end); |
| 52 | void get_srv_from_appsession(struct session *t, const char *begin, const char *end); |
| 53 | void apply_filters_to_session(struct session *t, struct buffer *req, struct hdr_exp *exp); |
| 54 | void manage_client_side_cookies(struct session *t, struct buffer *req); |
Willy Tarreau | b251390 | 2006-12-17 14:52:38 +0100 | [diff] [blame] | 55 | int stats_check_uri_auth(struct session *t, struct proxy *backend); |
Willy Tarreau | 8058743 | 2006-12-24 17:47:20 +0100 | [diff] [blame] | 56 | void init_proto_http(); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 57 | |
| 58 | #endif /* _PROTO_PROTO_HTTP_H */ |
| 59 | |
| 60 | /* |
| 61 | * Local variables: |
| 62 | * c-indent-level: 8 |
| 63 | * c-basic-offset: 8 |
| 64 | * End: |
| 65 | */ |