diff options
author | gVisor bot <gvisor-bot@google.com> | 2021-08-27 18:22:21 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-08-27 18:22:21 +0000 |
commit | 271ed35bb06d0af7745f116630d986a02183c79d (patch) | |
tree | 21d2faf352a779118f8203ed84869efb85298d1d /pkg/tcpip/link/nested | |
parent | dab18d9525e50d135aff0758d2171bf021d240bb (diff) | |
parent | fbf020d6a0258275a68573032bea225a1f5396ab (diff) |
Merge release-20210816.0-49-gfbf020d6a (automated)
Diffstat (limited to 'pkg/tcpip/link/nested')
-rw-r--r-- | pkg/tcpip/link/nested/nested.go | 5 |
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) +} |