X-Git-Url: https://gerrit.fd.io/r/gitweb?p=vpp.git;a=blobdiff_plain;f=src%2Fvnet%2Fdevices%2Ftap%2Ftapv2_api.c;h=1260afdd24f3eab19c951113d721fa577c96fe8b;hp=e70d63f914fcf86ab08450d8eec9281de67e4229;hb=754f24b35;hpb=d2bfb78f4f8fbfae204424467a4106530b89e608 diff --git a/src/vnet/devices/tap/tapv2_api.c b/src/vnet/devices/tap/tapv2_api.c index e70d63f914f..1260afdd24f 100644 --- a/src/vnet/devices/tap/tapv2_api.c +++ b/src/vnet/devices/tap/tapv2_api.c @@ -109,6 +109,8 @@ vl_api_tap_create_v2_t_handler (vl_api_tap_create_v2_t * mp) ap->host_ip6_gw_set = 1; } + ap->tap_flags = ntohl (mp->tap_flags); + tap_create_if (vm, ap); reg = vl_api_client_index_to_registration (mp->client_index); @@ -194,6 +196,7 @@ tap_send_sw_interface_details (vpe_api_main_t * am, mp->_vl_msg_id = htons (VL_API_SW_INTERFACE_TAP_V2_DETAILS); mp->id = htonl (tap_if->id); mp->sw_if_index = htonl (tap_if->sw_if_index); + mp->tap_flags = htonl (tap_if->tap_flags); clib_memcpy (mp->dev_name, tap_if->dev_name, MIN (ARRAY_LEN (mp->dev_name) - 1, strlen ((const char *) tap_if->dev_name)));