summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--node/Address.hpp4
-rw-r--r--node/Array.hpp4
-rw-r--r--node/AtomicCounter.hpp4
-rw-r--r--node/BandwidthAccount.hpp4
-rw-r--r--node/Buffer.hpp4
-rw-r--r--node/C25519.hpp4
-rw-r--r--node/CMWC4096.hpp4
-rw-r--r--node/CertificateOfMembership.hpp4
-rw-r--r--node/Condition.hpp4
-rw-r--r--node/Constants.hpp4
-rw-r--r--node/Defaults.hpp4
-rw-r--r--node/Demarc.hpp4
-rw-r--r--node/Dictionary.hpp4
-rw-r--r--node/EthernetTap.hpp4
-rw-r--r--node/Identity.hpp4
-rw-r--r--node/InetAddress.hpp4
-rw-r--r--node/Logger.hpp4
-rw-r--r--node/MAC.hpp4
-rw-r--r--node/MulticastGroup.hpp4
-rw-r--r--node/Multicaster.hpp4
-rw-r--r--node/Mutex.hpp4
-rw-r--r--node/Network.hpp4
-rw-r--r--node/NetworkConfig.hpp4
-rw-r--r--node/Node.cpp9
-rw-r--r--node/Node.hpp12
-rw-r--r--node/NodeConfig.hpp4
-rw-r--r--node/NonCopyable.hpp4
-rw-r--r--node/Packet.hpp4
-rw-r--r--node/PacketDecoder.hpp4
-rw-r--r--node/Peer.hpp4
-rw-r--r--node/Poly1305.hpp4
-rw-r--r--node/RuntimeEnvironment.hpp4
-rw-r--r--node/SHA512.hpp4
-rw-r--r--node/Salsa20.hpp4
-rw-r--r--node/Service.hpp4
-rw-r--r--node/SharedPtr.hpp4
-rw-r--r--node/Switch.hpp4
-rw-r--r--node/SysEnv.hpp4
-rw-r--r--node/Thread.hpp4
-rw-r--r--node/Topology.hpp4
-rw-r--r--node/UdpSocket.hpp4
-rw-r--r--node/Utils.hpp4
42 files changed, 82 insertions, 99 deletions
diff --git a/node/Address.hpp b/node/Address.hpp
index b28284b0..7247260c 100644
--- a/node/Address.hpp
+++ b/node/Address.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_ADDRESS_HPP
-#define _ZT_ADDRESS_HPP
+#ifndef ZT_ADDRESS_HPP
+#define ZT_ADDRESS_HPP
#include <stdio.h>
#include <stdlib.h>
diff --git a/node/Array.hpp b/node/Array.hpp
index d48c2f52..c31626b2 100644
--- a/node/Array.hpp
+++ b/node/Array.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_ARRAY_HPP
-#define _ZT_ARRAY_HPP
+#ifndef ZT_ARRAY_HPP
+#define ZT_ARRAY_HPP
#include <string>
#include <algorithm>
diff --git a/node/AtomicCounter.hpp b/node/AtomicCounter.hpp
index ebc70817..1aecaa65 100644
--- a/node/AtomicCounter.hpp
+++ b/node/AtomicCounter.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_ATOMICCOUNTER_HPP
-#define _ZT_ATOMICCOUNTER_HPP
+#ifndef ZT_ATOMICCOUNTER_HPP
+#define ZT_ATOMICCOUNTER_HPP
#include "Mutex.hpp"
#include "NonCopyable.hpp"
diff --git a/node/BandwidthAccount.hpp b/node/BandwidthAccount.hpp
index be180cfc..98c7dd20 100644
--- a/node/BandwidthAccount.hpp
+++ b/node/BandwidthAccount.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_BWACCOUNT_HPP
-#define _ZT_BWACCOUNT_HPP
+#ifndef ZT_BWACCOUNT_HPP
+#define ZT_BWACCOUNT_HPP
#include <stdint.h>
#include <math.h>
diff --git a/node/Buffer.hpp b/node/Buffer.hpp
index 1767ae04..e8308306 100644
--- a/node/Buffer.hpp
+++ b/node/Buffer.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_BUFFER_HPP
-#define _ZT_BUFFER_HPP
+#ifndef ZT_BUFFER_HPP
+#define ZT_BUFFER_HPP
#include <string.h>
#include <stdint.h>
diff --git a/node/C25519.hpp b/node/C25519.hpp
index 79edfa06..2a594f72 100644
--- a/node/C25519.hpp
+++ b/node/C25519.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_C25519_HPP
-#define _ZT_C25519_HPP
+#ifndef ZT_C25519_HPP
+#define ZT_C25519_HPP
#include "Array.hpp"
#include "Utils.hpp"
diff --git a/node/CMWC4096.hpp b/node/CMWC4096.hpp
index 29351861..01c57e15 100644
--- a/node/CMWC4096.hpp
+++ b/node/CMWC4096.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_CMWC4096_HPP
-#define _ZT_CMWC4096_HPP
+#ifndef ZT_CMWC4096_HPP
+#define ZT_CMWC4096_HPP
#include <stdint.h>
#include "Utils.hpp"
diff --git a/node/CertificateOfMembership.hpp b/node/CertificateOfMembership.hpp
index 76e1cfbc..6f78734e 100644
--- a/node/CertificateOfMembership.hpp
+++ b/node/CertificateOfMembership.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_CERTIFICATEOFMEMBERSHIP_HPP
-#define _ZT_CERTIFICATEOFMEMBERSHIP_HPP
+#ifndef ZT_CERTIFICATEOFMEMBERSHIP_HPP
+#define ZT_CERTIFICATEOFMEMBERSHIP_HPP
#include <stdint.h>
#include <string.h>
diff --git a/node/Condition.hpp b/node/Condition.hpp
index 4b2d32ca..728799d9 100644
--- a/node/Condition.hpp
+++ b/node/Condition.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_CONDITION_HPP
-#define _ZT_CONDITION_HPP
+#ifndef ZT_CONDITION_HPP
+#define ZT_CONDITION_HPP
#include "Constants.hpp"
#include "NonCopyable.hpp"
diff --git a/node/Constants.hpp b/node/Constants.hpp
index dbdc4ec9..3f121cf4 100644
--- a/node/Constants.hpp
+++ b/node/Constants.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_CONSTANTS_HPP
-#define _ZT_CONSTANTS_HPP
+#ifndef ZT_CONSTANTS_HPP
+#define ZT_CONSTANTS_HPP
//
// This include file also auto-detects and canonicalizes some environment
diff --git a/node/Defaults.hpp b/node/Defaults.hpp
index dac59ae6..d546d01f 100644
--- a/node/Defaults.hpp
+++ b/node/Defaults.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_DEFAULTS_HPP
-#define _ZT_DEFAULTS_HPP
+#ifndef ZT_DEFAULTS_HPP
+#define ZT_DEFAULTS_HPP
#include <stdexcept>
#include <string>
diff --git a/node/Demarc.hpp b/node/Demarc.hpp
index fc283fef..0bbdef44 100644
--- a/node/Demarc.hpp
+++ b/node/Demarc.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_DEMARC_HPP
-#define _ZT_DEMARC_HPP
+#ifndef ZT_DEMARC_HPP
+#define ZT_DEMARC_HPP
#include <stdlib.h>
#include <stdint.h>
diff --git a/node/Dictionary.hpp b/node/Dictionary.hpp
index a0a64cec..214c0094 100644
--- a/node/Dictionary.hpp
+++ b/node/Dictionary.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_DICTIONARY_HPP
-#define _ZT_DICTIONARY_HPP
+#ifndef ZT_DICTIONARY_HPP
+#define ZT_DICTIONARY_HPP
#include <string>
#include <map>
diff --git a/node/EthernetTap.hpp b/node/EthernetTap.hpp
index 3db41392..68a365bf 100644
--- a/node/EthernetTap.hpp
+++ b/node/EthernetTap.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_ETHERNETTAP_HPP
-#define _ZT_ETHERNETTAP_HPP
+#ifndef ZT_ETHERNETTAP_HPP
+#define ZT_ETHERNETTAP_HPP
#include <stdio.h>
#include <stdlib.h>
diff --git a/node/Identity.hpp b/node/Identity.hpp
index cb911b92..f6b1f876 100644
--- a/node/Identity.hpp
+++ b/node/Identity.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_IDENTITY_HPP
-#define _ZT_IDENTITY_HPP
+#ifndef ZT_IDENTITY_HPP
+#define ZT_IDENTITY_HPP
#include <stdio.h>
#include <stdlib.h>
diff --git a/node/InetAddress.hpp b/node/InetAddress.hpp
index 54fbc395..d90574e5 100644
--- a/node/InetAddress.hpp
+++ b/node/InetAddress.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_INETADDRESS_HPP
-#define _ZT_INETADDRESS_HPP
+#ifndef ZT_INETADDRESS_HPP
+#define ZT_INETADDRESS_HPP
#include <stdlib.h>
#include <string.h>
diff --git a/node/Logger.hpp b/node/Logger.hpp
index de71ed39..b99df392 100644
--- a/node/Logger.hpp
+++ b/node/Logger.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_LOGGER_HPP
-#define _ZT_LOGGER_HPP
+#ifndef ZT_LOGGER_HPP
+#define ZT_LOGGER_HPP
#include <stdio.h>
diff --git a/node/MAC.hpp b/node/MAC.hpp
index 87363a44..f0bca937 100644
--- a/node/MAC.hpp
+++ b/node/MAC.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_MAC_HPP
-#define _ZT_MAC_HPP
+#ifndef ZT_MAC_HPP
+#define ZT_MAC_HPP
#include <stdio.h>
#include <stdlib.h>
diff --git a/node/MulticastGroup.hpp b/node/MulticastGroup.hpp
index 426ef048..32f8c0ed 100644
--- a/node/MulticastGroup.hpp
+++ b/node/MulticastGroup.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_MULTICASTGROUP_HPP
-#define _ZT_MULTICASTGROUP_HPP
+#ifndef ZT_MULTICASTGROUP_HPP
+#define ZT_MULTICASTGROUP_HPP
#include <stdint.h>
diff --git a/node/Multicaster.hpp b/node/Multicaster.hpp
index 16ae7218..164bfd79 100644
--- a/node/Multicaster.hpp
+++ b/node/Multicaster.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_MULTICASTER_HPP
-#define _ZT_MULTICASTER_HPP
+#ifndef ZT_MULTICASTER_HPP
+#define ZT_MULTICASTER_HPP
#include <stdint.h>
#include <string.h>
diff --git a/node/Mutex.hpp b/node/Mutex.hpp
index b0130293..509b60be 100644
--- a/node/Mutex.hpp
+++ b/node/Mutex.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_MUTEX_HPP
-#define _ZT_MUTEX_HPP
+#ifndef ZT_MUTEX_HPP
+#define ZT_MUTEX_HPP
#include "Constants.hpp"
#include "NonCopyable.hpp"
diff --git a/node/Network.hpp b/node/Network.hpp
index a219cdf2..f41e7502 100644
--- a/node/Network.hpp
+++ b/node/Network.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_NETWORK_HPP
-#define _ZT_NETWORK_HPP
+#ifndef ZT_NETWORK_HPP
+#define ZT_NETWORK_HPP
#include <stdint.h>
diff --git a/node/NetworkConfig.hpp b/node/NetworkConfig.hpp
index a833006f..823363bd 100644
--- a/node/NetworkConfig.hpp
+++ b/node/NetworkConfig.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_NETWORKCONFIG_HPP
-#define _ZT_NETWORKCONFIG_HPP
+#ifndef ZT_NETWORKCONFIG_HPP
+#define ZT_NETWORKCONFIG_HPP
#include <stdint.h>
diff --git a/node/Node.cpp b/node/Node.cpp
index f2668e4e..8c6ab49b 100644
--- a/node/Node.cpp
+++ b/node/Node.cpp
@@ -623,15 +623,6 @@ unsigned int Node::versionMajor() throw() { return ZEROTIER_ONE_VERSION_MAJOR; }
unsigned int Node::versionMinor() throw() { return ZEROTIER_ONE_VERSION_MINOR; }
unsigned int Node::versionRevision() throw() { return ZEROTIER_ONE_VERSION_REVISION; }
-// Scanned for by loader and/or updater to determine a binary's version
-const unsigned char EMBEDDED_VERSION_STAMP[20] = {
- 0x6d,0xfe,0xff,0x01,0x90,0xfa,0x89,0x57,0x88,0xa1,0xaa,0xdc,0xdd,0xde,0xb0,0x33,
- ZEROTIER_ONE_VERSION_MAJOR,
- ZEROTIER_ONE_VERSION_MINOR,
- (unsigned char)(((unsigned int)ZEROTIER_ONE_VERSION_REVISION) & 0xff), /* little-endian */
- (unsigned char)((((unsigned int)ZEROTIER_ONE_VERSION_REVISION) >> 8) & 0xff)
-};
-
} // namespace ZeroTier
extern "C" {
diff --git a/node/Node.hpp b/node/Node.hpp
index 476ec7cd..9d02c008 100644
--- a/node/Node.hpp
+++ b/node/Node.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_NODE_HPP
-#define _ZT_NODE_HPP
+#ifndef ZT_NODE_HPP
+#define ZT_NODE_HPP
#include <string>
#include <vector>
@@ -171,14 +171,6 @@ private:
void *const _impl; // private implementation
};
-/**
- * An embedded version code that can be searched for in the binary
- *
- * This shouldn't be used by users, but is exported to make certain that
- * the linker actually includes it in the image.
- */
-extern const unsigned char EMBEDDED_VERSION_STAMP[20];
-
} // namespace ZeroTier
extern "C" {
diff --git a/node/NodeConfig.hpp b/node/NodeConfig.hpp
index 0e7e4c98..2612cf6a 100644
--- a/node/NodeConfig.hpp
+++ b/node/NodeConfig.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_NODECONFIG_HPP
-#define _ZT_NODECONFIG_HPP
+#ifndef ZT_NODECONFIG_HPP
+#define ZT_NODECONFIG_HPP
#include <stdint.h>
diff --git a/node/NonCopyable.hpp b/node/NonCopyable.hpp
index 26536a36..e39deba8 100644
--- a/node/NonCopyable.hpp
+++ b/node/NonCopyable.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _NONCOPYABLE_HPP__
-#define _NONCOPYABLE_HPP__
+#ifndef ZT_NONCOPYABLE_HPP__
+#define ZT_NONCOPYABLE_HPP__
namespace ZeroTier {
diff --git a/node/Packet.hpp b/node/Packet.hpp
index b7f52e3c..6f3f9117 100644
--- a/node/Packet.hpp
+++ b/node/Packet.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_N_PACKET_HPP
-#define _ZT_N_PACKET_HPP
+#ifndef ZT_N_PACKET_HPP
+#define ZT_N_PACKET_HPP
#include <stdint.h>
#include <string.h>
diff --git a/node/PacketDecoder.hpp b/node/PacketDecoder.hpp
index cb3522ff..72b05290 100644
--- a/node/PacketDecoder.hpp
+++ b/node/PacketDecoder.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_PACKETDECODER_HPP
-#define _ZT_PACKETDECODER_HPP
+#ifndef ZT_PACKETDECODER_HPP
+#define ZT_PACKETDECODER_HPP
#include <stdexcept>
diff --git a/node/Peer.hpp b/node/Peer.hpp
index 0a8a7b57..de5df08f 100644
--- a/node/Peer.hpp
+++ b/node/Peer.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_PEER_HPP
-#define _ZT_PEER_HPP
+#ifndef ZT_PEER_HPP
+#define ZT_PEER_HPP
#include <stdint.h>
diff --git a/node/Poly1305.hpp b/node/Poly1305.hpp
index 94e6078d..8baa448f 100644
--- a/node/Poly1305.hpp
+++ b/node/Poly1305.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_POLY1305_HPP
-#define _ZT_POLY1305_HPP
+#ifndef ZT_POLY1305_HPP
+#define ZT_POLY1305_HPP
namespace ZeroTier {
diff --git a/node/RuntimeEnvironment.hpp b/node/RuntimeEnvironment.hpp
index 75b171ff..48797b14 100644
--- a/node/RuntimeEnvironment.hpp
+++ b/node/RuntimeEnvironment.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_RUNTIMEENVIRONMENT_HPP
-#define _ZT_RUNTIMEENVIRONMENT_HPP
+#ifndef ZT_RUNTIMEENVIRONMENT_HPP
+#define ZT_RUNTIMEENVIRONMENT_HPP
#include <string>
diff --git a/node/SHA512.hpp b/node/SHA512.hpp
index 565eb097..721933cb 100644
--- a/node/SHA512.hpp
+++ b/node/SHA512.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_SHA512_HPP
-#define _ZT_SHA512_HPP
+#ifndef ZT_SHA512_HPP
+#define ZT_SHA512_HPP
#define ZT_SHA512_DIGEST_LEN 64
diff --git a/node/Salsa20.hpp b/node/Salsa20.hpp
index 9f34ba78..e09e2aaa 100644
--- a/node/Salsa20.hpp
+++ b/node/Salsa20.hpp
@@ -4,8 +4,8 @@
* This therefore is public domain.
*/
-#ifndef _ZT_SALSA20_HPP
-#define _ZT_SALSA20_HPP
+#ifndef ZT_SALSA20_HPP
+#define ZT_SALSA20_HPP
#include <stdint.h>
diff --git a/node/Service.hpp b/node/Service.hpp
index d8467cd1..22e53d62 100644
--- a/node/Service.hpp
+++ b/node/Service.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_SERVICE_HPP
-#define _ZT_SERVICE_HPP
+#ifndef ZT_SERVICE_HPP
+#define ZT_SERVICE_HPP
#include <string>
#include <stdexcept>
diff --git a/node/SharedPtr.hpp b/node/SharedPtr.hpp
index 834d0a2e..f7604c06 100644
--- a/node/SharedPtr.hpp
+++ b/node/SharedPtr.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_SHAREDPTR_HPP
-#define _ZT_SHAREDPTR_HPP
+#ifndef ZT_SHAREDPTR_HPP
+#define ZT_SHAREDPTR_HPP
#include "Mutex.hpp"
#include "AtomicCounter.hpp"
diff --git a/node/Switch.hpp b/node/Switch.hpp
index 68e3c6c4..6b3b8e6e 100644
--- a/node/Switch.hpp
+++ b/node/Switch.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_N_SWITCH_HPP
-#define _ZT_N_SWITCH_HPP
+#ifndef ZT_N_SWITCH_HPP
+#define ZT_N_SWITCH_HPP
#include <map>
#include <set>
diff --git a/node/SysEnv.hpp b/node/SysEnv.hpp
index 21c25713..4f4a4f16 100644
--- a/node/SysEnv.hpp
+++ b/node/SysEnv.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_SYSENV_HPP
-#define _ZT_SYSENV_HPP
+#ifndef ZT_SYSENV_HPP
+#define ZT_SYSENV_HPP
#include <stdint.h>
diff --git a/node/Thread.hpp b/node/Thread.hpp
index d295fea3..8adf79d3 100644
--- a/node/Thread.hpp
+++ b/node/Thread.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_THREAD_HPP
-#define _ZT_THREAD_HPP
+#ifndef ZT_THREAD_HPP
+#define ZT_THREAD_HPP
#include <stdexcept>
diff --git a/node/Topology.hpp b/node/Topology.hpp
index 09dec86e..312377bc 100644
--- a/node/Topology.hpp
+++ b/node/Topology.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_TOPOLOGY_HPP
-#define _ZT_TOPOLOGY_HPP
+#ifndef ZT_TOPOLOGY_HPP
+#define ZT_TOPOLOGY_HPP
#include <stdio.h>
#include <string.h>
diff --git a/node/UdpSocket.hpp b/node/UdpSocket.hpp
index d8467f64..cbd9de86 100644
--- a/node/UdpSocket.hpp
+++ b/node/UdpSocket.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_UDPSOCKET_HPP
-#define _ZT_UDPSOCKET_HPP
+#ifndef ZT_UDPSOCKET_HPP
+#define ZT_UDPSOCKET_HPP
#include <stdexcept>
diff --git a/node/Utils.hpp b/node/Utils.hpp
index 2fea8b9b..dfead0d1 100644
--- a/node/Utils.hpp
+++ b/node/Utils.hpp
@@ -25,8 +25,8 @@
* LLC. Start here: http://www.zerotier.com/
*/
-#ifndef _ZT_UTILS_HPP
-#define _ZT_UTILS_HPP
+#ifndef ZT_UTILS_HPP
+#define ZT_UTILS_HPP
#include <stdio.h>
#include <stdlib.h>