mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-06-06 20:43:44 +02:00
Merge branch 'dev' of http://10.95.0.64/zerotier/ZeroTierOne into dev
This commit is contained in:
commit
bcf27d78e5
2 changed files with 13 additions and 1 deletions
|
@ -35,6 +35,7 @@
|
||||||
#include "NetworkController.hpp"
|
#include "NetworkController.hpp"
|
||||||
#include "Hashtable.hpp"
|
#include "Hashtable.hpp"
|
||||||
#include "Bond.hpp"
|
#include "Bond.hpp"
|
||||||
|
#include "SelfAwareness.hpp"
|
||||||
|
|
||||||
// Bit mask for "expecting reply" hash
|
// Bit mask for "expecting reply" hash
|
||||||
#define ZT_EXPECTING_REPLIES_BUCKET_MASK1 255
|
#define ZT_EXPECTING_REPLIES_BUCKET_MASK1 255
|
||||||
|
@ -187,6 +188,8 @@ public:
|
||||||
|
|
||||||
inline const Identity &identity() const { return _RR.identity; }
|
inline const Identity &identity() const { return _RR.identity; }
|
||||||
|
|
||||||
|
inline const std::vector<InetAddress> SurfaceAddresses() const { return _RR.sa->whoami(); }
|
||||||
|
|
||||||
inline Bond *bondController() const { return _RR.bc; }
|
inline Bond *bondController() const { return _RR.bc; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1526,7 +1526,7 @@ public:
|
||||||
settings["primaryPort"] = OSUtils::jsonInt(settings["primaryPort"],(uint64_t)_primaryPort) & 0xffff;
|
settings["primaryPort"] = OSUtils::jsonInt(settings["primaryPort"],(uint64_t)_primaryPort) & 0xffff;
|
||||||
settings["secondaryPort"] = OSUtils::jsonInt(settings["secondaryPort"],(uint64_t)_secondaryPort) & 0xffff;
|
settings["secondaryPort"] = OSUtils::jsonInt(settings["secondaryPort"],(uint64_t)_secondaryPort) & 0xffff;
|
||||||
settings["tertiaryPort"] = OSUtils::jsonInt(settings["tertiaryPort"],(uint64_t)_tertiaryPort) & 0xffff;
|
settings["tertiaryPort"] = OSUtils::jsonInt(settings["tertiaryPort"],(uint64_t)_tertiaryPort) & 0xffff;
|
||||||
// Enumerate all external listening address/port pairs
|
// Enumerate all local address/port pairs that this node is listening on
|
||||||
std::vector<InetAddress> boundAddrs(_binder.allBoundLocalInterfaceAddresses());
|
std::vector<InetAddress> boundAddrs(_binder.allBoundLocalInterfaceAddresses());
|
||||||
auto boundAddrArray = json::array();
|
auto boundAddrArray = json::array();
|
||||||
for (int i = 0; i < boundAddrs.size(); i++) {
|
for (int i = 0; i < boundAddrs.size(); i++) {
|
||||||
|
@ -1535,6 +1535,15 @@ public:
|
||||||
boundAddrArray.push_back(ipBuf);
|
boundAddrArray.push_back(ipBuf);
|
||||||
}
|
}
|
||||||
settings["listeningOn"] = boundAddrArray;
|
settings["listeningOn"] = boundAddrArray;
|
||||||
|
// Enumerate all external address/port pairs that are reported for this node
|
||||||
|
std::vector<InetAddress> surfaceAddrs = _node->SurfaceAddresses();
|
||||||
|
auto surfaceAddrArray = json::array();
|
||||||
|
for (int i = 0; i < surfaceAddrs.size(); i++) {
|
||||||
|
char ipBuf[64] = { 0 };
|
||||||
|
surfaceAddrs[i].toString(ipBuf);
|
||||||
|
surfaceAddrArray.push_back(ipBuf);
|
||||||
|
}
|
||||||
|
settings["surfaceAddresses"] = surfaceAddrArray;
|
||||||
|
|
||||||
#ifdef ZT_USE_MINIUPNPC
|
#ifdef ZT_USE_MINIUPNPC
|
||||||
settings["portMappingEnabled"] = OSUtils::jsonBool(settings["portMappingEnabled"],true);
|
settings["portMappingEnabled"] = OSUtils::jsonBool(settings["portMappingEnabled"],true);
|
||||||
|
|
Loading…
Add table
Reference in a new issue