1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-01 04:14:16 -04:00

workaround for some server that doesn't reply anything to pings.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2656 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2002-04-05 09:09:30 +00:00 committed by cras
parent 0ccf04f671
commit 4187402348

View File

@ -516,8 +516,12 @@ static void event_motd(IRC_SERVER_REC *server, const char *data, const char *fro
you'd think they could at least get that right??
But no, then I'll have to go and add these idiotic kludges
to make them work. Maybe I should instead get the users of these
servers to complain about it to their admins. */
event_connected(server, data, from);
servers to complain about it to their admins.
Oh, and looks like it also doesn't answer anything to PINGs,
disable lag checking. */
server->disable_lag = TRUE;
event_connected(server, data, from);
}
static void event_channels_formed(IRC_SERVER_REC *server, const char *data)