summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/network/testutil/testutil.go
diff options
context:
space:
mode:
authorBruno Dal Bo <brunodalbo@google.com>2020-11-18 07:03:02 -0800
committergVisor bot <gvisor-bot@google.com>2020-11-18 07:05:59 -0800
commit9d148627f82f4325b499e023c5cbf8afd5f988f6 (patch)
tree9264d8eafd9dfed693e9fd4cb683839bc3529fae /pkg/tcpip/network/testutil/testutil.go
parenta5e3fd1b29e14083cd558def8c0f7f283a33fa9e (diff)
Introduce stack.WritePacketToRemote, remove LinkEndpoint.WriteRawPacket
Redefine stack.WritePacket into stack.WritePacketToRemote which lets the NIC decide whether to append link headers. PiperOrigin-RevId: 343071742
Diffstat (limited to 'pkg/tcpip/network/testutil/testutil.go')
-rw-r--r--pkg/tcpip/network/testutil/testutil.go15
1 files changed, 0 insertions, 15 deletions
diff --git a/pkg/tcpip/network/testutil/testutil.go b/pkg/tcpip/network/testutil/testutil.go
index 7cc52985e..5c3363759 100644
--- a/pkg/tcpip/network/testutil/testutil.go
+++ b/pkg/tcpip/network/testutil/testutil.go
@@ -85,21 +85,6 @@ func (ep *MockLinkEndpoint) WritePackets(r *stack.Route, gso *stack.GSO, pkts st
return n, nil
}
-// WriteRawPacket implements LinkEndpoint.WriteRawPacket.
-func (ep *MockLinkEndpoint) WriteRawPacket(vv buffer.VectorisedView) *tcpip.Error {
- if ep.allowPackets == 0 {
- return ep.err
- }
- ep.allowPackets--
-
- pkt := stack.NewPacketBuffer(stack.PacketBufferOptions{
- Data: vv,
- })
- ep.WrittenPackets = append(ep.WrittenPackets, pkt)
-
- return nil
-}
-
// Attach implements LinkEndpoint.Attach.
func (*MockLinkEndpoint) Attach(stack.NetworkDispatcher) {}