mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-03-12 04:36:29 -07:00
* Fix primary port binding issue in 1.12 (#2107) * Add test for primary port bindings to validator - See #2105 * Add delay to binding test * Remove TCP binding logic from Binder to fix #2105 * add second control plane socket for ipv6 * fix controller network post endpoint * exit if we can't bind at least one of IPV4 or IPV6 for control plane port --------- Co-authored-by: Grant Limberg <grant.limberg@zerotier.com> * Version bump, Linux version stuff, Debian dependencies from 1.12.0 rebuild, release notes. * macOS version bump in installer * Windows version bump. --------- Co-authored-by: Joseph Henry <joseph.henry@zerotier.com> Co-authored-by: Grant Limberg <grant.limberg@zerotier.com>
49 lines
1006 B
C
49 lines
1006 B
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: 2025-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 12
|
|
|
|
/**
|
|
* Revision
|
|
*/
|
|
#define ZEROTIER_ONE_VERSION_REVISION 1
|
|
|
|
/**
|
|
* 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
|
|
|
|
#endif
|