From 25a5275921678e9048a4bc0e1827f0235894c0bf Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Tue, 26 Apr 2016 08:53:49 -0700 Subject: [PATCH] . --- node/Dictionary.cpp | 4 ++ node/Dictionary.hpp | 7 +++- node/NetworkConfig.hpp | 7 +++- node/NetworkConfigRequestMetaData.hpp | 60 +++++++++++++++++++++++++++ 4 files changed, 75 insertions(+), 3 deletions(-) create mode 100644 node/NetworkConfigRequestMetaData.hpp diff --git a/node/Dictionary.cpp b/node/Dictionary.cpp index e7a1a0e60..1862499ad 100644 --- a/node/Dictionary.cpp +++ b/node/Dictionary.cpp @@ -16,6 +16,8 @@ * along with this program. If not, see . */ +#ifdef ZT_SUPPORT_OLD_STYLE_NETCONF + #include "Dictionary.hpp" #include "C25519.hpp" #include "Identity.hpp" @@ -238,3 +240,5 @@ void Dictionary::_appendEsc(const char *data,unsigned int len,std::string &to) } } // namespace ZeroTier + +#endif // ZT_SUPPORT_OLD_STYLE_NETCONF diff --git a/node/Dictionary.hpp b/node/Dictionary.hpp index 5db82600b..d4cdd2307 100644 --- a/node/Dictionary.hpp +++ b/node/Dictionary.hpp @@ -19,6 +19,10 @@ #ifndef ZT_DICTIONARY_HPP #define ZT_DICTIONARY_HPP +#include "Constants.hpp" + +#ifdef ZT_SUPPORT_OLD_STYLE_NETCONF + #include #include @@ -26,7 +30,6 @@ #include #include -#include "Constants.hpp" #include "Utils.hpp" // Three fields are added/updated by sign() @@ -272,4 +275,6 @@ private: } // namespace ZeroTier +#endif // ZT_SUPPORT_OLD_STYLE_NETCONF + #endif diff --git a/node/NetworkConfig.hpp b/node/NetworkConfig.hpp index 3d1aa13c0..c0ca02308 100644 --- a/node/NetworkConfig.hpp +++ b/node/NetworkConfig.hpp @@ -25,20 +25,23 @@ #include #include -#include #include #include #include "../include/ZeroTierOne.h" #include "Constants.hpp" -#include "Dictionary.hpp" #include "Buffer.hpp" #include "InetAddress.hpp" #include "MulticastGroup.hpp" #include "Address.hpp" #include "CertificateOfMembership.hpp" +#ifdef ZT_SUPPORT_OLD_STYLE_NETCONF +#include "Dictionary.hpp" +#include +#endif + /** * First byte of V2 binary-serialized network configs * diff --git a/node/NetworkConfigRequestMetaData.hpp b/node/NetworkConfigRequestMetaData.hpp new file mode 100644 index 000000000..757ed20b5 --- /dev/null +++ b/node/NetworkConfigRequestMetaData.hpp @@ -0,0 +1,60 @@ +/* + * ZeroTier One - Network Virtualization Everywhere + * Copyright (C) 2011-2016 ZeroTier, Inc. https://www.zerotier.com/ + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef ZT_NETWORKCONFIGREQUESTMETADATA_HPP +#define ZT_NETWORKCONFIGREQUESTMETADATA_HPP + +#include +#include +#include + +#include "Constants.hpp" +#include "NetworkConfig.hpp" + +#ifdef ZT_SUPPORT_OLD_STYLE_NETCONF +#include +#include "Dictionary.hpp" +#endif + +namespace ZeroTier { + +class NetworkConfigRequestMetaData +{ +public: + NetworkConfigRequestMetaData() : + _vendor(0), + _majorVersion(0), + _minorVersion(0), + _revision(0), + _buildNo(0), + _flags(0) + { + } + +protected: + unsigned int _vendor; + unsigned int _majorVersion; + unsigned int _minorVersion; + unsigned int _revision; + unsigned int _buildNo; + unsigned int _flags; +}; + +} // namespace ZeroTier + +#endif