From 05e8c9db6912dc95de9691e9b90e549a4c3beffe Mon Sep 17 00:00:00 2001 From: lijia Date: Tue, 18 Jun 2024 16:45:35 +0800 Subject: feat: TSG-20446, support http tunnel with CONNECT method. --- src/http_decoder_table.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/http_decoder_table.h') diff --git a/src/http_decoder_table.h b/src/http_decoder_table.h index 1272d3a..4c7792a 100644 --- a/src/http_decoder_table.h +++ b/src/http_decoder_table.h @@ -36,18 +36,18 @@ void http_decoder_table_reinit(struct http_decoder_table *table); void http_decoder_table_dump(struct http_decoder_table *table); -int http_decoder_table_get_uri(const struct http_decoder_table *table, struct hstring *out); +int http_decoder_table_get_uri(const struct http_decoder_table *table, hstring *out); -int http_decoder_table_get_method(const struct http_decoder_table *table, struct hstring *out); +int http_decoder_table_get_method(const struct http_decoder_table *table, hstring *out); -int http_decoder_table_get_status(const struct http_decoder_table *table, struct hstring *out); +int http_decoder_table_get_status(const struct http_decoder_table *table, hstring *out); -int http_decoder_table_get_version(const struct http_decoder_table *table, struct hstring *out); +int http_decoder_table_get_version(const struct http_decoder_table *table, hstring *out); -int http_decoder_table_get_body(const struct http_decoder_table *table, struct hstring *out); +int http_decoder_table_get_body(const struct http_decoder_table *table, hstring *out); int http_decoder_table_get_header(const struct http_decoder_table *table, - const struct hstring *key, + const hstring *key, struct http_header *hdr_res); int http_decoder_table_iter_header(struct http_decoder_table *table, -- cgit v1.2.3