vpp: Fix node APIs
Type: fix Change-Id: Ic6e2b7e05b50945a8e2222019c2942a6ee52e465 Signed-off-by: Nathan Skrzypczak <nathan.skrzypczak@gmail.com>
This commit is contained in:

committed by
Damjan Marion

parent
942b9803f8
commit
5cd626eb1e
@ -342,7 +342,7 @@ vl_api_get_node_index_t_handler (vl_api_get_node_index_t * mp)
|
|||||||
/* *INDENT-OFF* */
|
/* *INDENT-OFF* */
|
||||||
REPLY_MACRO2(VL_API_GET_NODE_INDEX_REPLY,
|
REPLY_MACRO2(VL_API_GET_NODE_INDEX_REPLY,
|
||||||
({
|
({
|
||||||
rmp->node_index = ntohl(node_index);
|
rmp->node_index = htonl(node_index);
|
||||||
}));
|
}));
|
||||||
/* *INDENT-ON* */
|
/* *INDENT-ON* */
|
||||||
}
|
}
|
||||||
@ -389,7 +389,7 @@ out:
|
|||||||
/* *INDENT-OFF* */
|
/* *INDENT-OFF* */
|
||||||
REPLY_MACRO2(VL_API_GET_NEXT_INDEX_REPLY,
|
REPLY_MACRO2(VL_API_GET_NEXT_INDEX_REPLY,
|
||||||
({
|
({
|
||||||
rmp->next_index = ntohl(next_index);
|
rmp->next_index = htonl(next_index);
|
||||||
}));
|
}));
|
||||||
/* *INDENT-ON* */
|
/* *INDENT-ON* */
|
||||||
}
|
}
|
||||||
@ -420,9 +420,9 @@ vl_api_add_node_next_t_handler (vl_api_add_node_next_t * mp)
|
|||||||
|
|
||||||
out:
|
out:
|
||||||
/* *INDENT-OFF* */
|
/* *INDENT-OFF* */
|
||||||
REPLY_MACRO2(VL_API_GET_NODE_INDEX_REPLY,
|
REPLY_MACRO2(VL_API_ADD_NODE_NEXT_REPLY,
|
||||||
({
|
({
|
||||||
rmp->next_index = ntohl(next_index);
|
rmp->next_index = htonl(next_index);
|
||||||
}));
|
}));
|
||||||
/* *INDENT-ON* */
|
/* *INDENT-ON* */
|
||||||
}
|
}
|
||||||
|
@ -273,7 +273,7 @@ class TestGeneveL3(VppTestCase):
|
|||||||
remote_address=self.pg0.remote_ip4,
|
remote_address=self.pg0.remote_ip4,
|
||||||
vni=vni,
|
vni=vni,
|
||||||
l3_mode=1,
|
l3_mode=1,
|
||||||
decap_next_index=r.node_index)
|
decap_next_index=r.next_index)
|
||||||
|
|
||||||
self.vapi.sw_interface_add_del_address(
|
self.vapi.sw_interface_add_del_address(
|
||||||
sw_if_index=r.sw_if_index, prefix="10.0.0.1/24")
|
sw_if_index=r.sw_if_index, prefix="10.0.0.1/24")
|
||||||
|
Reference in New Issue
Block a user