summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/link/ethernet
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2021-08-27 18:22:21 +0000
committergVisor bot <gvisor-bot@google.com>2021-08-27 18:22:21 +0000
commit271ed35bb06d0af7745f116630d986a02183c79d (patch)
tree21d2faf352a779118f8203ed84869efb85298d1d /pkg/tcpip/link/ethernet
parentdab18d9525e50d135aff0758d2171bf021d240bb (diff)
parentfbf020d6a0258275a68573032bea225a1f5396ab (diff)
Merge release-20210816.0-49-gfbf020d6a (automated)
Diffstat (limited to 'pkg/tcpip/link/ethernet')
-rw-r--r--pkg/tcpip/link/ethernet/ethernet.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkg/tcpip/link/ethernet/ethernet.go b/pkg/tcpip/link/ethernet/ethernet.go
index b9db273d0..8211a2031 100644
--- a/pkg/tcpip/link/ethernet/ethernet.go
+++ b/pkg/tcpip/link/ethernet/ethernet.go
@@ -112,3 +112,8 @@ func (*Endpoint) AddHeader(local, remote tcpip.LinkAddress, proto tcpip.NetworkP
}
eth.Encode(&fields)
}
+
+// WriteRawPacket implements stack.LinkEndpoint.
+func (e *Endpoint) WriteRawPacket(pkt *stack.PacketBuffer) tcpip.Error {
+ return e.Endpoint.WriteRawPacket(pkt)
+}