aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2014-08-13 12:00:48 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2014-08-13 12:01:03 +0200
commitce094d83ce484ae38d091e5a15f6f94ed94ebd89 (patch)
tree231d831c4e66b3347b1ef5ad445298ea333d29e6 /src
parent3b72fdfb86b08d80f5f790220137083b56f624d6 (diff)
parentc33b983903c64d88a2aef24da1827b86aadce596 (diff)
downloadbitcoin-ce094d83ce484ae38d091e5a15f6f94ed94ebd89.tar.xz
Merge pull request #4682
c33b983 Don't poll showmyip.com, it doesn't exist anymore (Wladimir J. van der Laan)
Diffstat (limited to 'src')
-rw-r--r--src/net.cpp21
1 files changed, 1 insertions, 20 deletions
diff --git a/src/net.cpp b/src/net.cpp
index 62124514c8..ec58f84b06 100644
--- a/src/net.cpp
+++ b/src/net.cpp
@@ -368,7 +368,7 @@ bool GetMyExternalIP(CNetAddr& ipRet)
const char* pszKeyword;
for (int nLookup = 0; nLookup <= 1; nLookup++)
- for (int nHost = 1; nHost <= 2; nHost++)
+ for (int nHost = 1; nHost <= 1; nHost++)
{
// We should be phasing out our use of sites like these. If we need
// replacements, we should ask for volunteers to put this simple
@@ -393,25 +393,6 @@ bool GetMyExternalIP(CNetAddr& ipRet)
pszKeyword = "Address:";
}
- else if (nHost == 2)
- {
- addrConnect = CService("74.208.43.192", 80); // www.showmyip.com
-
- if (nLookup == 1)
- {
- CService addrIP("www.showmyip.com", 80, true);
- if (addrIP.IsValid())
- addrConnect = addrIP;
- }
-
- pszGet = "GET /simple/ HTTP/1.1\r\n"
- "Host: www.showmyip.com\r\n"
- "User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)\r\n"
- "Connection: close\r\n"
- "\r\n";
-
- pszKeyword = NULL; // Returns just IP address
- }
if (GetMyExternalIP2(addrConnect, pszGet, pszKeyword, ipRet))
return true;