You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: bin/sslocal.rs
+5
Original file line number
Diff line number
Diff line change
@@ -66,6 +66,7 @@ fn main() {
66
66
(@arg DNS: --dns +takes_value "DNS nameservers, formatted like [(tcp|udp)://]host[:port][,host[:port]]..., or unix:///path/to/dns, or predefined keys like \"google\", \"cloudflare\"")
67
67
68
68
(@arg TCP_NO_DELAY: --("tcp-no-delay") !takes_value alias("no-delay")"Set TCP_NODELAY option for socket")
69
+
(@arg TCP_FAST_OPEN: --("tcp-fast-open") !takes_value alias("fast-open")"Enable TCP Fast Open (TFO)")
69
70
70
71
(@arg UDP_TIMEOUT: --("udp-timeout") +takes_value {validator::validate_u64}"Timeout seconds for UDP relay")
71
72
(@arg UDP_MAX_ASSOCIATIONS: --("udp-max-associations") +takes_value {validator::validate_u64}"Maximum associations to be kept simultaneously for UDP relay")
Copy file name to clipboardExpand all lines: bin/ssmanager.rs
+5
Original file line number
Diff line number
Diff line change
@@ -60,6 +60,7 @@ fn main() {
60
60
(@arg DNS: --dns +takes_value "DNS nameservers, formatted like [(tcp|udp)://]host[:port][,host[:port]]..., or unix:///path/to/dns, or predefined keys like \"google\", \"cloudflare\"")
61
61
62
62
(@arg TCP_NO_DELAY: --("tcp-no-delay") !takes_value alias("no-delay")"Set TCP_NODELAY option for socket")
63
+
(@arg TCP_FAST_OPEN: --("tcp-fast-open") !takes_value alias("fast-open")"Enable TCP Fast Open (TFO)")
63
64
64
65
(@arg UDP_TIMEOUT: --("udp-timeout") +takes_value {validator::validate_u64}"Timeout seconds for UDP relay")
65
66
(@arg UDP_MAX_ASSOCIATIONS: --("udp-max-associations") +takes_value {validator::validate_u64}"Maximum associations to be kept simultaneously for UDP relay")
Copy file name to clipboardExpand all lines: bin/ssserver.rs
+5
Original file line number
Diff line number
Diff line change
@@ -61,6 +61,7 @@ fn main() {
61
61
(@arg DNS: --dns +takes_value "DNS nameservers, formatted like [(tcp|udp)://]host[:port][,host[:port]]..., or unix:///path/to/dns, or predefined keys like \"google\", \"cloudflare\"")
62
62
63
63
(@arg TCP_NO_DELAY: --("tcp-no-delay") !takes_value alias("no-delay")"Set TCP_NODELAY option for socket")
64
+
(@arg TCP_FAST_OPEN: --("tcp-fast-open") !takes_value alias("fast-open")"Enable TCP Fast Open (TFO)")
64
65
65
66
(@arg UDP_TIMEOUT: --("udp-timeout") +takes_value {validator::validate_u64}"Timeout seconds for UDP relay")
66
67
(@arg UDP_MAX_ASSOCIATIONS: --("udp-max-associations") +takes_value {validator::validate_u64}"Maximum associations to be kept simultaneously for UDP relay")
0 commit comments