From 427f87db913d7b8b6a3817f3293126892fdf8288 Mon Sep 17 00:00:00 2001 From: Joseph Henry Date: Tue, 10 Oct 2017 12:41:36 -0700 Subject: [PATCH] More fixes for Windows support --- src/VirtualTap.cpp | 1 + src/VirtualTap.hpp | 1 + 2 files changed, 2 insertions(+) diff --git a/src/VirtualTap.cpp b/src/VirtualTap.cpp index c33a0c0..1ac169b 100644 --- a/src/VirtualTap.cpp +++ b/src/VirtualTap.cpp @@ -84,6 +84,7 @@ namespace ZeroTier { _handler(handler), _homePath(homePath), _arg(arg), + _initialized(false), _enabled(true), _run(true), _mac(mac), diff --git a/src/VirtualTap.hpp b/src/VirtualTap.hpp index b1e5c30..58fb788 100644 --- a/src/VirtualTap.hpp +++ b/src/VirtualTap.hpp @@ -206,6 +206,7 @@ namespace ZeroTier { std::string _homePath; void *_arg; + volatile bool _initialized; volatile bool _enabled; volatile bool _run; MAC _mac;