aboutsummaryrefslogtreecommitdiff
path: root/src/net.cpp
diff options
context:
space:
mode:
authorMatt Corallo <git@bluematt.me>2013-03-24 19:38:19 -0400
committerMatt Corallo <git@bluematt.me>2013-03-24 19:38:19 -0400
commitc2efd981aa14e94cce4a0a888b6ee1f4e4347924 (patch)
tree7baf6933d4eaf15720b7a5ea67c2d7ad17842c61 /src/net.cpp
parentdfd71bb4509d12c26e630bc671a542ad5bab4945 (diff)
downloadbitcoin-c2efd981aa14e94cce4a0a888b6ee1f4e4347924.tar.xz
(finally) Remove IRC Seed support now that lfnet is down.
Diffstat (limited to 'src/net.cpp')
-rw-r--r--src/net.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/net.cpp b/src/net.cpp
index 3406a28b0e..24fd47241d 100644
--- a/src/net.cpp
+++ b/src/net.cpp
@@ -3,7 +3,6 @@
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
-#include "irc.h"
#include "db.h"
#include "net.h"
#include "init.h"
@@ -347,7 +346,6 @@ bool GetMyExternalIP2(const CService& addrConnect, const char* pszGet, const cha
return error("GetMyExternalIP() : connection closed");
}
-// We now get our external IP from the IRC server first and only use this as a backup
bool GetMyExternalIP(CNetAddr& ipRet)
{
CService addrConnect;
@@ -1928,10 +1926,6 @@ void StartNode(void* parg)
if (fUseUPnP)
MapPort();
- // Get addresses from IRC and advertise ours
- if (!NewThread(ThreadIRCSeed, NULL))
- printf("Error: NewThread(ThreadIRCSeed) failed\n");
-
// Send and receive from sockets, accept connections
if (!NewThread(ThreadSocketHandler, NULL))
printf("Error: NewThread(ThreadSocketHandler) failed\n");