- 6C99F03BDBAC5E74E0ECC62EF36DEEB11E867906C53C52CA1CE9A30E41FE61F322AA231327CBE51A08A1D2C3544334FF266C5F2082576C921C22C5A579E5DBCF
+ BF4E182AE4C44170228FBCFC9335E48FFBFA413338135EE9875B2B476355CF5CE60DAD8A98ACF93BAB301D5955C277D7E2604E8B29C550AA756931DDA8689223
bitcoin/src/init.cpp
(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"])