From c04cbf16ccfd9ef142937e4684af6093d812a866 Mon Sep 17 00:00:00 2001 From: Dave Wallace Date: Wed, 7 Feb 2018 18:14:02 -0500 Subject: VCL: remove vrf from vppcom api. Change-Id: I6d91c8051de786fb8781cd0750ea9c350036b306 Signed-off-by: Dave Wallace --- src/vcl/sock_test_client.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/vcl/sock_test_client.c') diff --git a/src/vcl/sock_test_client.c b/src/vcl/sock_test_client.c index 563b05fd8dd..ddb9e7fb20a 100644 --- a/src/vcl/sock_test_client.c +++ b/src/vcl/sock_test_client.c @@ -508,8 +508,7 @@ sock_test_connect_test_sockets (uint32_t num_test_sockets) tsock = &scm->test_socket[i]; #ifdef VCL_TEST tsock->fd = - vppcom_session_create (VPPCOM_VRF_DEFAULT, VPPCOM_PROTO_TCP, - 1 /* is_nonblocking */ ); + vppcom_session_create (VPPCOM_PROTO_TCP, 1 /* is_nonblocking */ ); if (tsock->fd < 0) { errno = -tsock->fd; @@ -945,7 +944,7 @@ main (int argc, char **argv) } else { - ctrl->fd = vppcom_session_create (VPPCOM_VRF_DEFAULT, VPPCOM_PROTO_TCP, + ctrl->fd = vppcom_session_create (VPPCOM_PROTO_TCP, 0 /* is_nonblocking */ ); if (ctrl->fd < 0) { @@ -973,7 +972,6 @@ main (int argc, char **argv) scm->server_addr.sin_port = htons (atoi (argv[optind])); #ifdef VCL_TEST - scm->server_endpt.vrf = VPPCOM_VRF_DEFAULT; scm->server_endpt.is_ip4 = (scm->server_addr.sin_family == AF_INET); scm->server_endpt.ip = (uint8_t *) & scm->server_addr.sin_addr; scm->server_endpt.port = (uint16_t) scm->server_addr.sin_port; -- cgit 1.2.3-korg