We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50fd62d commit dd5002bCopy full SHA for dd5002b
1 file changed
src/proxy_server.rs
@@ -154,7 +154,9 @@ impl ProxyServer {
154
"Listening SOCKS5 on {} — xray / Telegram / app-level SOCKS5 clients use this.",
155
socks_addr
156
);
157
-
+ // Pre-warm the outbound connection pool so the user's first request
158
+ // doesn't pay a fresh TLS handshake to Google edge. Best-effort;
159
+ // failures are logged and ignored.
160
let warm_fronter = self.fronter.clone();
161
tokio::spawn(async move {
162
warm_fronter.warm(3).await;
0 commit comments