diff options
author | gVisor bot <gvisor-bot@google.com> | 2019-10-29 18:38:23 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-10-29 18:38:23 +0000 |
commit | 2fa80a171608bb5172edb2d9dbbd17df47839aae (patch) | |
tree | ca5e77431f28cbfb3765d3a053d72d728a859711 /pkg/tcpip/transport/udp | |
parent | 862aefb66429be48e5910f72c8e1bc3b6b78e6f4 (diff) | |
parent | 7d80e85835fbe47b2395eedf287cf902ed78599a (diff) |
Merge release-20190806.1-337-g7d80e85 (automated)
Diffstat (limited to 'pkg/tcpip/transport/udp')
-rw-r--r-- | pkg/tcpip/transport/udp/endpoint.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pkg/tcpip/transport/udp/endpoint.go b/pkg/tcpip/transport/udp/endpoint.go index 91c8487f3..cda302bb7 100644 --- a/pkg/tcpip/transport/udp/endpoint.go +++ b/pkg/tcpip/transport/udp/endpoint.go @@ -1234,6 +1234,9 @@ func (e *endpoint) Stats() tcpip.EndpointStats { return &e.stats } +// Wait implements tcpip.Endpoint.Wait. +func (*endpoint) Wait() {} + func isBroadcastOrMulticast(a tcpip.Address) bool { return a == header.IPv4Broadcast || header.IsV4MulticastAddress(a) || header.IsV6MulticastAddress(a) } |