diff options
author | Klement Sekera <ksekera@cisco.com> | 2021-03-05 20:34:05 +0100 |
---|---|---|
committer | Klement Sekera <ksekera@cisco.com> | 2021-03-07 23:39:25 +0000 |
commit | e3416e307e263dc565546c4e748df99b584708a0 (patch) | |
tree | b80f0f327fee5c9f946ab4f19b5d825e2828b7cc /src/plugins/nat/nat44-ed/nat44_ed.h | |
parent | 76401c5767ecdf701f4c77beee0b721c485321d5 (diff) |
nat: replace main vlib with per-thread vlib
Fix incorrect vlib main usage.
Type: fix
Signed-off-by: Klement Sekera <ksekera@cisco.com>
Change-Id: Ic5304ca844f1b27756818eb6995b1d9c08412674
Diffstat (limited to 'src/plugins/nat/nat44-ed/nat44_ed.h')
-rw-r--r-- | src/plugins/nat/nat44-ed/nat44_ed.h | 22 |
1 files changed, 7 insertions, 15 deletions
diff --git a/src/plugins/nat/nat44-ed/nat44_ed.h b/src/plugins/nat/nat44-ed/nat44_ed.h index c6bccd9f492..66276285584 100644 --- a/src/plugins/nat/nat44-ed/nat44_ed.h +++ b/src/plugins/nat/nat44-ed/nat44_ed.h @@ -1079,21 +1079,13 @@ void expire_per_vrf_sessions (u32 fib_index); * * @returns 0 if match found otherwise 1. */ -int snat_static_mapping_match (snat_main_t * sm, - ip4_address_t match_addr, - u16 match_port, - u32 match_fib_index, - nat_protocol_t match_protocol, - ip4_address_t * mapping_addr, - u16 * mapping_port, - u32 * mapping_fib_index, - u8 by_external, - u8 * is_addr_only, - twice_nat_type_t * twice_nat, - lb_nat_type_t * lb, - ip4_address_t * ext_host_addr, - u8 * is_identity_nat, - snat_static_mapping_t ** out); +int snat_static_mapping_match ( + vlib_main_t *vm, snat_main_t *sm, ip4_address_t match_addr, u16 match_port, + u32 match_fib_index, nat_protocol_t match_protocol, + ip4_address_t *mapping_addr, u16 *mapping_port, u32 *mapping_fib_index, + u8 by_external, u8 *is_addr_only, twice_nat_type_t *twice_nat, + lb_nat_type_t *lb, ip4_address_t *ext_host_addr, u8 *is_identity_nat, + snat_static_mapping_t **out); /** * @brief Add/del NAT address to FIB. |