mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-08-14 02:57:01 +02:00
The current "ADD" vs "ADDQ" is confusing because when thinking in terms
of appending at the end of a list, "ADD" naturally comes to mind, but
here it does the opposite, it inserts. Several times already it's been
incorrectly used where ADDQ was expected, the latest of which was a
fortunate accident explained in 6fa922562
("CLEANUP: stream: explain
why we queue the stream at the head of the server list").
Let's use more explicit (but slightly longer) names now:
LIST_ADD -> LIST_INSERT
LIST_ADDQ -> LIST_APPEND
LIST_ADDED -> LIST_INLIST
LIST_DEL -> LIST_DELETE
The same is true for MT_LISTs, including their "TRY" variant.
LIST_DEL_INIT keeps its short name to encourage to use it instead of the
lazier LIST_DELETE which is often less safe.
The change is large (~674 non-comment entries) but is mechanical enough
to remain safe. No permutation was performed, so any out-of-tree code
can easily map older names to new ones.
The list doc was updated.
67 lines
2.4 KiB
C
67 lines
2.4 KiB
C
/*
|
|
* include/haproxy/http_rules.h
|
|
* This file contains "http" rules definitions
|
|
*
|
|
* Copyright (C) 2000-2018 Willy Tarreau - w@1wt.eu
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation, version 2.1
|
|
* exclusively.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#ifndef _HAPROXY_HTTP_RULES_H
|
|
#define _HAPROXY_HTTP_RULES_H
|
|
|
|
#include <haproxy/action-t.h>
|
|
#include <haproxy/api.h>
|
|
#include <haproxy/list.h>
|
|
#include <haproxy/proxy-t.h>
|
|
|
|
extern struct action_kw_list http_req_keywords;
|
|
extern struct action_kw_list http_res_keywords;
|
|
extern struct action_kw_list http_after_res_keywords;
|
|
|
|
struct act_rule *parse_http_req_cond(const char **args, const char *file, int linenum, struct proxy *proxy);
|
|
struct act_rule *parse_http_res_cond(const char **args, const char *file, int linenum, struct proxy *proxy);
|
|
struct act_rule *parse_http_after_res_cond(const char **args, const char *file, int linenum, struct proxy *proxy);
|
|
struct redirect_rule *http_parse_redirect_rule(const char *file, int linenum, struct proxy *curproxy,
|
|
const char **args, char **errmsg, int use_fmt, int dir);
|
|
|
|
static inline void http_req_keywords_register(struct action_kw_list *kw_list)
|
|
{
|
|
LIST_APPEND(&http_req_keywords.list, &kw_list->list);
|
|
}
|
|
|
|
static inline void http_res_keywords_register(struct action_kw_list *kw_list)
|
|
{
|
|
LIST_APPEND(&http_res_keywords.list, &kw_list->list);
|
|
}
|
|
|
|
static inline void http_after_res_keywords_register(struct action_kw_list *kw_list)
|
|
{
|
|
LIST_APPEND(&http_after_res_keywords.list, &kw_list->list);
|
|
}
|
|
|
|
struct action_kw *action_http_req_custom(const char *kw);
|
|
struct action_kw *action_http_res_custom(const char *kw);
|
|
struct action_kw *action_http_after_res_custom(const char *kw);
|
|
|
|
#endif /* _HAPROXY_HTTP_RULES_H */
|
|
|
|
/*
|
|
* Local variables:
|
|
* c-indent-level: 8
|
|
* c-basic-offset: 8
|
|
* End:
|
|
*/
|