Home
last modified time | relevance | path

Searched refs:link_add_request (Results 1 – 1 of 1) sorted by relevance

/device/google/cuttlefish/guest/commands/setup_wifi/
Dmain.cpp75 cuttlefish::NetlinkRequest link_add_request(RTM_NEWLINK, in CreateWifiWrapper() local
77 link_add_request.Append(ifinfomsg { in CreateWifiWrapper()
84 link_add_request.AddString(IFLA_IFNAME, destination); in CreateWifiWrapper()
85 link_add_request.AddInt(IFLA_LINK, index); in CreateWifiWrapper()
87 link_add_request.PushList(IFLA_LINKINFO); in CreateWifiWrapper()
88 link_add_request.AddString(IFLA_INFO_KIND, "virt_wifi"); in CreateWifiWrapper()
89 link_add_request.PushList(IFLA_INFO_DATA); in CreateWifiWrapper()
90 link_add_request.PopList(); in CreateWifiWrapper()
91 link_add_request.PopList(); in CreateWifiWrapper()
93 bool link_add_success = nl->Send(link_add_request); in CreateWifiWrapper()