diff options
author | Andrew Yourtchenko <ayourtch@gmail.com> | 2017-05-02 20:08:51 +0200 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2017-05-07 14:31:07 +0000 |
commit | 57d7dbc8bf8a49ee2421fe97bd3ed7099d2384bf (patch) | |
tree | 3f4d01a8d8b2ccf24774872546d500ded67ced6b /src/plugins/acl/fa_node.h | |
parent | 9e79be2b20ba851ef0b31a9b2687e3b08d74456f (diff) |
Avoid active connection prevent timeout of idle conns after it
Fix a logic error related to timing out of the connections
following the active one. To avoid this class of issue in
the future, create corresponding testcases, as well as some
trivial sanity testcases for both IPv4 and IPv6.
Since these tests are timing-dependent and take up time,
mark them as extended tests.
Change-Id: I2c72bad5efda7db8aa9cb05801fe47928dc47927
Signed-off-by: Andrew Yourtchenko <ayourtch@gmail.com>
Diffstat (limited to 'src/plugins/acl/fa_node.h')
-rw-r--r-- | src/plugins/acl/fa_node.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/acl/fa_node.h b/src/plugins/acl/fa_node.h index 8edd0069217..861836226da 100644 --- a/src/plugins/acl/fa_node.h +++ b/src/plugins/acl/fa_node.h @@ -63,7 +63,8 @@ typedef struct { u8 reserved1; /* +1 bytes = 64 */ u32 link_prev_idx; u32 link_next_idx; - u64 reserved2[7]; + u64 link_enqueue_time; + u64 reserved2[6]; } fa_session_t; |