mirror of
https://github.com/ZeroTier/ZeroTierOne
synced 2025-08-21 05:43:59 -07:00
Fix Windows compile error.
This commit is contained in:
parent
4878d8ec15
commit
d6e8a5f3ca
4 changed files with 923 additions and 926 deletions
|
@ -38,7 +38,6 @@
|
|||
|
||||
#include "../node/Constants.hpp"
|
||||
#include "../node/Mutex.hpp"
|
||||
#include "../node/Array.hpp"
|
||||
#include "../node/MulticastGroup.hpp"
|
||||
#include "../node/InetAddress.hpp"
|
||||
#include "../osdep/Thread.hpp"
|
||||
|
@ -150,7 +149,12 @@ private:
|
|||
|
||||
std::vector<MulticastGroup> _multicastGroups;
|
||||
|
||||
std::queue< std::pair< Array<char,ZT_MAX_MTU + 32>,unsigned int > > _injectPending;
|
||||
struct _InjectPending
|
||||
{
|
||||
unsigned int len;
|
||||
char data[ZT_MAX_MTU + 32];
|
||||
};
|
||||
std::queue<_InjectPending> _injectPending;
|
||||
Mutex _injectPending_m;
|
||||
|
||||
std::string _pathToHelpers;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue