Merge pull request #4132

d4e1c61 add DEFAULT_UPNP constant in net (Philip Kaufmann)
This commit is contained in:
Wladimir J. van der Laan
2014-05-29 11:45:54 +02:00
3 changed files with 8 additions and 8 deletions

View File

@@ -38,6 +38,12 @@ namespace boost {
/** The maximum number of entries in an 'inv' protocol message */
static const unsigned int MAX_INV_SZ = 50000;
/** -upnp default */
#ifdef USE_UPNP
static const bool DEFAULT_UPNP = USE_UPNP;
#else
static const bool DEFAULT_UPNP = false;
#endif
inline unsigned int ReceiveFloodSize() { return 1000*GetArg("-maxreceivebuffer", 5*1000); }
inline unsigned int SendBufferSize() { return 1000*GetArg("-maxsendbuffer", 1*1000); }