diff options
author | Alberto Compagno <acompagn+fdio@cisco.com> | 2019-10-09 13:40:48 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@fd.io> | 2019-10-09 13:40:48 +0000 |
commit | 59cc7d7f761b9217b460dfd02520b3dd3a8f49bf (patch) | |
tree | b5ee8bcbc1b8b30cc3fe727e63259d8d5dbb808d /hicn-plugin/src/hicn_api.c | |
parent | 80035e4aeffc64deb1e5f67dda94787ae571a490 (diff) | |
parent | 9f0aa8c27ee927b5c74b75fac72eaa782ff23a53 (diff) |
Merge "[HICN-226] Reworked incoming face identification on receiving a data packet. The output is now a list of possible incoming faces, plus a preferred one which cover the case in which the face is a local producer face. In that case we can identify the face uniquely as we are sure that we have one face for memif."
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 9bca748e6..f8933206d 100644 --- a/hicn-plugin/src/hicn_api.c +++ b/hicn-plugin/src/hicn_api.c @@ -249,7 +249,7 @@ vl_api_hicn_api_face_ip_add_t_handler (vl_api_hicn_api_face_ip_add_t * mp) } if (rv == HICN_ERROR_NONE) - rv = hicn_face_ip_add (&local_addr, &remote_addr, sw_if, &faceid); + rv = hicn_face_ip_add (&local_addr, &remote_addr, sw_if, &faceid, 0); else faceid = HICN_FACE_NULL; |