(164 . 6)(164 . 7)
5 " -port=<port> \t\t " + _("Listen for connections on <port> (default: 8333)\n") +
6 " -maxconnections=<n>\t " + _("Maintain at most <n> connections to peers (default: 125)\n") +
7 " -myip=<ip> \t " + _("Set this node's external IP address.\n") +
8 " -addwire=<ip> \t " + _("Add a hardwired node to connect to\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 " -nolisten \t " + _("Don't accept connections from outside\n") +
(452 . 6)(453 . 18)
13 }
14 }
15
16 if (mapArgs.count("-addwire"))
17 {
18 BOOST_FOREACH(string strAddr, mapMultiArgs["-addwire"])
19 {
20 CAddress addr(strAddr);
21 if (addr.IsValid()) {
22 AddWire(addr);
23 fWires = true;
24 }
25 }
26 }
27
28 if (mapArgs.count("-addnode"))
29 {
30 BOOST_FOREACH(string strAddr, mapMultiArgs["-addnode"])