From 21e38601535006b343d620b3ac1467da38a28548 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=84=9A=E8=80=85?= <11926619+FansChou@users.noreply.github.com> Date: Tue, 13 May 2025 20:35:46 +0800 Subject: [PATCH] add connections out for sfa MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit add connections out for sfa Signed-off-by: 愚者 <11926619+FansChou@users.noreply.github.com> --- cmd/internal/build_libbox/main.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cmd/internal/build_libbox/main.go b/cmd/internal/build_libbox/main.go index 8f82ff36..e34d6a30 100644 --- a/cmd/internal/build_libbox/main.go +++ b/cmd/internal/build_libbox/main.go @@ -45,6 +45,7 @@ var ( debugFlags []string sharedTags []string iosTags []string + androidTags []string memcTags []string debugTags []string ) @@ -61,6 +62,7 @@ func init() { sharedTags = append(sharedTags, "with_gvisor", "with_quic", "with_wireguard", "with_utls", "with_clash_api") iosTags = append(iosTags, "with_dhcp", "with_low_memory", "with_conntrack") + androidTags = append(androidTags, "with_conntrack") memcTags = append(memcTags, "with_tailscale") debugTags = append(debugTags, "debug") } @@ -109,6 +111,7 @@ func buildAndroid() { } tags := append(sharedTags, memcTags...) + tags = append(tags, androidTags...) if debugEnabled { tags = append(tags, debugTags...) }