Christopher Faulet | 4f0f88a | 2019-08-10 11:17:44 +0200 | [diff] [blame] | 1 | /* |
| 2 | * include/types/h1_htx.h |
| 3 | * This file defines function prototypes for H1 manipulation using the |
| 4 | * internal representation. |
| 5 | * |
| 6 | * Copyright (C) 2019 HAProxy Technologies, Christopher Faulet <cfaulet@haproxy.com> |
| 7 | * |
| 8 | * This library is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU Lesser General Public |
| 10 | * License as published by the Free Software Foundation, version 2.1 |
| 11 | * exclusively. |
| 12 | * |
| 13 | * This library is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 16 | * Lesser General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU Lesser General Public |
| 19 | * License along with this library; if not, write to the Free Software |
| 20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 21 | */ |
| 22 | |
| 23 | #ifndef _PROTO_H1_HTX_H |
| 24 | #define _PROTO_H1_HTX_H |
| 25 | |
| 26 | #include <common/buf.h> |
| 27 | #include <common/ist.h> |
| 28 | #include <common/h1.h> |
| 29 | |
| 30 | int h1_parse_msg_hdrs(struct h1m *h1m, union h1_sl *h1sl, struct htx *dsthtx, |
| 31 | struct buffer *srcbuf, size_t ofs, size_t max); |
Christopher Faulet | af54263 | 2019-10-01 21:52:49 +0200 | [diff] [blame] | 32 | int h1_parse_msg_data(struct h1m *h1m, struct htx **dsthtx, |
Christopher Faulet | 4f0f88a | 2019-08-10 11:17:44 +0200 | [diff] [blame] | 33 | struct buffer *srcbuf, size_t ofs, size_t max, |
| 34 | struct buffer *htxbuf); |
| 35 | int h1_parse_msg_tlrs(struct h1m *h1m, struct htx *dsthtx, |
| 36 | struct buffer *srcbuf, size_t ofs, size_t max); |
Christopher Faulet | 76014fd | 2019-12-10 11:47:22 +0100 | [diff] [blame] | 37 | int h1_parse_msg_eom(struct h1m *h1m, struct htx *dsthtx, size_t max); |
Christopher Faulet | 4f0f88a | 2019-08-10 11:17:44 +0200 | [diff] [blame] | 38 | |
Christopher Faulet | 53a899b | 2019-10-08 16:38:42 +0200 | [diff] [blame] | 39 | int h1_format_htx_reqline(const struct htx_sl *sl, struct buffer *chk); |
| 40 | int h1_format_htx_stline(const struct htx_sl *sl, struct buffer *chk); |
| 41 | int h1_format_htx_hdr(const struct ist n, const struct ist v, struct buffer *chk); |
| 42 | int h1_format_htx_data(const struct ist data, struct buffer *chk, int chunked); |
| 43 | |
Christopher Faulet | 4f0f88a | 2019-08-10 11:17:44 +0200 | [diff] [blame] | 44 | #endif /* _PROTO_H1_HTX_H */ |
| 45 | |
| 46 | /* |
| 47 | * Local variables: |
| 48 | * c-indent-level: 8 |
| 49 | * c-basic-offset: 8 |
| 50 | * End: |
| 51 | */ |