diff options
author | Matthew Smith <mgsmith@netgate.com> | 2020-09-17 16:33:10 -0500 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2020-09-18 17:54:12 +0000 |
commit | a2bbeb848d9c48df51079def147c2cbcda28f063 (patch) | |
tree | 87ec0d30e061da84b0186a8502179337faedffcb /src/vnet | |
parent | 3d81267945a732753b0dbd0a83a50ab0625b448a (diff) |
fib: skip byte swap on n_paths in mroute details
Type: fix
While preparing to send a ip_mroute_details API message, the number
of paths for a multicast route is stored in an int in
send_ip_mroute_details(). Before the value in the int is copied into
the field n_paths in the API message, the byte order is swapped.
This results in n_paths getting set to 0.
Change the int to a u8 and omit the byte swap so API clients can
receive data on multicast route paths.
Change-Id: Ie6dcb0f7b135c5b5deeeb2e44147560dbbb12507
Signed-off-by: Matthew Smith <mgsmith@netgate.com>
Diffstat (limited to 'src/vnet')
-rw-r--r-- | src/vnet/ip/ip_api.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vnet/ip/ip_api.c b/src/vnet/ip/ip_api.c index d26480670b3..2f02fa01abf 100644 --- a/src/vnet/ip/ip_api.c +++ b/src/vnet/ip/ip_api.c @@ -330,7 +330,7 @@ send_ip_mroute_details (vpe_api_main_t * am, vl_api_ip_mroute_details_t *mp; const mfib_prefix_t *pfx; vl_api_mfib_path_t *fp; - int path_count; + u8 path_count; rpaths = NULL; pfx = mfib_entry_get_prefix (mfib_entry_index); @@ -348,7 +348,7 @@ send_ip_mroute_details (vpe_api_main_t * am, mp->route.table_id = htonl (mfib_table_get_table_id (mfib_entry_get_fib_index (mfib_entry_index), pfx->fp_proto)); - mp->route.n_paths = htonl (path_count); + mp->route.n_paths = path_count; fp = mp->route.paths; vec_foreach (rpath, rpaths) { |