Path fixes in osnet/ stuff

This commit is contained in:
Adam Ierymenko 2014-07-31 14:31:32 -07:00
parent b80c229d87
commit 98d426e1d5
10 changed files with 15 additions and 46 deletions

View file

@ -71,13 +71,4 @@ void LinuxEthernetTapFactory::close(EthernetTap *tap,bool destroyPersistentDevic
delete tap;
}
std::vector<std::string> allTapDeviceNames() const
{
std::vector<std::string> dn;
Mutex::Lock _l(_devices_m);
for(std::vector<EthernetTap *>::const_iterator d(_devices.begin());d!=_devices.end();++d)
dn.push_back(d->deviceName());
return dn;
}
} // namespace ZeroTier