(proto tcpip.NetworkProtocolNumber, pkt *stack.PacketBuffer)
| 1638 | } |
| 1639 | |
| 1640 | func (d *mockDispatcher) DeliverNetworkPacket(proto tcpip.NetworkProtocolNumber, pkt *stack.PacketBuffer) { |
| 1641 | if d.onDeliverNetworkPacket != nil { |
| 1642 | d.onDeliverNetworkPacket(proto, pkt) |
| 1643 | } |
| 1644 | } |
| 1645 | |
| 1646 | func (d *mockDispatcher) DeliverLinkPacket(tcpip.NetworkProtocolNumber, *stack.PacketBuffer) {} |
| 1647 |
no outgoing calls
no test coverage detected