Browse Source

Introduce REQUIRED_SERVICES constant

0.13
Pieter Wuille 8 years ago
parent
commit
ecd7fd37c8
  1. 2
      src/main.cpp
  2. 2
      src/net.cpp
  3. 2
      src/net.h

2
src/main.cpp

@ -4787,7 +4787,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv,
{ {
boost::this_thread::interruption_point(); boost::this_thread::interruption_point();
if (!(addr.nServices & NODE_NETWORK)) if ((addr.nServices & REQUIRED_SERVICES) != REQUIRED_SERVICES)
continue; continue;
if (addr.nTime <= 100000000 || addr.nTime > nNow + 10 * 60) if (addr.nTime <= 100000000 || addr.nTime > nNow + 10 * 60)

2
src/net.cpp

@ -1596,7 +1596,7 @@ void ThreadOpenConnections()
continue; continue;
// only connect to full nodes // only connect to full nodes
if (!(addr.nServices & NODE_NETWORK)) if ((addr.nServices & REQUIRED_SERVICES) != REQUIRED_SERVICES)
continue; continue;
// only consider very recently tried nodes after 30 failed attempts // only consider very recently tried nodes after 30 failed attempts

2
src/net.h

@ -72,6 +72,8 @@ static const bool DEFAULT_FORCEDNSSEED = false;
static const size_t DEFAULT_MAXRECEIVEBUFFER = 5 * 1000; static const size_t DEFAULT_MAXRECEIVEBUFFER = 5 * 1000;
static const size_t DEFAULT_MAXSENDBUFFER = 1 * 1000; static const size_t DEFAULT_MAXSENDBUFFER = 1 * 1000;
static const ServiceFlags REQUIRED_SERVICES = NODE_NETWORK;
// NOTE: When adjusting this, update rpcnet:setban's help ("24h") // NOTE: When adjusting this, update rpcnet:setban's help ("24h")
static const unsigned int DEFAULT_MISBEHAVING_BANTIME = 60 * 60 * 24; // Default 24-hour ban static const unsigned int DEFAULT_MISBEHAVING_BANTIME = 60 * 60 * 24; // Default 24-hour ban

Loading…
Cancel
Save