mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-19 21:17:52 +00:00
ca6c0fad08
Whew. This is a big one. More of a marathon than a sprint. First, four big things: 1) This version breaks backward compatibility with all prior versions. It's in alpha, I can do that. 2) The port has changed from 8993 to 9993 to mark this change. Probably not necessary but why not? Also 8993/UDP turned out to be used by some enterprise LDAP thingy, which doesn't matter much either but again why not? 3) This version, unlike previous versions, does NOT auto-join the Earth network. Soon there will be more than one net, and not everyone is going to want to get dumped on a flat global LAN right out of the box. To join Earth use the command line interface: sudo zerotier-cli join bc8f9a8ee3000001 4) Finally, you will get a different IP on Earth. The whole cryptosystem has changed and we're not going to bother with continuity issues in alpha testing. So what's changed? See the blog: http://blog.zerotier.com/post/62991430345/alpha-zerotier-one-network-is-down-briefly The net should be up shortly after this commit. If there are any issues, 0.5.0 will be rapidly followed by 0.5.1. :-) Otherwise the next sprint will be finishing up support for private networks. Then it's off to the races with BETA, then Windows. (Decided to move into beta before Windows in all likelihood.)
47 lines
1.4 KiB
C
47 lines
1.4 KiB
C
/*
|
|
* ZeroTier One - Global Peer to Peer Ethernet
|
|
* Copyright (C) 2012-2013 ZeroTier Networks LLC
|
|
*
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
*
|
|
* --
|
|
*
|
|
* ZeroTier may be used and distributed under the terms of the GPLv3, which
|
|
* are available at: http://www.gnu.org/licenses/gpl-3.0.html
|
|
*
|
|
* If you would like to embed ZeroTier into a commercial application or
|
|
* redistribute it in a modified binary form, please contact ZeroTier Networks
|
|
* LLC. Start here: http://www.zerotier.com/
|
|
*/
|
|
|
|
#ifndef _ZT_VERSION_H
|
|
#define _ZT_VERSION_H
|
|
|
|
/**
|
|
* Major version: 8-bit (0-255)
|
|
*/
|
|
#define ZEROTIER_ONE_VERSION_MAJOR 0
|
|
|
|
/**
|
|
* Minor version: 8-bit (0-255)
|
|
*/
|
|
#define ZEROTIER_ONE_VERSION_MINOR 5
|
|
|
|
/**
|
|
* Revision: 16-bit (0-65535)
|
|
*/
|
|
#define ZEROTIER_ONE_VERSION_REVISION 0
|
|
|
|
#endif
|