diff options
author | Matus Fabian <matfabia@cisco.com> | 2018-09-24 04:41:28 -0700 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2018-09-24 21:38:05 +0000 |
commit | 8fdc015ddde7620d37d5a46cc66deb9791e634c1 (patch) | |
tree | 1640330d85793cccadcda386c6f1a1b08f5a8eaa /src/plugins/nat/in2out_ed.c | |
parent | 3138d723091234a3534baa8b1bbaad31df6fb8d6 (diff) |
NAT44: endpoint-dependent mode session timeout improvement (VPP-1423)
Change-Id: I630f3da1ea4e6e50a50f1352c097becef1efe3c0
Signed-off-by: Matus Fabian <matfabia@cisco.com>
Diffstat (limited to 'src/plugins/nat/in2out_ed.c')
-rw-r--r-- | src/plugins/nat/in2out_ed.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/nat/in2out_ed.c b/src/plugins/nat/in2out_ed.c index d4f70f5a12b..77630268047 100644 --- a/src/plugins/nat/in2out_ed.c +++ b/src/plugins/nat/in2out_ed.c @@ -315,7 +315,7 @@ slow_path_ed (snat_main_t * sm, return NAT_IN2OUT_ED_NEXT_DROP; } - s = nat_ed_session_alloc (sm, u, thread_index); + s = nat_ed_session_alloc (sm, u, thread_index, now); if (!s) { nat44_delete_user_with_no_session (sm, u, thread_index); @@ -777,7 +777,7 @@ nat44_ed_in2out_unknown_proto (snat_main_t * sm, } create_ses: - s = nat_ed_session_alloc (sm, u, thread_index); + s = nat_ed_session_alloc (sm, u, thread_index, now); if (!s) { nat44_delete_user_with_no_session (sm, u, thread_index); |