diff options
author | Matus Fabian <matfabia@cisco.com> | 2018-05-04 03:57:42 -0700 |
---|---|---|
committer | Damjan Marion <dmarion.lists@gmail.com> | 2018-05-08 16:03:30 +0000 |
commit | ebdf190a9c4a514329de7e5e9b9178c3af055122 (patch) | |
tree | 3b6d8fdd1e4cf2c3fc8d1bb0202308334d1223ee /src/plugins/nat/nat.api | |
parent | 7220f42cbed7ccde0738e74fd498db1770b24cb7 (diff) |
NAT44: TCP connection close detection (VPP-1266)
Change-Id: Iba1cc1179ee80478e29888790a6476571d1904dc
Signed-off-by: Matus Fabian <matfabia@cisco.com>
Diffstat (limited to 'src/plugins/nat/nat.api')
-rw-r--r-- | src/plugins/nat/nat.api | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/nat/nat.api b/src/plugins/nat/nat.api index 23c89adef7a..24aa5d1aa6f 100644 --- a/src/plugins/nat/nat.api +++ b/src/plugins/nat/nat.api @@ -13,7 +13,7 @@ * limitations under the License. */ -option version = "2.4.1"; +option version = "2.5.0"; /** * @file nat.api @@ -558,6 +558,7 @@ define nat44_user_session_dump { @param last_heard - last heard timer @param total_bytes - count of bytes sent through session @param total_pkts - count of pakets sent through session + @param is_closed - 1 if TCP session is closed */ define nat44_user_session_details { u32 context; @@ -570,6 +571,7 @@ define nat44_user_session_details { u64 last_heard; u64 total_bytes; u32 total_pkts; + u8 is_closed; }; /** \brief NAT44 load-balancing address and port pair |