From: William Lallemand Date: Fri, 3 Apr 2026 12:35:58 +0000 (+0200) Subject: MINOR: tcpcheck: reintroduce proxy_parse_tcpcheck() symbol X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ed208b7e0f385c8e9c5cd606a8a4e4ad54c43c70;p=thirdparty%2Fhaproxy.git MINOR: tcpcheck: reintroduce proxy_parse_tcpcheck() symbol Remove the proxy_parse_tcpcheck() static keyword. --- diff --git a/src/tcpcheck.c b/src/tcpcheck.c index c88705289..3d0ad19ff 100644 --- a/src/tcpcheck.c +++ b/src/tcpcheck.c @@ -5334,8 +5334,8 @@ static int do_parse_tcp_check_opt(char **args, int cur_arg, struct proxy *curpx, } /* Parses the "tcp-check" proxy keyword */ -static int proxy_parse_tcpcheck(char **args, int section, struct proxy *curpx, const struct proxy *defpx, - const char *file, int line, char **errmsg) +int proxy_parse_tcpcheck(char **args, int section, struct proxy *curpx, const struct proxy *defpx, + const char *file, int line, char **errmsg) { struct tcpcheck_ruleset *rs = NULL; int ret = 0, ret2;