aboutsummaryrefslogtreecommitdiffstats
path: root/conn/conn_linux.go
diff options
context:
space:
mode:
Diffstat (limited to 'conn/conn_linux.go')
-rw-r--r--conn/conn_linux.go8
1 files changed, 4 insertions, 4 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)
}