sr: fix byte-order in steering API

Type: fix
Change-Id: Ib25e5324e4ba360cd91b92abc78c994f86148148
Signed-off-by: Ignas Bacius <ignas@noia.network>
This commit is contained in:
Ignas Bacius
2020-04-06 16:31:27 +03:00
committed by Neale Ranns
parent ec9cb96687
commit 483a3d819a

View File

@ -224,7 +224,7 @@ static void vl_api_sr_steering_add_del_t_handler
ntohl (mp->sr_policy_index),
ntohl (mp->table_id),
&prefix_addr,
ntohl (mp->prefix.len),
mp->prefix.len,
ntohl (mp->sw_if_index), mp->traffic_type);
BAD_SW_IF_INDEX_LABEL;
@ -364,7 +364,7 @@ static void send_sr_steering_pol_details
rmp->fib_table = htonl (t->classify.l3.fib_table);
ip_address_encode (&t->classify.l3.prefix, IP46_TYPE_ANY,
&rmp->prefix.address);
rmp->prefix.len = htonl (t->classify.l3.mask_width);
rmp->prefix.len = t->classify.l3.mask_width;
rmp->sw_if_index = htonl (t->classify.l2.sw_if_index);