]> git.99rst.org Git - openwrt-packages.git/commitdiff
udpspeeder: pass the timeout option to the binary
authorDavid Connolly <redacted>
Fri, 17 Jul 2026 11:54:58 +0000 (12:54 +0100)
committerJosef Schlehofer <redacted>
Sat, 18 Jul 2026 06:11:19 +0000 (08:11 +0200)
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 <redacted>
net/udpspeeder/Makefile
net/udpspeeder/files/udpspeeder-init

index 4f6428aa3241f07d2c55db0b239856355ef635ee..5becd8eabb3c38b8470b621c3a241d6e84b9710a 100644 (file)
@@ -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)
index 3e1a5c6036cfa975e07e15949abc342f647ff208..3112fd77acf4adedb3fdcca37df4464876356971 100755 (executable)
@@ -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}"
git clone https://git.99rst.org/PROJECT