diff options
author | Kevin Krakauer <krakauer@google.com> | 2021-10-18 20:41:37 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-10-18 20:44:20 -0700 |
commit | 03bc93d2b82045fc44102d0f40a208f97db16479 (patch) | |
tree | b16bc3d22fd7283f1fbaa0d32cc0d8ac43922294 /pkg/tcpip/stack/BUILD | |
parent | 211bbf82ad2f490ed7215568c2065d76dfa682ca (diff) |
conntrack: update state of un-NATted connections
This prevents reaping connections unnecessarily early. This change both moves
the state update to the beginning of handlePacket and fixes a bug where
un-finalized connections could become un-reapable.
Fixes #6748
PiperOrigin-RevId: 404141012
Diffstat (limited to 'pkg/tcpip/stack/BUILD')
-rw-r--r-- | pkg/tcpip/stack/BUILD | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/tcpip/stack/BUILD b/pkg/tcpip/stack/BUILD index 6999add78..ead36880f 100644 --- a/pkg/tcpip/stack/BUILD +++ b/pkg/tcpip/stack/BUILD @@ -132,6 +132,7 @@ go_test( name = "stack_test", size = "small", srcs = [ + "conntrack_test.go", "forwarding_test.go", "neighbor_cache_test.go", "neighbor_entry_test.go", |