summaryrefslogtreecommitdiff
path: root/src/perl/irc
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2001-12-07 19:40:37 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2001-12-07 19:40:37 +0000
commit3f275ebd55c1c26935849787839c73ee0535a359 (patch)
tree60574af0ef9e2f7fd37aca74d2df34cd3779989c /src/perl/irc
parentfe8971ac8f9e841e2e33e2532c029eddda589774 (diff)
downloadirssi-3f275ebd55c1c26935849787839c73ee0535a359.zip
Added support for 326 and 327 whois numerics in OPN.
Removed keeping track of ban exceptions and invite list. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2212 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/perl/irc')
-rw-r--r--src/perl/irc/Channel.xs20
-rw-r--r--src/perl/irc/Modes.xs22
2 files changed, 0 insertions, 42 deletions
diff --git a/src/perl/irc/Channel.xs b/src/perl/irc/Channel.xs
index 833e4f59..53cbb2f6 100644
--- a/src/perl/irc/Channel.xs
+++ b/src/perl/irc/Channel.xs
@@ -49,26 +49,6 @@ PPCODE:
XPUSHs(sv_2mortal(plain_bless(tmp->data, "Irssi::Irc::Ban")));
}
-void
-ebans(channel)
- Irssi::Irc::Channel channel
-PREINIT:
- GSList *tmp;
-PPCODE:
- for (tmp = channel->ebanlist; tmp != NULL; tmp = tmp->next) {
- XPUSHs(sv_2mortal(plain_bless(tmp->data, "Irssi::Irc::Ban")));
- }
-
-void
-invites(channel)
- Irssi::Irc::Channel channel
-PREINIT:
- GSList *tmp;
-PPCODE:
- for (tmp = channel->invitelist; tmp != NULL; tmp = tmp->next) {
- XPUSHs(new_pv(tmp->data));
- }
-
Irssi::Irc::Nick
irc_nick_insert(channel, nick, op, voice, send_massjoin)
Irssi::Irc::Channel channel
diff --git a/src/perl/irc/Modes.xs b/src/perl/irc/Modes.xs
index e25c887f..5dcb3389 100644
--- a/src/perl/irc/Modes.xs
+++ b/src/perl/irc/Modes.xs
@@ -30,25 +30,3 @@ void
banlist_remove(channel, ban)
Irssi::Irc::Channel channel
char *ban
-
-Irssi::Irc::Ban
-banlist_exception_add(channel, ban, nick, time)
- Irssi::Irc::Channel channel
- char *ban
- char *nick
- time_t time
-
-void
-banlist_exception_remove(channel, ban)
- Irssi::Irc::Channel channel
- char *ban
-
-void
-invitelist_add(channel, mask)
- Irssi::Irc::Channel channel
- char *mask
-
-void
-invitelist_remove(channel, mask)
- Irssi::Irc::Channel channel
- char *mask