summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/link/nested/nested.go
diff options
context:
space:
mode:
authorGhanan Gowripalan <ghanan@google.com>2021-08-27 11:12:08 -0700
committergVisor bot <gvisor-bot@google.com>2021-08-27 11:15:23 -0700
commitfbf020d6a0258275a68573032bea225a1f5396ab (patch)
tree3f292e3a2a63b031b59d73378ba300a71a3997d5 /pkg/tcpip/link/nested/nested.go
parent1076702371fa02a36b70a6abf10dbec886742208 (diff)
Add LinkEndpoint.WriteRawPacket with stubs
...returning unsupported errors. PiperOrigin-RevId: 393388991
Diffstat (limited to 'pkg/tcpip/link/nested/nested.go')
-rw-r--r--pkg/tcpip/link/nested/nested.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkg/tcpip/link/nested/nested.go b/pkg/tcpip/link/nested/nested.go
index 3e816b0c7..14cb96d63 100644
--- a/pkg/tcpip/link/nested/nested.go
+++ b/pkg/tcpip/link/nested/nested.go
@@ -152,3 +152,8 @@ func (e *Endpoint) ARPHardwareType() header.ARPHardwareType {
func (e *Endpoint) AddHeader(local, remote tcpip.LinkAddress, protocol tcpip.NetworkProtocolNumber, pkt *stack.PacketBuffer) {
e.child.AddHeader(local, remote, protocol, pkt)
}
+
+// WriteRawPacket implements stack.LinkEndpoint.
+func (e *Endpoint) WriteRawPacket(pkt *stack.PacketBuffer) tcpip.Error {
+ return e.child.WriteRawPacket(pkt)
+}