From: Christopher Faulet Date: Wed, 9 Jan 2019 14:05:10 +0000 (+0100) Subject: MINOR: spoe: Make the SPOE filter compatible with HTX proxies X-Git-Tag: v2.0-dev1~222 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=00292353a1ad6de45efaee13556f73020393e71f;p=thirdparty%2Fhaproxy.git MINOR: spoe: Make the SPOE filter compatible with HTX proxies There is any specific HTTP processing in the SPOE. So there is no reason to not use it on HTX proxies. This patch may be backported to 1.9. --- diff --git a/src/flt_spoe.c b/src/flt_spoe.c index bd351be180..4cf9237fb6 100644 --- a/src/flt_spoe.c +++ b/src/flt_spoe.c @@ -2998,6 +2998,7 @@ spoe_init(struct proxy *px, struct flt_conf *fconf) sighandler_registered = 1; } + fconf->flags |= FLT_CFG_FL_HTX; return 0; }