From 9745e0562815b5a357562157565cabf0f83eed78 Mon Sep 17 00:00:00 2001 From: SunBK201 Date: Mon, 27 Oct 2025 00:51:38 +0800 Subject: [PATCH] fix: set file descriptor limit in start_service function --- openwrt/files/ua3f.init | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openwrt/files/ua3f.init b/openwrt/files/ua3f.init index 1955b33..6718a7b 100755 --- a/openwrt/files/ua3f.init +++ b/openwrt/files/ua3f.init @@ -52,6 +52,8 @@ start_service() { fi procd_set_param group nogroup + ulimit -n 65536 + procd_close_instance }