From 2c8d4cb2c7ed986f084e393259a0fec89072ef3d Mon Sep 17 00:00:00 2001 From: Szymon Sliwa Date: Wed, 7 Feb 2018 13:06:25 +0100 Subject: plugins: odp: Cosmetic changes in the IPsec implementation 1) renamed ipsec_api to enable_odp_ipsec, for consistency 2) added crude ASSERTs to make sure the configuration is sane 3) removed passing ipsec_api as argument, as this is a global flag now 4) reorder code - put ipsec initialization before putting workers in polling mode 5) remove not used recycle vector from esp_encrypt.c/esp_decrypt.c 6) change clib_error_return to clib_error in ipsec.c, as clib_error_return silently passes when 0 is the first argument Change-Id: Id2c6da985e872f12c8409918fb9cc6113b486d10 Signed-off-by: Szymon Sliwa --- src/plugins/odp/ipsec/ipsec.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/plugins/odp/ipsec/ipsec.h') diff --git a/src/plugins/odp/ipsec/ipsec.h b/src/plugins/odp/ipsec/ipsec.h index c947d7ce..06fdfed1 100644 --- a/src/plugins/odp/ipsec/ipsec.h +++ b/src/plugins/odp/ipsec/ipsec.h @@ -49,7 +49,7 @@ int create_sess (ipsec_sa_t * sa, sa_data_t * sess, int is_outbound); int create_odp_sa (ipsec_sa_t * sa, sa_data_t * sess, int flow_label, int is_outbound); -clib_error_t *ipsec_init (vlib_main_t * vm, u8 ipsec_api); +clib_error_t *ipsec_init (vlib_main_t * vm); #endif /* __IPSEC_H__ */ -- cgit 1.2.3-korg