- D782E9B44727FE886DD474E6CE421141FA6A9E4CD91B937BD55F46CB85056B0207C570294A1FCE7F666075DF6492CE649BDF0795E4BEE9A2B811090170BC93B3
+ 4263D0EF771CB75E59E909372BA8B850E70A4CBC03635234119A267774D4A9095ADD15E1094B18646C9A1C280A486C7EC68D8CEDC27CE2F6A14777AF129E8B7A
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");