diff options
author | Neale Ranns <neale@graphiant.com> | 2021-06-07 09:34:07 +0000 |
---|---|---|
committer | Ole Tr�an <otroan@employees.org> | 2021-06-14 13:13:13 +0000 |
commit | 89d939e52c999edec66194c60bc5afb2397a2842 (patch) | |
tree | 00e8ec98863ead022c30e8619b45a7585fc7a5de /src/vnet/ipsec/ipsec_itf.c | |
parent | 6197cb730e1571ca69859489c0ae7ea90a5c5fd4 (diff) |
linux-cp: Add tests for tun devices
Type: test
Signed-off-by: Neale Ranns <neale@graphiant.com>
Change-Id: Iec69d8624b15766ed65e7d09777819d2242dee17
Diffstat (limited to 'src/vnet/ipsec/ipsec_itf.c')
-rw-r--r-- | src/vnet/ipsec/ipsec_itf.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/vnet/ipsec/ipsec_itf.c b/src/vnet/ipsec/ipsec_itf.c index ae8e3427b12..532d5be4c07 100644 --- a/src/vnet/ipsec/ipsec_itf.c +++ b/src/vnet/ipsec/ipsec_itf.c @@ -342,6 +342,18 @@ ipsec_itf_delete (u32 sw_if_index) return 0; } +void +ipsec_itf_walk (ipsec_itf_walk_cb_t cb, void *ctx) +{ + ipsec_itf_t *itf; + + pool_foreach (itf, ipsec_itf_pool) + { + if (WALK_CONTINUE != cb (itf, ctx)) + break; + } +} + static clib_error_t * ipsec_itf_create_cli (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) |