From d6e8a5f3ca2ecc78c5c8542356099912cbffb552 Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Tue, 30 Jan 2018 16:07:41 -0800 Subject: Fix Windows compile error. --- osdep/WindowsEthernetTap.hpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'osdep/WindowsEthernetTap.hpp') diff --git a/osdep/WindowsEthernetTap.hpp b/osdep/WindowsEthernetTap.hpp index 856c3be7..1e36bdd8 100644 --- a/osdep/WindowsEthernetTap.hpp +++ b/osdep/WindowsEthernetTap.hpp @@ -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 _multicastGroups; - std::queue< std::pair< Array,unsigned int > > _injectPending; + struct _InjectPending + { + unsigned int len; + char data[ZT_MAX_MTU + 32]; + }; + std::queue<_InjectPending> _injectPending; Mutex _injectPending_m; std::string _pathToHelpers; -- cgit v1.2.3