diff options
author | Nayana Bidari <nybidari@google.com> | 2020-12-15 11:04:49 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-12-15 11:07:48 -0800 |
commit | b15acae9a6e20a09a97b5fdfee5850469ff3b0ea (patch) | |
tree | 825010f5cfff56fd8d2e7dd98ccd58765d0949c3 /pkg | |
parent | 4e963c99ce23ce6838b4bca351f767460601f34a (diff) |
Fix error code for connect in raw sockets.
PiperOrigin-RevId: 347650354
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/tcpip/transport/raw/endpoint.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/tcpip/transport/raw/endpoint.go b/pkg/tcpip/transport/raw/endpoint.go index eee3f11c1..87c60bdab 100644 --- a/pkg/tcpip/transport/raw/endpoint.go +++ b/pkg/tcpip/transport/raw/endpoint.go @@ -404,7 +404,7 @@ func (*endpoint) Disconnect() *tcpip.Error { func (e *endpoint) Connect(addr tcpip.FullAddress) *tcpip.Error { // Raw sockets do not support connecting to a IPv4 address on a IPv6 endpoint. if e.TransportEndpointInfo.NetProto == header.IPv6ProtocolNumber && len(addr.Addr) != header.IPv6AddressSize { - return tcpip.ErrInvalidOptionValue + return tcpip.ErrAddressFamilyNotSupported } e.mu.Lock() |