mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-01-16 02:30:46 +00:00
MINOR: tcp_act: fix alphabetical ordering of tcp request content actions
"set-src" and "set-src-port" were misplaced and incorrectly ordered in tcp_req_cont_actions keyword list.
This commit is contained in:
parent
ea09075f59
commit
eea3b94514
@ -697,11 +697,11 @@ static struct action_kw_list tcp_req_sess_actions = {ILH, {
|
||||
INITCALL1(STG_REGISTER, tcp_req_sess_keywords_register, &tcp_req_sess_actions);
|
||||
|
||||
static struct action_kw_list tcp_req_cont_actions = {ILH, {
|
||||
{ "set-src", tcp_parse_set_src_dst },
|
||||
{ "set-src-port", tcp_parse_set_src_dst },
|
||||
{ "set-dst" , tcp_parse_set_src_dst },
|
||||
{ "set-dst-port", tcp_parse_set_src_dst },
|
||||
{ "set-mark", tcp_parse_set_mark },
|
||||
{ "set-src", tcp_parse_set_src_dst },
|
||||
{ "set-src-port", tcp_parse_set_src_dst },
|
||||
{ "set-tos", tcp_parse_set_tos },
|
||||
{ "silent-drop", tcp_parse_silent_drop },
|
||||
{ /* END */ }
|
||||
|
Loading…
Reference in New Issue
Block a user