diff options
author | Luca Muscariello <muscariello@ieee.org> | 2020-03-23 06:43:34 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@fd.io> | 2020-03-23 06:43:34 +0000 |
commit | e0db9608e092c5b1381f1bc8df68ef17f9f7ec87 (patch) | |
tree | a8345430e8773e21567b9a18b4eeb48ae9a7cb71 /hicn-plugin/src/data_pcslookup_node.c | |
parent | d0ebc1438a58b108f8d1509356bfabeaf95000fa (diff) | |
parent | e6a120973cca65ca464d1323a6f7f4308dcb4717 (diff) |
Merge "[HICN-547] Removing punting through acl for interests"
Diffstat (limited to 'hicn-plugin/src/data_pcslookup_node.c')
-rw-r--r-- | hicn-plugin/src/data_pcslookup_node.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/hicn-plugin/src/data_pcslookup_node.c b/hicn-plugin/src/data_pcslookup_node.c index 1ae36202f..cbea07871 100644 --- a/hicn-plugin/src/data_pcslookup_node.c +++ b/hicn-plugin/src/data_pcslookup_node.c @@ -73,7 +73,7 @@ hicn_data_pcslookup_node_fn (vlib_main_t * vm, hicn_name_t name; hicn_header_t *hicn0 = NULL; u32 node_id0 = 0; - u8 dpo_ctx_id0 = 0; + index_t dpo_ctx_id0 = 0; int ret0; u8 vft_id0; u8 is_cs0; @@ -117,7 +117,9 @@ hicn_data_pcslookup_node_fn (vlib_main_t * vm, int res = hicn_hashtb_lookup_node (rt->pitcs->pcs_table, nameptr, namelen, name_hash, - 1 /*is_data. Do not take lock if hit CS */ , + 1 + /*is_data. Do not take lock if hit CS */ + , &node_id0, &dpo_ctx_id0, &vft_id0, &is_cs0, &hash_entry_id, &bucket_id, &bucket_is_overflown); |