diff options
author | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-06-26 15:47:45 +0000 |
---|---|---|
committer | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-06-26 15:47:45 +0000 |
commit | e2bf70145466264a4f082aaa313fd8de5663aeff (patch) | |
tree | 30ea6ea1ec88e43e3a3a0a8bc4d70d5d5b8c4072 /irc.cpp | |
parent | c929529f9f223e23fc00efa41bb656ab797d4c74 (diff) |
version 0.3 rc2
Diffstat (limited to 'irc.cpp')
-rw-r--r-- | irc.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -166,10 +166,12 @@ void ThreadIRCSeed(void* parg) while (!fShutdown)
{
- CAddress addrConnect("216.155.130.130:6667");
+ //CAddress addrConnect("216.155.130.130:6667"); // chat.freenode.net
+ CAddress addrConnect("92.243.23.21:6667"); // irc.lfnet.org
if (!fTOR)
{
- struct hostent* phostent = gethostbyname("chat.freenode.net");
+ //struct hostent* phostent = gethostbyname("chat.freenode.net");
+ struct hostent* phostent = gethostbyname("irc.lfnet.org");
if (phostent && phostent->h_addr_list && phostent->h_addr_list[0])
addrConnect = CAddress(*(u_long*)phostent->h_addr_list[0], htons(6667));
}
|