本文整理汇总了C++中Switch::get_bridge_path方法的典型用法代码示例。如果您正苦于以下问题:C++ Switch::get_bridge_path方法的具体用法?C++ Switch::get_bridge_path怎么用?C++ Switch::get_bridge_path使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Switch
的用法示例。
在下文中一共展示了Switch::get_bridge_path方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: unbind_from_host
void PortStateWorker::unbind_from_host(const std::string& switch_uuid, uint8_t bridge_id) const {
log_debug("port-state-worker", "\tAction: gathering data...");
Switch sw = get_manager<Switch>().get_entry(switch_uuid);
auto gas = get_gas(switch_uuid);
log_debug("port-state-worker", "\tAction: unbinding...");
m_tools.gas_tool->unbind_management_host_driver(sw.get_bridge_path(), bridge_id);
m_tools.gas_tool->unbind_from_partition(gas, gas.top.output.fields.current_partition_id, bridge_id);
// wait for system to update sysfs
std::this_thread::sleep_for(std::chrono::seconds(UNBIND_DISCOVERY_DELAY_SEC));
log_debug("port-state-worker", "\tAction: unbinding successful");
}