diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-09-03 01:24:50 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-09-03 01:24:50 +0000 |
commit | ba2b04392c3b72ce9684564f57c59a6a88c8c8a7 (patch) | |
tree | e2da6f22c92cc382ad072e1e81e3003c66bb8efd /pkg/tcpip/transport/icmp | |
parent | 2aae647465e5d427ca3d427049310d3b26e796f0 (diff) | |
parent | b69352245ab729cc01088c8258a3167f069bd684 (diff) |
Merge release-20200818.0-115-gb69352245 (automated)
Diffstat (limited to 'pkg/tcpip/transport/icmp')
-rw-r--r-- | pkg/tcpip/transport/icmp/endpoint.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/tcpip/transport/icmp/endpoint.go b/pkg/tcpip/transport/icmp/endpoint.go index 346ca4bda..ad71ff3b6 100644 --- a/pkg/tcpip/transport/icmp/endpoint.go +++ b/pkg/tcpip/transport/icmp/endpoint.go @@ -597,7 +597,7 @@ func (*endpoint) Listen(int) *tcpip.Error { } // Accept is not supported by UDP, it just fails. -func (*endpoint) Accept() (tcpip.Endpoint, *waiter.Queue, *tcpip.Error) { +func (*endpoint) Accept(*tcpip.FullAddress) (tcpip.Endpoint, *waiter.Queue, *tcpip.Error) { return nil, nil, tcpip.ErrNotSupported } |