summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/link
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2020-04-17 01:09:26 +0000
committergVisor bot <gvisor-bot@google.com>2020-04-17 01:09:26 +0000
commit27e2822d5839d99113297b98397aab1b6671c46d (patch)
treef505004b0f526a34834ac83f86316558bcaf2ac6 /pkg/tcpip/link
parent83fe2b69013fd4a0d23b7723baa490fe4cad81c9 (diff)
parente7dcd942acacc1f326817f5148bc41455ef1cd1d (diff)
Merge release-20200323.0-171-ge7dcd94 (automated)
Diffstat (limited to 'pkg/tcpip/link')
-rw-r--r--pkg/tcpip/link/sniffer/sniffer.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/tcpip/link/sniffer/sniffer.go b/pkg/tcpip/link/sniffer/sniffer.go
index 03def4013..938540c14 100644
--- a/pkg/tcpip/link/sniffer/sniffer.go
+++ b/pkg/tcpip/link/sniffer/sniffer.go
@@ -238,7 +238,7 @@ func (e *endpoint) WriteRawPacket(vv buffer.VectorisedView) *tcpip.Error {
}
// Wait implements stack.LinkEndpoint.Wait.
-func (*endpoint) Wait() {}
+func (e *endpoint) Wait() { e.lower.Wait() }
func logPacket(prefix string, protocol tcpip.NetworkProtocolNumber, b buffer.View, gso *stack.GSO) {
// Figure out the network layer info.