Browse Source

fix bug introduced in adding tcp keep alive adjustment

Shelikhoo 4 years ago
parent
commit
ab13073ce4
2 changed files with 2 additions and 2 deletions
  1. 1 1
      transport/internet/system_dialer.go
  2. 1 1
      transport/internet/system_listener.go

+ 1 - 1
transport/internet/system_dialer.go

@@ -64,7 +64,7 @@ func (d *DefaultSystemDialer) Dial(ctx context.Context, src net.Address, dest ne
 		}, nil
 	}
 	goStdKeepAlive := time.Duration(0)
-	if sockopt.TcpKeepAliveIdle != 0 {
+	if sockopt != nil && sockopt.TcpKeepAliveIdle != 0 {
 		goStdKeepAlive = time.Duration(-1)
 	}
 	dialer := &net.Dialer{

+ 1 - 1
transport/internet/system_listener.go

@@ -50,7 +50,7 @@ func (dl *DefaultListener) Listen(ctx context.Context, addr net.Addr, sockopt *S
 		network = addr.Network()
 		address = addr.String()
 		lc.Control = getControlFunc(ctx, sockopt, dl.controllers)
-		if sockopt.TcpKeepAliveIdle != 0 {
+		if sockopt != nil && sockopt.TcpKeepAliveIdle != 0 {
 			lc.KeepAlive = time.Duration(-1)
 		}
 	case *net.UnixAddr: