diff options
author | gVisor bot <gvisor-bot@google.com> | 2021-09-23 20:22:52 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-09-23 20:22:52 +0000 |
commit | 275222631a31e1cc29a02776bae47631229df191 (patch) | |
tree | 24f1d8de03d7e971b1f22d925d7ca1c314aed3a7 /pkg/tcpip/network/ipv4 | |
parent | edc93e9b8253e22b6484e4979d461cbb6559a649 (diff) | |
parent | 8627db006bda75fd81d17bf4535b381abafaed8a (diff) |
Merge release-20210921.0-20-g8627db006 (automated)
Diffstat (limited to 'pkg/tcpip/network/ipv4')
-rw-r--r-- | pkg/tcpip/network/ipv4/ipv4.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/tcpip/network/ipv4/ipv4.go b/pkg/tcpip/network/ipv4/ipv4.go index e4c08c016..dda473e48 100644 --- a/pkg/tcpip/network/ipv4/ipv4.go +++ b/pkg/tcpip/network/ipv4/ipv4.go @@ -841,7 +841,7 @@ func (e *endpoint) HandlePacket(pkt *stack.PacketBuffer) { // Loopback traffic skips the prerouting chain. inNicName := e.protocol.stack.FindNICNameFromID(e.nic.ID()) - if ok := e.protocol.stack.IPTables().CheckPrerouting(pkt, e.MainAddress().Address, inNicName); !ok { + if ok := e.protocol.stack.IPTables().CheckPrerouting(pkt, e, inNicName); !ok { // iptables is telling us to drop the packet. stats.IPTablesPreroutingDropped.Increment() return |