1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-29 04:45:57 -04:00

when received event 328 (chanserv url in dalnet) write it to correct

channel.


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@756 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2000-10-14 19:28:14 +00:00 committed by cras
parent bd19c4a7d7
commit 2b4f089bd0

View File

@ -520,6 +520,17 @@ static void event_end_of_whois(const char *data, IRC_SERVER_REC *server)
g_free(params);
}
static void event_chanserv_url(const char *data, IRC_SERVER_REC *server)
{
char *params, *channel, *url;
g_return_if_fail(data != NULL);
params = event_get_params(data, 3, NULL, &channel, &url);
printtext(server, channel, MSGLEVEL_CRAP, "%s", url);
g_free(params);
}
static void event_end_of_whowas(const char *data, IRC_SERVER_REC *server)
{
char *params, *nick;
@ -721,6 +732,7 @@ void fe_events_numeric_init(void)
signal_add("event 314", (SIGNAL_FUNC) event_whowas);
signal_add("event 317", (SIGNAL_FUNC) event_whois_idle);
signal_add("event 318", (SIGNAL_FUNC) event_end_of_whois);
signal_add("event 328", (SIGNAL_FUNC) event_chanserv_url);
signal_add("event 369", (SIGNAL_FUNC) event_end_of_whowas);
signal_add("event 319", (SIGNAL_FUNC) event_whois_channels);
signal_add("event 302", (SIGNAL_FUNC) event_userhost);
@ -780,6 +792,7 @@ void fe_events_numeric_deinit(void)
signal_remove("event 314", (SIGNAL_FUNC) event_whowas);
signal_remove("event 317", (SIGNAL_FUNC) event_whois_idle);
signal_remove("event 318", (SIGNAL_FUNC) event_end_of_whois);
signal_remove("event 328", (SIGNAL_FUNC) event_chanserv_url);
signal_remove("event 369", (SIGNAL_FUNC) event_end_of_whowas);
signal_remove("event 319", (SIGNAL_FUNC) event_whois_channels);
signal_remove("event 302", (SIGNAL_FUNC) event_userhost);