世界
4f69035de1
Fix naiveproxy build
2026-01-17 05:47:42 +08:00
世界
0fd51633f4
Add OpenAI Codex Multiplexer service
2026-01-17 05:47:42 +08:00
世界
40ccecb341
Update pricing for CCM service
2026-01-17 05:47:42 +08:00
世界
120c4f8a4c
release: Upload only other apks
2026-01-17 05:47:42 +08:00
世界
8b2adb0bc7
Fix bugs and add UoT option for naiveproxy outbound
2026-01-17 05:47:41 +08:00
世界
3313c6e0b2
Add naiveproxy outbound
2026-01-17 05:47:41 +08:00
世界
48939dfb26
Apply ping destination filter for Windows
2026-01-17 05:47:33 +08:00
世界
869efaad58
platform: Add UsePlatformWIFIMonitor to gRPC interface
...
Align dev-next-grpc with wip2 by adding UsePlatformWIFIMonitor()
to the new PlatformInterface, allowing platform clients to indicate
they handle WIFI monitoring themselves.
2026-01-17 05:47:32 +08:00
世界
56682e32ba
daemon: Add clear logs
2026-01-17 05:47:32 +08:00
世界
9b7dc7f877
Revert "Stop using DHCP on iOS and tvOS"
2026-01-17 05:47:32 +08:00
世界
0b6fe45fb9
platform: Refactoring libbox to use gRPC-based protocol
2026-01-17 05:47:32 +08:00
世界
35062abc34
Add Windows WI-FI state support
2026-01-17 05:47:27 +08:00
世界
701b82279d
Add Linux WI-FI state support
...
Support monitoring WIFI state on Linux through:
- NetworkManager (D-Bus)
- IWD (D-Bus)
- wpa_supplicant (control socket)
- ConnMan (D-Bus)
2026-01-17 05:47:04 +08:00
世界
c9c686369f
Add more tcp keep alive options
...
Also update default TCP keep-alive initial period from 10 minutes to 5 minutes.
2026-01-17 05:47:04 +08:00
世界
9905aa5c6f
Update quic-go to v0.57.1
2026-01-17 05:46:52 +08:00
世界
6d4e1d333f
Fix read credentials for ccm service
2026-01-17 05:46:24 +08:00
世界
e354670c36
Add claude code multiplexer service
2026-01-17 05:46:23 +08:00
世界
d4897abb53
Fix compatibility with MPTCP
2026-01-17 05:46:23 +08:00
世界
529f050a56
Use a more conservative strategy for resolving with systemd-resolved for local DNS server
2026-01-17 05:46:23 +08:00
世界
5470977941
Fix missing mTLS support in client options
2026-01-17 05:46:23 +08:00
世界
3e3b2d0b29
Add curve preferences, pinned public key SHA256 and mTLS for TLS options
2026-01-17 05:46:22 +08:00
世界
f76f179907
Fix WireGuard input packet
2026-01-17 05:46:22 +08:00
世界
50732226c4
Update tfo-go to latest
2026-01-17 05:46:21 +08:00
世界
0acf11ff70
Remove compatibility codes
2026-01-17 05:46:14 +08:00
世界
bc86dcec9b
Do not use linkname by default to simplify debugging
2026-01-17 05:46:14 +08:00
世界
e901bb8d06
documentation: Update chinese translations
2026-01-17 05:46:14 +08:00
世界
63a1edc0de
Update quic-go to v0.55.0
2026-01-17 05:46:13 +08:00
世界
e7c387b49b
Update WireGuard and Tailscale
2026-01-17 05:46:02 +08:00
世界
07042cdcca
Fix preConnectionCopy
2026-01-17 05:46:01 +08:00
世界
c034da1d0d
Fix ping domain
2026-01-17 05:46:01 +08:00
世界
03f5eca54c
release: Fix linux build
2026-01-17 05:46:01 +08:00
世界
4f9f088e40
Improve ktls rx error handling
2026-01-17 05:46:01 +08:00
世界
c387601c27
Improve compatibility for kTLS
2026-01-17 05:46:00 +08:00
世界
a8a4467bc3
ktls: Add warning for inappropriate scenarios
2026-01-17 05:44:43 +08:00
世界
47392e55a2
Add support for kTLS
...
Reference: https://gitlab.com/go-extension/tls
2026-01-17 05:44:42 +08:00
世界
e2ba72e7c1
Add proxy support for ICMP echo request
2026-01-17 05:44:41 +08:00
世界
6f00a94eb9
Fix resolve using resolved
2026-01-17 05:44:29 +08:00
世界
3a33affe43
documentation: Update behavior of local DNS server on darwin
2026-01-17 05:44:29 +08:00
世界
0d7f40e60d
Remove use of ldflags -checklinkname=0 on darwin
2026-01-17 05:44:29 +08:00
世界
99466af6b7
Fix legacy DNS config
2026-01-17 05:44:29 +08:00
世界
14bec14972
Fix rule-set format
2026-01-17 05:44:29 +08:00
世界
56518e827e
documentation: Remove outdated icons
2026-01-17 05:44:29 +08:00
世界
51d9ff9812
documentation: Improve local DNS server
2026-01-17 05:44:28 +08:00
世界
958799e85e
Stop using DHCP on iOS and tvOS
...
We do not have the `com.apple.developer.networking.multicast` entitlement and are unable to obtain it for non-technical reasons.
2026-01-17 05:44:28 +08:00
世界
ce778e569b
Improve local DNS server on darwin
...
We mistakenly believed that `libresolv`'s `search` function worked correctly in NetworkExtension, but it seems only `getaddrinfo` does.
This commit changes the behavior of the `local` DNS server in NetworkExtension to prefer DHCP, falling back to `getaddrinfo` if DHCP servers are unavailable.
It's worth noting that `prefer_go` does not disable DHCP since it respects Dial Fields, but `getaddrinfo` does the opposite. The new behavior only applies to NetworkExtension, not to all scenarios (primarily command-line binaries) as it did previously.
In addition, this commit also improves the DHCP DNS server to use the same robust query logic as `local`.
2026-01-17 05:44:28 +08:00
世界
dd489ab415
Use resolved in local DNS server if available
2026-01-17 05:44:28 +08:00
xchacha20-poly1305
9a66482483
Fix rule set version
2026-01-17 05:44:27 +08:00
世界
52e4ddbb86
documentation: Add preferred_by route rule item
2026-01-17 05:44:27 +08:00
世界
5c8b07acfe
Add preferred_by route rule item
2026-01-17 05:44:27 +08:00
世界
bc029ca5fe
documentation: Add interface address rule items
2026-01-17 05:44:27 +08:00