Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
Willy Tarreau | b0c9bc4 | 2009-10-04 15:56:38 +0200 | [diff] [blame] | 2 | * include/proto/proto_http.h |
| 3 | * This file contains HTTP protocol definitions. |
| 4 | * |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 5 | * Copyright (C) 2000-2011 Willy Tarreau - w@1wt.eu |
Willy Tarreau | b0c9bc4 | 2009-10-04 15:56:38 +0200 | [diff] [blame] | 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 | */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 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> |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 27 | #include <types/stream.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 28 | #include <types/task.h> |
Willy Tarreau | 3ee8344 | 2018-06-15 16:42:02 +0200 | [diff] [blame] | 29 | #include <proto/channel.h> |
Christopher Faulet | f0216da | 2018-12-14 13:44:53 +0100 | [diff] [blame] | 30 | #include <proto/stream.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 31 | |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 32 | extern struct pool_head *pool_head_uniqueid; |
| 33 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 34 | int process_cli(struct stream *s); |
| 35 | int process_srv_data(struct stream *s); |
| 36 | int process_srv_conn(struct stream *s); |
| 37 | int http_wait_for_request(struct stream *s, struct channel *req, int an_bit); |
| 38 | int http_process_req_common(struct stream *s, struct channel *req, int an_bit, struct proxy *px); |
| 39 | int http_process_request(struct stream *s, struct channel *req, int an_bit); |
| 40 | int http_process_tarpit(struct stream *s, struct channel *req, int an_bit); |
| 41 | int http_wait_for_request_body(struct stream *s, struct channel *req, int an_bit); |
Christopher Faulet | 27a3dc8 | 2018-10-23 15:34:07 +0200 | [diff] [blame] | 42 | int http_send_name_header(struct stream *s, struct proxy* be, const char* svr_name); |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 43 | int http_wait_for_response(struct stream *s, struct channel *rep, int an_bit); |
| 44 | int http_process_res_common(struct stream *s, struct channel *rep, int an_bit, struct proxy *px); |
| 45 | int http_request_forward_body(struct stream *s, struct channel *req, int an_bit); |
| 46 | int http_response_forward_body(struct stream *s, struct channel *res, int an_bit); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 47 | int http_upgrade_v09_to_v10(struct http_txn *txn); |
Thierry FOURNIER | 8d16de0 | 2015-09-25 11:06:37 +0200 | [diff] [blame] | 48 | void http_msg_analyzer(struct http_msg *msg, struct hdr_idx *idx); |
Thierry FOURNIER | fd50f0b | 2015-09-25 18:53:18 +0200 | [diff] [blame] | 49 | void http_txn_reset_req(struct http_txn *txn); |
| 50 | void http_txn_reset_res(struct http_txn *txn); |
Willy Tarreau | 538746a | 2018-12-11 10:59:20 +0100 | [diff] [blame] | 51 | const char *http_parse_reqline(struct http_msg *msg, |
| 52 | enum h1_state state, const char *ptr, const char *end, |
| 53 | unsigned int *ret_ptr, enum h1_state *ret_state); |
| 54 | const char *http_parse_stsline(struct http_msg *msg, |
| 55 | enum h1_state state, const char *ptr, const char *end, |
| 56 | unsigned int *ret_ptr, enum h1_state *ret_state); |
| 57 | int http_forward_trailers(struct http_msg *msg); |
Willy Tarreau | c5a4fd5 | 2018-12-11 11:42:27 +0100 | [diff] [blame] | 58 | int http_legacy_replace_header(struct hdr_idx *idx, struct http_msg *msg, |
| 59 | const char *name, unsigned int name_len, |
| 60 | const char *str, struct my_regex *re, |
| 61 | struct buffer *output); |
| 62 | int http_legacy_replace_full_header(struct hdr_idx *idx, struct http_msg *msg, |
| 63 | const char *name, unsigned int name_len, |
| 64 | const char *str, struct my_regex *re, |
| 65 | struct buffer *output); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 66 | |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 67 | /* Export HTX analyzers and helpers */ |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 68 | // FIXME: Rename all these functions http_* once legacy code will be removed |
Christopher Faulet | 7233352 | 2018-10-24 11:25:02 +0200 | [diff] [blame] | 69 | struct htx; |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 70 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 71 | int htx_wait_for_request(struct stream *s, struct channel *req, int an_bit); |
| 72 | int htx_process_req_common(struct stream *s, struct channel *req, int an_bit, struct proxy *px); |
| 73 | int htx_process_request(struct stream *s, struct channel *req, int an_bit); |
| 74 | int htx_process_tarpit(struct stream *s, struct channel *req, int an_bit); |
| 75 | int htx_wait_for_request_body(struct stream *s, struct channel *req, int an_bit); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 76 | int htx_wait_for_response(struct stream *s, struct channel *rep, int an_bit); |
| 77 | int htx_process_res_common(struct stream *s, struct channel *rep, int an_bit, struct proxy *px); |
| 78 | int htx_request_forward_body(struct stream *s, struct channel *req, int an_bit); |
| 79 | int htx_response_forward_body(struct stream *s, struct channel *res, int an_bit); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 80 | int htx_apply_redirect_rule(struct redirect_rule *rule, struct stream *s, struct http_txn *txn); |
Christopher Faulet | 7233352 | 2018-10-24 11:25:02 +0200 | [diff] [blame] | 81 | int htx_transform_header_str(struct stream* s, struct channel *chn, struct htx *htx, |
| 82 | struct ist name, const char *str, struct my_regex *re, int action); |
Christopher Faulet | 8d8ac19 | 2018-10-24 11:27:39 +0200 | [diff] [blame] | 83 | int htx_req_replace_stline(int action, const char *replace, int len, |
| 84 | struct proxy *px, struct stream *s); |
| 85 | void htx_res_set_status(unsigned int status, const char *reason, struct stream *s); |
Christopher Faulet | 25a02f6 | 2018-10-24 12:00:25 +0200 | [diff] [blame] | 86 | void htx_check_request_for_cacheability(struct stream *s, struct channel *req); |
| 87 | void htx_check_response_for_cacheability(struct stream *s, struct channel *res); |
Christopher Faulet | 64159df | 2018-10-24 21:15:35 +0200 | [diff] [blame] | 88 | int htx_send_name_header(struct stream *s, struct proxy *be, const char *srv_name); |
Christopher Faulet | fefc73d | 2018-10-24 21:18:04 +0200 | [diff] [blame] | 89 | void htx_perform_server_redirect(struct stream *s, struct stream_interface *si); |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 90 | void htx_server_error(struct stream *s, struct stream_interface *si, int err, int finst, const struct buffer *msg); |
| 91 | void htx_reply_and_close(struct stream *s, short status, struct buffer *msg); |
Christopher Faulet | 304cc40 | 2019-07-15 15:46:28 +0200 | [diff] [blame] | 92 | void htx_return_srv_error(struct stream *s, struct stream_interface *si); |
Christopher Faulet | a7b677c | 2018-11-29 16:48:49 +0100 | [diff] [blame] | 93 | struct buffer *htx_error_message(struct stream *s); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 94 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 95 | void debug_hdr(const char *dir, struct stream *s, const char *start, const char *end); |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 96 | int apply_filter_to_req_headers(struct stream *s, struct channel *req, struct hdr_exp *exp); |
| 97 | int apply_filter_to_req_line(struct stream *s, struct channel *req, struct hdr_exp *exp); |
| 98 | int apply_filters_to_request(struct stream *s, struct channel *req, struct proxy *px); |
| 99 | int apply_filters_to_response(struct stream *s, struct channel *rtr, struct proxy *px); |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 100 | void manage_client_side_cookies(struct stream *s, struct channel *req); |
| 101 | void manage_server_side_cookies(struct stream *s, struct channel *rtr); |
Willy Tarreau | 0ad8e0d | 2017-12-22 15:03:36 +0100 | [diff] [blame] | 102 | void check_request_for_cacheability(struct stream *s, struct channel *chn); |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 103 | void check_response_for_cacheability(struct stream *s, struct channel *rtr); |
Willy Tarreau | 295a837 | 2011-03-10 11:25:07 +0100 | [diff] [blame] | 104 | int stats_check_uri(struct stream_interface *si, struct http_txn *txn, struct proxy *backend); |
Willy Tarreau | 04ff9f1 | 2013-06-10 18:39:42 +0200 | [diff] [blame] | 105 | int http_find_full_header2(const char *name, int len, |
| 106 | char *sol, struct hdr_idx *idx, |
| 107 | struct hdr_ctx *ctx); |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 108 | int http_find_header2(const char *name, int len, |
Willy Tarreau | 68085d8 | 2010-01-18 14:54:04 +0100 | [diff] [blame] | 109 | char *sol, struct hdr_idx *idx, |
matt.farnsworth@nokia.com | 1c2ab96 | 2008-04-14 20:47:37 +0200 | [diff] [blame] | 110 | struct hdr_ctx *ctx); |
David Carlier | 4686f79 | 2015-09-25 14:10:50 +0100 | [diff] [blame] | 111 | int http_find_next_header(char *sol, struct hdr_idx *idx, |
| 112 | struct hdr_ctx *ctx); |
Thierry FOURNIER | de6617b | 2013-10-15 11:43:19 +0200 | [diff] [blame] | 113 | int http_remove_header2(struct http_msg *msg, struct hdr_idx *idx, struct hdr_ctx *ctx); |
| 114 | int http_header_add_tail2(struct http_msg *msg, struct hdr_idx *hdr_idx, const char *text, int len); |
Willy Tarreau | 987e3fb | 2015-04-04 01:09:08 +0200 | [diff] [blame] | 115 | int http_replace_req_line(int action, const char *replace, int len, struct proxy *px, struct stream *s); |
Robin H. Johnson | 52f5db2 | 2017-01-01 13:10:52 -0800 | [diff] [blame] | 116 | void http_set_status(unsigned int status, const char *reason, struct stream *s); |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 117 | int http_transform_header_str(struct stream* s, struct http_msg *msg, const char* name, |
Thierry FOURNIER | 5531f87 | 2015-03-16 11:15:50 +0100 | [diff] [blame] | 118 | unsigned int name_len, const char *str, struct my_regex *re, |
| 119 | int action); |
Christopher Faulet | 10079f5 | 2018-10-03 15:17:28 +0200 | [diff] [blame] | 120 | int http_handle_stats(struct stream *s, struct channel *req); |
| 121 | enum rule_result http_req_get_intercept_rule(struct proxy *px, struct list *rules, |
| 122 | struct stream *s, int *deny_status); |
| 123 | enum rule_result http_res_get_intercept_rule(struct proxy *px, struct list *rules, |
| 124 | struct stream *s); |
| 125 | int http_apply_redirect_rule(struct redirect_rule *rule, struct stream *s, struct http_txn *txn); |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 126 | void http_perform_server_redirect(struct stream *s, struct stream_interface *si); |
| 127 | void http_return_srv_error(struct stream *s, struct stream_interface *si); |
Christopher Faulet | 10079f5 | 2018-10-03 15:17:28 +0200 | [diff] [blame] | 128 | void http_capture_headers(char *som, struct hdr_idx *idx, |
| 129 | char **cap, struct cap_hdr *cap_hdr); |
Willy Tarreau | fd9419d | 2018-09-07 18:01:03 +0200 | [diff] [blame] | 130 | void http_capture_bad_message(struct proxy *proxy, struct stream *s, |
Willy Tarreau | 8a0cef2 | 2012-03-09 13:39:23 +0100 | [diff] [blame] | 131 | struct http_msg *msg, |
Willy Tarreau | 0da5b3b | 2017-09-21 09:30:46 +0200 | [diff] [blame] | 132 | enum h1_state state, struct proxy *other_end); |
Willy Tarreau | 185b5c4 | 2012-04-26 15:11:51 +0200 | [diff] [blame] | 133 | unsigned int http_get_hdr(const struct http_msg *msg, const char *hname, int hlen, |
Willy Tarreau | 294c473 | 2011-12-16 21:35:50 +0100 | [diff] [blame] | 134 | struct hdr_idx *idx, int occ, |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 135 | struct hdr_ctx *ctx, char **vptr, size_t *vlen); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 136 | unsigned int http_get_fhdr(const struct http_msg *msg, const char *hname, int hlen, |
| 137 | struct hdr_idx *idx, int occ, |
| 138 | struct hdr_ctx *ctx, char **vptr, size_t *vlen); |
Willy Tarreau | 6b952c8 | 2018-09-10 17:45:34 +0200 | [diff] [blame] | 139 | char *http_txn_get_path(const struct http_txn *txn); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 140 | |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 141 | struct http_txn *http_alloc_txn(struct stream *s); |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 142 | void http_init_txn(struct stream *s); |
| 143 | void http_end_txn(struct stream *s); |
| 144 | void http_reset_txn(struct stream *s); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 145 | void http_end_txn_clean_session(struct stream *s); |
Christopher Faulet | 10079f5 | 2018-10-03 15:17:28 +0200 | [diff] [blame] | 146 | void http_resync_states(struct stream *s); |
| 147 | void http_parse_connection_header(struct http_txn *txn, struct http_msg *msg, int to_del); |
| 148 | void http_change_connection_header(struct http_txn *txn, struct http_msg *msg, int wanted); |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 149 | void http_adjust_conn_mode(struct stream *s, struct http_txn *txn, struct http_msg *msg); |
Willy Tarreau | 0937bc4 | 2009-12-22 15:03:09 +0100 | [diff] [blame] | 150 | |
Christopher Faulet | 10079f5 | 2018-10-03 15:17:28 +0200 | [diff] [blame] | 151 | int http_msg_forward_body(struct stream *s, struct http_msg *msg); |
| 152 | int http_msg_forward_chunked_body(struct stream *s, struct http_msg *msg); |
| 153 | |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 154 | void http_reply_and_close(struct stream *s, short status, struct buffer *msg); |
| 155 | struct buffer *http_error_message(struct stream *s); |
William Lallemand | 73025dd | 2014-04-24 14:38:37 +0200 | [diff] [blame] | 156 | |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 157 | /* to be used when contents change in an HTTP message */ |
| 158 | #define http_msg_move_end(msg, bytes) do { \ |
| 159 | unsigned int _bytes = (bytes); \ |
Willy Tarreau | a458b67 | 2012-03-05 11:17:50 +0100 | [diff] [blame] | 160 | (msg)->next += (_bytes); \ |
Willy Tarreau | fa355d4 | 2009-11-29 18:12:29 +0100 | [diff] [blame] | 161 | (msg)->sov += (_bytes); \ |
| 162 | (msg)->eoh += (_bytes); \ |
| 163 | } while (0) |
| 164 | |
Willy Tarreau | 2d8e485 | 2014-04-17 20:08:17 +0200 | [diff] [blame] | 165 | |
Willy Tarreau | 211cdec | 2014-04-17 20:18:08 +0200 | [diff] [blame] | 166 | /* Return the amount of bytes that need to be rewound before buf->p to access |
| 167 | * the current message's headers. The purpose is to be able to easily fetch |
| 168 | * the message's beginning before headers are forwarded, as well as after. |
Willy Tarreau | 1234f4a | 2014-04-17 21:14:47 +0200 | [diff] [blame] | 169 | * The principle is that msg->eoh and msg->eol are immutable while msg->sov |
| 170 | * equals the sum of the two before forwarding and is zero after forwarding, |
| 171 | * so the difference cancels the rewinding. |
Willy Tarreau | 211cdec | 2014-04-17 20:18:08 +0200 | [diff] [blame] | 172 | */ |
| 173 | static inline int http_hdr_rewind(const struct http_msg *msg) |
| 174 | { |
Willy Tarreau | 1234f4a | 2014-04-17 21:14:47 +0200 | [diff] [blame] | 175 | return msg->eoh + msg->eol - msg->sov; |
Willy Tarreau | 211cdec | 2014-04-17 20:18:08 +0200 | [diff] [blame] | 176 | } |
| 177 | |
Willy Tarreau | da6eed6 | 2014-04-17 20:24:24 +0200 | [diff] [blame] | 178 | /* Return the amount of bytes that need to be rewound before buf->p to access |
| 179 | * the current message's URI. The purpose is to be able to easily fetch |
| 180 | * the message's beginning before headers are forwarded, as well as after. |
| 181 | */ |
| 182 | static inline int http_uri_rewind(const struct http_msg *msg) |
| 183 | { |
| 184 | return http_hdr_rewind(msg) - msg->sl.rq.u; |
| 185 | } |
| 186 | |
Willy Tarreau | 0d09050 | 2014-04-17 20:31:44 +0200 | [diff] [blame] | 187 | /* Return the amount of bytes that need to be rewound before buf->p to access |
| 188 | * the current message's BODY. The purpose is to be able to easily fetch |
| 189 | * the message's beginning before headers are forwarded, as well as after. |
| 190 | */ |
| 191 | static inline int http_body_rewind(const struct http_msg *msg) |
| 192 | { |
| 193 | return http_hdr_rewind(msg) - msg->eoh - msg->eol; |
| 194 | } |
| 195 | |
| 196 | /* Return the amount of bytes that need to be rewound before buf->p to access |
| 197 | * the current message's DATA. The difference with the function above is that |
| 198 | * if a chunk is present and has already been parsed, its size is skipped so |
| 199 | * that the byte pointed to is the first byte of actual data. The function is |
| 200 | * safe for use in state HTTP_MSG_DATA regardless of whether the headers were |
| 201 | * already forwarded or not. |
| 202 | */ |
| 203 | static inline int http_data_rewind(const struct http_msg *msg) |
| 204 | { |
| 205 | return http_body_rewind(msg) - msg->sol; |
| 206 | } |
| 207 | |
Willy Tarreau | 2d8e485 | 2014-04-17 20:08:17 +0200 | [diff] [blame] | 208 | /* Return the maximum amount of bytes that may be read after the beginning of |
| 209 | * the message body, according to the advertised length. The function is safe |
| 210 | * for use between HTTP_MSG_BODY and HTTP_MSG_DATA regardless of whether the |
| 211 | * headers were already forwarded or not. |
| 212 | */ |
| 213 | static inline int http_body_bytes(const struct http_msg *msg) |
| 214 | { |
| 215 | int len; |
| 216 | |
Willy Tarreau | 3ee8344 | 2018-06-15 16:42:02 +0200 | [diff] [blame] | 217 | len = ci_data(msg->chn) - msg->sov - msg->sol; |
Willy Tarreau | 2d8e485 | 2014-04-17 20:08:17 +0200 | [diff] [blame] | 218 | if (len > msg->body_len) |
| 219 | len = msg->body_len; |
| 220 | return len; |
| 221 | } |
| 222 | |
Willy Tarreau | 326e27e | 2018-12-11 11:04:56 +0100 | [diff] [blame] | 223 | /* for debugging, reports the HTTP/1 message state name (legacy version) */ |
| 224 | static inline const char *h1_msg_state_str(enum h1_state msg_state) |
| 225 | { |
| 226 | switch (msg_state) { |
| 227 | case HTTP_MSG_RQBEFORE: return "MSG_RQBEFORE"; |
| 228 | case HTTP_MSG_RQBEFORE_CR: return "MSG_RQBEFORE_CR"; |
| 229 | case HTTP_MSG_RQMETH: return "MSG_RQMETH"; |
| 230 | case HTTP_MSG_RQMETH_SP: return "MSG_RQMETH_SP"; |
| 231 | case HTTP_MSG_RQURI: return "MSG_RQURI"; |
| 232 | case HTTP_MSG_RQURI_SP: return "MSG_RQURI_SP"; |
| 233 | case HTTP_MSG_RQVER: return "MSG_RQVER"; |
| 234 | case HTTP_MSG_RQLINE_END: return "MSG_RQLINE_END"; |
| 235 | case HTTP_MSG_RPBEFORE: return "MSG_RPBEFORE"; |
| 236 | case HTTP_MSG_RPBEFORE_CR: return "MSG_RPBEFORE_CR"; |
| 237 | case HTTP_MSG_RPVER: return "MSG_RPVER"; |
| 238 | case HTTP_MSG_RPVER_SP: return "MSG_RPVER_SP"; |
| 239 | case HTTP_MSG_RPCODE: return "MSG_RPCODE"; |
| 240 | case HTTP_MSG_RPCODE_SP: return "MSG_RPCODE_SP"; |
| 241 | case HTTP_MSG_RPREASON: return "MSG_RPREASON"; |
| 242 | case HTTP_MSG_RPLINE_END: return "MSG_RPLINE_END"; |
| 243 | case HTTP_MSG_HDR_FIRST: return "MSG_HDR_FIRST"; |
| 244 | case HTTP_MSG_HDR_NAME: return "MSG_HDR_NAME"; |
| 245 | case HTTP_MSG_HDR_COL: return "MSG_HDR_COL"; |
| 246 | case HTTP_MSG_HDR_L1_SP: return "MSG_HDR_L1_SP"; |
| 247 | case HTTP_MSG_HDR_L1_LF: return "MSG_HDR_L1_LF"; |
| 248 | case HTTP_MSG_HDR_L1_LWS: return "MSG_HDR_L1_LWS"; |
| 249 | case HTTP_MSG_HDR_VAL: return "MSG_HDR_VAL"; |
| 250 | case HTTP_MSG_HDR_L2_LF: return "MSG_HDR_L2_LF"; |
| 251 | case HTTP_MSG_HDR_L2_LWS: return "MSG_HDR_L2_LWS"; |
| 252 | case HTTP_MSG_LAST_LF: return "MSG_LAST_LF"; |
| 253 | case HTTP_MSG_ERROR: return "MSG_ERROR"; |
| 254 | case HTTP_MSG_BODY: return "MSG_BODY"; |
| 255 | case HTTP_MSG_100_SENT: return "MSG_100_SENT"; |
| 256 | case HTTP_MSG_CHUNK_SIZE: return "MSG_CHUNK_SIZE"; |
| 257 | case HTTP_MSG_DATA: return "MSG_DATA"; |
| 258 | case HTTP_MSG_CHUNK_CRLF: return "MSG_CHUNK_CRLF"; |
| 259 | case HTTP_MSG_TRAILERS: return "MSG_TRAILERS"; |
| 260 | case HTTP_MSG_ENDING: return "MSG_ENDING"; |
| 261 | case HTTP_MSG_DONE: return "MSG_DONE"; |
| 262 | case HTTP_MSG_CLOSING: return "MSG_CLOSING"; |
| 263 | case HTTP_MSG_CLOSED: return "MSG_CLOSED"; |
| 264 | case HTTP_MSG_TUNNEL: return "MSG_TUNNEL"; |
| 265 | default: return "MSG_??????"; |
| 266 | } |
| 267 | } |
| 268 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 269 | #endif /* _PROTO_PROTO_HTTP_H */ |
| 270 | |
| 271 | /* |
| 272 | * Local variables: |
| 273 | * c-indent-level: 8 |
| 274 | * c-basic-offset: 8 |
| 275 | * End: |
| 276 | */ |