diff options
author | Alberto Compagno <acompagn+fdio@cisco.com> | 2019-03-27 17:40:42 +0100 |
---|---|---|
committer | Alberto Compagno <acompagn+fdio@cisco.com> | 2019-03-27 17:40:42 +0100 |
commit | a91867ab59f1cbbd41d1e01ded6e15474a6889b5 (patch) | |
tree | 9dcf9c2bd31aee81ab5e2b580d531da915fa5e0d /hicn-plugin/src/hicn_api.c | |
parent | 558581790763815071e9c77e06047e689faf752f (diff) |
[HICN-150] Fixed punting to classify packets from current_data instead of from data
Change-Id: I448b13430dc00ea47b928092249fb9ca88ceba0e
Signed-off-by: Alberto Compagno <acompagn+fdio@cisco.com>
Diffstat (limited to 'hicn-plugin/src/hicn_api.c')
-rw-r--r-- | hicn-plugin/src/hicn_api.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hicn-plugin/src/hicn_api.c b/hicn-plugin/src/hicn_api.c index 6249d6e5e..8f47ea799 100644 --- a/hicn-plugin/src/hicn_api.c +++ b/hicn-plugin/src/hicn_api.c @@ -500,7 +500,7 @@ static void vl_api_hicn_api_punting_add_t_handler u32 swif = clib_net_to_host_u32 (mp->swif); rv = - hicn_punt_interest_data_for_ethernet (vm, &prefix, subnet_mask, swif, 0); + hicn_punt_interest_data_for_ip (vm, &prefix, subnet_mask, swif, 0, NO_L2); REPLY_MACRO (VL_API_HICN_API_PUNTING_ADD_REPLY /* , rmp, mp, rv */ ); } |