From owner-dev-commits-ports-all@freebsd.org Sun Oct 3 18:34:27 2021 Return-Path: Delivered-To: dev-commits-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 1B9F466C896; Sun, 3 Oct 2021 18:34:27 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HMsvR05FGz3rwL; Sun, 3 Oct 2021 18:34:27 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D747E2E0F; Sun, 3 Oct 2021 18:34:26 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 193IYQlA074574; Sun, 3 Oct 2021 18:34:26 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 193IYQJE074573; Sun, 3 Oct 2021 18:34:26 GMT (envelope-from git) Date: Sun, 3 Oct 2021 18:34:26 GMT Message-Id: <202110031834.193IYQJE074573@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Matthias Fechner Subject: git: 5e04d591a2c5 - main - net/haproxy: Fix a stalled connection MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: mfechner X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 5e04d591a2c56b667d0b35286366970568c1cc9c Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Oct 2021 18:34:27 -0000 The branch main has been updated by mfechner: URL: https://cgit.FreeBSD.org/ports/commit/?id=5e04d591a2c56b667d0b35286366970568c1cc9c commit 5e04d591a2c56b667d0b35286366970568c1cc9c Author: Matthias Fechner AuthorDate: 2021-10-03 17:48:18 +0000 Commit: Matthias Fechner CommitDate: 2021-10-03 18:34:04 +0000 net/haproxy: Fix a stalled connection This fix fixes a typo in It is a typo in the commit feca2a453 ("BUG/MINOR: filters: Always set FLT_END analyzer when CF_FLT_ANALYZE flag is set"). Patch was provided on haproxy mailinglist from Christopher Faulet. PR: 258896 Approved by: demon (maintainer) --- net/haproxy/Makefile | 1 + net/haproxy/files/patch-src_filters.c | 11 +++++++++++ 2 files changed, 12 insertions(+) diff --git a/net/haproxy/Makefile b/net/haproxy/Makefile index f4c8cfa8211b..98ac76fa0a15 100644 --- a/net/haproxy/Makefile +++ b/net/haproxy/Makefile @@ -2,6 +2,7 @@ PORTNAME= haproxy DISTVERSION= 2.4.5 +PORTREVISION= 1 CATEGORIES= net www MASTER_SITES= http://www.haproxy.org/download/2.4/src/ diff --git a/net/haproxy/files/patch-src_filters.c b/net/haproxy/files/patch-src_filters.c new file mode 100644 index 000000000000..c716fec434bc --- /dev/null +++ b/net/haproxy/files/patch-src_filters.c @@ -0,0 +1,11 @@ +--- src/filters.c.orig 2021-10-03 17:40:24 UTC ++++ src/filters.c +@@ -475,7 +475,7 @@ flt_stream_start(struct stream *s) + } + if (strm_li(s) && (strm_li(s)->analysers & AN_REQ_FLT_START_FE)) { + s->req.flags |= CF_FLT_ANALYZE; +- s->req.analysers |= AN_RES_FLT_END; ++ s->req.analysers |= AN_REQ_FLT_END; + } + return 0; + }