1
0
mirror of http://git.haproxy.org/git/haproxy.git/ synced 2025-04-04 23:29:42 +00:00

MINOR: proto_http: Externalisation of previously internal functions

Needs to expose the HTTP headers 'iterator' and the client's cookie
value extraction functions.
This commit is contained in:
David Carlier 2015-09-25 14:10:50 +01:00 committed by Willy Tarreau
parent 0b85ecee53
commit 4686f792b4
2 changed files with 5 additions and 1 deletions
include/proto
src

View File

@ -97,7 +97,11 @@ int http_find_full_header2(const char *name, int len,
int http_find_header2(const char *name, int len,
char *sol, struct hdr_idx *idx,
struct hdr_ctx *ctx);
int http_find_next_header(char *sol, struct hdr_idx *idx,
struct hdr_ctx *ctx);
char *find_hdr_value_end(char *s, const char *e);
char *extract_cookie_value(char *hdr, const char *hdr_end, char *cookie_name,
size_t cookie_name_l, int list, char **value, int *value_l);
int http_header_match2(const char *hdr, const char *end, const char *name, int len);
int http_remove_header2(struct http_msg *msg, struct hdr_idx *idx, struct hdr_ctx *ctx);
int http_header_add_tail2(struct http_msg *msg, struct hdr_idx *hdr_idx, const char *text, int len);

View File

@ -10993,7 +10993,7 @@ smp_fetch_http_auth_grp(const struct arg *args, struct sample *smp, const char *
* of values (cookie headers). This makes it faster to abort parsing when no
* list is expected.
*/
static char *
char *
extract_cookie_value(char *hdr, const char *hdr_end,
char *cookie_name, size_t cookie_name_l, int list,
char **value, int *value_l)