From c2efd981aa14e94cce4a0a888b6ee1f4e4347924 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Sun, 24 Mar 2013 19:38:19 -0400 Subject: (finally) Remove IRC Seed support now that lfnet is down. --- src/net.cpp | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src/net.cpp') diff --git a/src/net.cpp b/src/net.cpp index 3406a28b0..24fd47241 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"); -- cgit v1.2.3 From 6a1d6e03daa35463ff27f8d05f4313b604ed4397 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Sun, 24 Mar 2013 19:41:08 -0400 Subject: Add a new testnet dnsseed (currently only static list, will update) --- src/net.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/net.cpp') diff --git a/src/net.cpp b/src/net.cpp index 24fd47241..6c8fe3ffc 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1153,6 +1153,7 @@ static const char *strMainNetDNSSeed[][2] = { static const char *strTestNetDNSSeed[][2] = { {"bitcoin.petertodd.org", "testnet-seed.bitcoin.petertodd.org"}, + {"bluematt.me", "testnet-seed.bluematt.me"}, {NULL, NULL} }; -- cgit v1.2.3