diff options
author | Filip Varga <fivarga@cisco.com> | 2020-09-29 16:53:20 +0200 |
---|---|---|
committer | Filip Varga <fivarga@cisco.com> | 2020-10-09 10:20:21 +0000 |
commit | dd9eae5c29a4379943e60ddf6b7ab96b8e154040 (patch) | |
tree | 5e915d1377ffaf452e9dfa1945516d44c1ac8355 /src/plugins/nat/det44 | |
parent | aa04395573f26fe420d7eb9ca329732b7197fe52 (diff) |
nat: ipfix logging separation & refactor
Type: refactor
Change-Id: I8785e4987e4f60361072440d0c3c6954c9c12394
Signed-off-by: Filip Varga <fivarga@cisco.com>
Diffstat (limited to 'src/plugins/nat/det44')
-rw-r--r-- | src/plugins/nat/det44/det44.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/nat/det44/det44.h b/src/plugins/nat/det44/det44.h index 3db6081788a..83eefc9fe0d 100644 --- a/src/plugins/nat/det44/det44.h +++ b/src/plugins/nat/det44/det44.h @@ -39,6 +39,7 @@ #include <nat/lib/lib.h> #include <nat/lib/inlines.h> +#include <nat/lib/ipfix_logging.h> /* Session state */ #define foreach_det44_session_state \ @@ -417,10 +418,9 @@ snat_det_ses_create (u32 thread_index, snat_det_map_t * dm, } } - // TODO: - /*snat_ipfix_logging_max_entries_per_user (thread_index, - DET44_SES_PER_USER, - in_addr->as_u32); */ + nat_ipfix_logging_max_entries_per_user (thread_index, + DET44_SES_PER_USER, + in_addr->as_u32); return 0; } |