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);
-}
+void http_req_keywords_register(struct action_kw_list *kw_list);
+void http_res_keywords_register(struct action_kw_list *kw_list);
+void http_after_res_keywords_register(struct action_kw_list *kw_list);
struct action_kw *action_http_req_custom(const char *kw);
struct action_kw *action_http_res_custom(const char *kw);
.list = LIST_HEAD_INIT(http_after_res_keywords.list)
};
+void http_req_keywords_register(struct action_kw_list *kw_list)
+{
+ LIST_APPEND(&http_req_keywords.list, &kw_list->list);
+}
+
+void http_res_keywords_register(struct action_kw_list *kw_list)
+{
+ LIST_APPEND(&http_res_keywords.list, &kw_list->list);
+}
+
+void http_after_res_keywords_register(struct action_kw_list *kw_list)
+{
+ LIST_APPEND(&http_after_res_keywords.list, &kw_list->list);
+}
+
/*
* Return the struct http_req_action_kw associated to a keyword.
*/