irc: Switched to LFNet.org IRC server

This is a temporary fix until we finish #88.
This commit is contained in:
Christian Decker 2016-11-14 23:19:32 +01:00
parent 34b4134cb0
commit 686ff6edef
1 changed files with 4 additions and 4 deletions

View File

@ -224,11 +224,11 @@ static void handle_irc_command(struct ircstate *istate, const struct irccommand
{
struct lightningd_state *dstate = istate->dstate;
char **params = tal_strsplit(cmd, cmd->params, " ", STR_NO_EMPTY);
int numparams = tal_count(params) - 1;
if (streq(cmd->command, "378")) {
if (streq(cmd->command, "338")) {
dstate->external_ip = tal_strdup(
istate->dstate, params[numparams - 1]);
istate->dstate, params[3]);
log_debug(dstate->base_log, "Detected my own IP as %s", dstate->external_ip);
// Add our node to the node_map for completeness
add_node(istate->dstate, &dstate->id,
@ -265,7 +265,7 @@ void setup_irc_connection(struct lightningd_state *dstate)
struct ircstate *state = talz(dstate, struct ircstate);
state->dstate = dstate;
state->server = "irc.freenode.net";
state->server = "irc.lfnet.org";
state->reconnect_timeout = time_from_sec(15);
state->log = new_log(state, state->dstate->log_record, "%s:irc",
log_prefix(state->dstate->base_log));