mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-18 20:47:53 +00:00
Tear down routes before devices when leaving a network or shutting down.
This commit is contained in:
parent
1a1d7d9ada
commit
d7ba2957cd
@ -539,6 +539,15 @@ public:
|
||||
memset(&config, 0, sizeof(ZT_VirtualNetworkConfig));
|
||||
}
|
||||
|
||||
~NetworkState()
|
||||
{
|
||||
this->managedRoutes.clear();
|
||||
#ifdef __APPLE__
|
||||
Thread::sleep(10);
|
||||
this->tap.reset();
|
||||
#endif
|
||||
}
|
||||
|
||||
std::shared_ptr<EthernetTap> tap;
|
||||
ZT_VirtualNetworkConfig config; // memcpy() of raw config from core
|
||||
std::vector<InetAddress> managedIps;
|
||||
|
Loading…
Reference in New Issue
Block a user