ZeroTierOne/version.h
Adam Ierymenko ab208bb8f9
Some checks are pending
/ build_macos (push) Waiting to run
/ build_windows (push) Waiting to run
/ build_ubuntu (push) Waiting to run
Make encrypted HELLO a local.conf setting -- 99.999999% of users do not need it and it introduces scalability problems on large controllers.
2025-08-12 12:34:54 -04:00

53 lines
1.2 KiB
C

/*
* Copyright (c)2019 ZeroTier, Inc.
*
* Use of this software is governed by the Business Source License included
* in the LICENSE.TXT file in the project's root directory.
*
* Change Date: 2026-01-01
*
* On the date above, in accordance with the Business Source License, use
* of this software will be governed by version 2.0 of the Apache License.
*/
/****/
#ifndef _ZT_VERSION_H
#define _ZT_VERSION_H
/**
* Major version
*/
#define ZEROTIER_ONE_VERSION_MAJOR 1
/**
* Minor version
*/
#define ZEROTIER_ONE_VERSION_MINOR 15
/**
* Revision
*/
#define ZEROTIER_ONE_VERSION_REVISION 3
/**
* Build version
*
* This starts at 0 for each major.minor.rev tuple and can be incremented
* to force a minor update without an actual version number change. It's
* not part of the actual release version number.
*/
#define ZEROTIER_ONE_VERSION_BUILD 0
#ifndef ZT_BUILD_ARCHITECTURE
#define ZT_BUILD_ARCHITECTURE 0
#endif
#ifndef ZT_BUILD_PLATFORM
#define ZT_BUILD_PLATFORM 0
#endif
#define _ZT_STR_HELPER(x) #x
#define _ZT_STR(x) _ZT_STR_HELPER(x)
#define ZEROTIER_ONE_VERSION_STR _ZT_STR(ZEROTIER_ONE_VERSION_MAJOR) "." _ZT_STR(ZEROTIER_ONE_VERSION_MINOR) "." _ZT_STR(ZEROTIER_ONE_VERSION_REVISION)
#define ZEROTIER_ONE_NAME "zerotier-one"
#endif