- 2A962F65FD9A55BFD5DB5ED17A95D57EC009905436EB550BCDA1C6A024935F1C88B62D509A4C5AC3DDDA00970412BFBA71AAE29F389C191AF22C2F1DCF758C07
+ 4A6FD3869DB3A39835EDD505281AD25B8F0FEAFD30B035369C730E1AFADCD17FE3F1F49C8DA4B3F59D97DAABCA37C9B544F57E8E484A43811A8DCA044726BF45
bitcoin/src/init.cpp
(162 . 9)(162 . 9)
5 " -proxy=<ip:port> \t " + _("Connect through socks4 proxy\n") +
6 " -port=<port> \t\t " + _("Listen for connections on <port> (default: 8333 or testnet: 18333)\n") +
7 " -maxconnections=<n>\t " + _("Maintain at most <n> connections to peers (default: 125)\n") +
8 " -myip=<ip> \t " + _("Set this node's external IP address.\n") +
9 " -addnode=<ip> \t " + _("Add a node to connect to\n") +
10 " -connect=<ip> \t\t " + _("Connect only to the specified node\n") +
11 " -noirc \t " + _("Don't find peers using internet relay chat\n") +
12 " -nolisten \t " + _("Don't accept connections from outside\n") +
13 " -banscore=<n> \t " + _("Threshold for disconnecting misbehaving peers (default: 100)\n") +
14 " -bantime=<n> \t " + _("Number of seconds to keep misbehaving peers from reconnecting (default: 86400)\n") +
(412 . 7)(412 . 6)
16 // Use SoftSetArg here so user can override any of these if they wish.
17 // Note: the GetBoolArg() calls for all of these must happen later.
18 SoftSetArg("-nolisten", true);
19 SoftSetArg("-noirc", true);
20 }
21
22 fNoListen = GetBoolArg("-nolisten");