From 8d16de0ad0d515639ebe51b43ef789527df0cc4d Mon Sep 17 00:00:00 2001 From: Thierry FOURNIER Date: Fri, 25 Sep 2015 11:06:37 +0200 Subject: [PATCH] MINOR: http: export function http_msg_analyzer() Exports the function http_msg_analyzer(). --- include/proto/proto_http.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/proto/proto_http.h b/include/proto/proto_http.h index 7622cb595..3691074b2 100644 --- a/include/proto/proto_http.h +++ b/include/proto/proto_http.h @@ -77,6 +77,7 @@ int http_wait_for_response(struct stream *s, struct channel *rep, int an_bit); int http_process_res_common(struct stream *s, struct channel *rep, int an_bit, struct proxy *px); int http_request_forward_body(struct stream *s, struct channel *req, int an_bit); int http_response_forward_body(struct stream *s, struct channel *res, int an_bit); +void http_msg_analyzer(struct http_msg *msg, struct hdr_idx *idx); void debug_hdr(const char *dir, struct stream *s, const char *start, const char *end); int apply_filter_to_req_headers(struct stream *s, struct channel *req, struct hdr_exp *exp);