From 3b1283496cdb89d3d43d0354216e8dfa0a8b8d00 Mon Sep 17 00:00:00 2001 From: Mike Black W9MDB Date: Wed, 7 Aug 2024 17:26:03 -0500 Subject: [PATCH] Abort multicast routine when UDP errors occur Some setups don't work correctly and this is not critical now --- src/network.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/network.c b/src/network.c index 87c07cad8..17183cf79 100644 --- a/src/network.c +++ b/src/network.c @@ -1093,6 +1093,7 @@ void *multicast_publisher(void *arg) "%s: error sending UDP packet: %s\n", __func__, strerror(errno)); flag = 1; + break; // we'll just quit this routine for now -- debug in the future } } }