diff options
author | Alberto Compagno <acompagn+fdio@cisco.com> | 2020-03-17 11:21:40 +0100 |
---|---|---|
committer | Alberto Compagno <acompagn+fdio@cisco.com> | 2020-03-20 16:51:32 +0100 |
commit | 058f80a04fb24404c3f4396a45051fbc4ba05b62 (patch) | |
tree | 01800120a1f7cec4ecb1e0649d974c33225e8c01 /hicn-plugin/src/hicn.c | |
parent | b0d6cebaa0f45735a0c75a6c309aa84b550f12ad (diff) |
[HICN-551] Removed source code that uses acl
- Removed punting from the sysrepo-plugin
- Removed calls to the punting functions of binary api in the libhicnctrl
- Added documentation in vpp-plugin.md and doxygen related to pg
Change-Id: I8936156d51524797441ec49f0d5e801a1ad3643a
Signed-off-by: Alberto Compagno <acompagn+fdio@cisco.com>
Diffstat (limited to 'hicn-plugin/src/hicn.c')
-rw-r--r-- | hicn-plugin/src/hicn.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/hicn-plugin/src/hicn.c b/hicn-plugin/src/hicn.c index b4a26ec8f..7c2776869 100644 --- a/hicn-plugin/src/hicn.c +++ b/hicn-plugin/src/hicn.c @@ -22,7 +22,6 @@ #include "infra.h" #include "strategy_dpo_manager.h" #include "mgmt.h" -#include "punt.h" #include "error.h" #include "faces/app/address_mgr.h" #include "face_db.h" @@ -216,9 +215,9 @@ hicn_configure (vlib_main_t * vm, unformat_input_t * input) else if (unformat (input, "cs-reserved-app %u", &cs_reserved)) ; else - break; + break; // clib_error_return (0, -// "hICN parameter unknown"); +// "hICN parameter unknown"); } unformat_free (input); @@ -248,9 +247,6 @@ hicn_init (vlib_main_t * vm) error = hicn_api_plugin_hookup (vm); - /* Init the hash table */ - hicn_punt_init (vm); - /* Init the dpo module */ hicn_dpos_init (); @@ -259,8 +255,8 @@ hicn_init (vlib_main_t * vm) hicn_face_module_init (vm); - /* Init the route module*/ - hicn_route_init(); + /* Init the route module */ + hicn_route_init (); return error; } |