From d8c61c59d746a2c496c0a61751dc5ebf25da9beb Mon Sep 17 00:00:00 2001 From: Haruue Date: Sat, 23 Nov 2024 22:31:14 +0900 Subject: [PATCH] chore: disable fallback mode of tfo dialer tfo-go caches the "unsupported" status when fallback mode is enabled. In other words, if the hysteria server is started with net.ipv4.tcp_fastopen=0 and it fails once, the tfo will not be enabled until it is restarted, even if the user later sets sysctl net.ipv4.tcp_fastopen=3. --- extras/outbounds/fastopen.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/extras/outbounds/fastopen.go b/extras/outbounds/fastopen.go index a607500..1d5d1ee 100644 --- a/extras/outbounds/fastopen.go +++ b/extras/outbounds/fastopen.go @@ -15,8 +15,7 @@ type fastOpenDialer struct { func newFastOpenDialer(netDialer *net.Dialer) *fastOpenDialer { return &fastOpenDialer{ dialer: &tfo.Dialer{ - Dialer: *netDialer, - Fallback: true, + Dialer: *netDialer, }, } }