From d299cf7646e7d82fe6129135a85ebec785fa4c30 Mon Sep 17 00:00:00 2001 From: Stefano Brivio Date: Wed, 7 May 2025 11:33:38 +0200 Subject: Likely fix by Laurent Link: https://github.com/containers/podman/issues/26073#issuecomment-2857803363 Signed-off-by: Stefano Brivio --- udp_flow.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/udp_flow.c b/udp_flow.c index bc12240..c5fbb43 100644 --- a/udp_flow.c +++ b/udp_flow.c @@ -98,6 +98,10 @@ static int udp_flow_sock(const struct ctx *c, if (flowside_connect(c, s, pif, side) < 0) { int rc = -errno; + + if (pif == PIF_HOST) + epoll_del(c, s); + flow_dbg_perror(uflow, "Couldn't connect flow socket"); return rc; } -- cgit v1.2.3