Set TCP keepalive for WireGuard gVisor TCP connections

This commit is contained in:
世界 2023-04-26 10:47:32 +08:00
parent f53007cbf3
commit f949ddc0ab
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
2 changed files with 79 additions and 1 deletions

View file

@ -112,7 +112,7 @@ func (w *StackDevice) DialContext(ctx context.Context, network string, destinati
}
switch N.NetworkName(network) {
case N.NetworkTCP:
tcpConn, err := gonet.DialTCPWithBind(ctx, w.stack, bind, addr, networkProtocol)
tcpConn, err := DialTCPWithBind(ctx, w.stack, bind, addr, networkProtocol)
if err != nil {
return nil, err
}