- 0A8227F07119A5AC88E550780A2C74482859D71119F19CE45096044703826751850F64EE5F06B57E4A0641F61D9D1A9F4C55946EE2EBA25AA192F9A334A7AE8A
+ 9C1E59CF1A30C33950CF5D6FFC202437BFF08724CBA0D4C07ED7390A6FA17BB5451A96EC2BDE1B87B2B137BB0C908C32D985DEEA918D7B28767ED5DB489DE649
bitcoin/src/init.cpp
(188 . 13)(188 . 6)
26 " -bantime=<n> \t " + _("Number of seconds to keep misbehaving peers from reconnecting (default: 86400)\n") +
27 " -maxreceivebuffer=<n>\t " + _("Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000)\n") +
28 " -maxsendbuffer=<n>\t " + _("Maximum per-connection send buffer, <n>*1000 bytes (default: 10000)\n") +
29 #ifdef USE_UPNP
30 #if USE_UPNP
31 " -noupnp \t " + _("Don't attempt to use UPnP to map the listening port\n") +
32 #else
33 " -upnp \t " + _("Attempt to use UPnP to map the listening port\n") +
34 #endif
35 #endif
36 " -paytxfee=<amt> \t " + _("Fee per kB to add to transactions you send\n") +
37 #if !defined(WIN32)
38 " -daemon \t\t " + _("Run in the background as a daemon and accept commands\n") +
(460 . 8)(453 . 6)
40 SoftSetArg("-nolisten", true);
41 SoftSetArg("-noirc", true);
42 SoftSetArg("-nodnsseed", true);
43 SoftSetArg("-noupnp", true);
44 SoftSetArg("-upnp", false);
45 SoftSetArg("-dns", false);
46 }
47
(469 . 10)(460 . 6)
49 fNoListen = GetBoolArg("-nolisten");
50
51 // Command-line args override in-wallet settings:
52 if (mapArgs.count("-upnp"))
53 fUseUPnP = GetBoolArg("-upnp");
54 else if (mapArgs.count("-noupnp"))
55 fUseUPnP = !GetBoolArg("-noupnp");
56
57 if (!fNoListen)
58 {