diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2021-02-16 21:05:25 +0100 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2021-02-16 21:05:25 +0100 |
commit | 4e439ea10e327d4894a5d2db2611e1fd03f54188 (patch) | |
tree | 58ab27d539f7cb5a44cdbd6430a6515f8557037f /conn | |
parent | 7a0fb5bbb1720fdd9404a4cf41920e24a46e0dad (diff) |
conn: bump to 1.16 and get rid of NetErrClosed hack
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'conn')
-rw-r--r-- | conn/conn_linux.go | 8 | ||||
-rw-r--r-- | conn/net_err_closed.go | 13 |
2 files changed, 4 insertions, 17 deletions
diff --git a/conn/conn_linux.go b/conn/conn_linux.go index f07c3bb..58b7de1 100644 --- a/conn/conn_linux.go +++ b/conn/conn_linux.go @@ -213,7 +213,7 @@ func (bind *nativeBind) ReceiveIPv6(buff []byte) (int, Endpoint, error) { var end NativeEndpoint if bind.sock6 == -1 { - return 0, nil, NetErrClosed + return 0, nil, net.ErrClosed } n, err := receive6( bind.sock6, @@ -229,7 +229,7 @@ func (bind *nativeBind) ReceiveIPv4(buff []byte) (int, Endpoint, error) { var end NativeEndpoint if bind.sock4 == -1 { - return 0, nil, NetErrClosed + return 0, nil, net.ErrClosed } n, err := receive4( bind.sock4, @@ -246,12 +246,12 @@ func (bind *nativeBind) Send(buff []byte, end Endpoint) error { nend := end.(*NativeEndpoint) if !nend.isV6 { if bind.sock4 == -1 { - return NetErrClosed + return net.ErrClosed } return send4(bind.sock4, nend, buff) } else { if bind.sock6 == -1 { - return NetErrClosed + return net.ErrClosed } return send6(bind.sock6, nend, buff) } diff --git a/conn/net_err_closed.go b/conn/net_err_closed.go deleted file mode 100644 index 3530aaa..0000000 --- a/conn/net_err_closed.go +++ /dev/null @@ -1,13 +0,0 @@ -/* SPDX-License-Identifier: MIT - * - * Copyright (C) 2017-2021 WireGuard LLC. All Rights Reserved. - */ - -package conn - -import _ "unsafe" - -//TODO: replace this with net.ErrClosed for Go 1.16 - -//go:linkname NetErrClosed internal/poll.ErrNetClosing -var NetErrClosed error |