From: David Connolly Date: Fri, 17 Jul 2026 11:54:58 +0000 (+0100) Subject: udpspeeder: pass the timeout option to the binary X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=cf0fda7beb8cfccc375139c7839830ac34663efa;p=openwrt-packages.git udpspeeder: pass the timeout option to the binary The timeout UCI option is validated and documented but never appended to the command, so setting it had no effect. Pass it through with the schema default of 8, which matches the binary's own default. Fixes: https://github.com/openwrt/packages/issues/18955 Signed-off-by: David Connolly --- diff --git a/net/udpspeeder/Makefile b/net/udpspeeder/Makefile index 4f6428aa3..5becd8eab 100644 --- a/net/udpspeeder/Makefile +++ b/net/udpspeeder/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=UDPspeeder PKG_VERSION:=20230206.0 -PKG_RELEASE:=4 +PKG_RELEASE:=5 PKG_SOURCE_PROTO:=git PKG_SOURCE_VERSION:=$(PKG_VERSION) diff --git a/net/udpspeeder/files/udpspeeder-init b/net/udpspeeder/files/udpspeeder-init index 3e1a5c603..3112fd77a 100755 --- a/net/udpspeeder/files/udpspeeder-init +++ b/net/udpspeeder/files/udpspeeder-init @@ -88,6 +88,7 @@ start_instance() { procd_append_param command --report "${report}" procd_append_param command --interval "${interval}" procd_append_param command --mtu "${mtu}" + procd_append_param command --timeout "${timeout}" procd_append_param command --sock-buf "${sock_buf}" procd_append_param command --decode-buf "${decode_buf}" procd_append_param command --queue-len "${queue_len}"