diff options
-rw-r--r-- | server/sockopt_nonlinux.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sockopt_nonlinux.go b/server/sockopt_nonlinux.go index 14128f57..4ac4e44d 100644 --- a/server/sockopt_nonlinux.go +++ b/server/sockopt_nonlinux.go @@ -22,6 +22,6 @@ import ( "net" ) -func DialTCPTimeoutWithMD5Sig(host string, port int, key string, msec int) (*net.TCPConn, error) { +func DialTCPTimeoutWithMD5Sig(host string, port int, localAddr, key string, msec int) (*net.TCPConn, error) { return nil, fmt.Errorf("md5 active connection unsupported") } |