diff options
Diffstat (limited to 'src/perl/irc/Ignore.xs')
-rw-r--r-- | src/perl/irc/Ignore.xs | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/src/perl/irc/Ignore.xs b/src/perl/irc/Ignore.xs new file mode 100644 index 00000000..c19eb5c8 --- /dev/null +++ b/src/perl/irc/Ignore.xs @@ -0,0 +1,74 @@ +MODULE = Irssi::Irc PACKAGE = Irssi::Irc + +void +ignores() +PREINIT: + GSList *tmp; + HV *stash; +PPCODE: + stash = gv_stashpv("Irssi::Irc::Ignore", 0); + for (tmp = servers; tmp != NULL; tmp = tmp->next) { + XPUSHs(sv_2mortal(sv_bless(newRV_noinc(newSViv(GPOINTER_TO_INT(tmp->data))), stash))); + } + +int +ignore_check(nick, host, channel, text, level) + char *nick + char *host + char *channel + char *text + int level +CODE: + RETVAL = ignore_check(NULL, nick, host, channel, text, level); +OUTPUT: + RETVAL + +#******************************* +MODULE = Irssi::Irc PACKAGE = Irssi::Irc::Server +#******************************* + +int +ignore_check(server, nick, host, channel, text, level) + Irssi::Irc::Server server + char *nick + char *host + char *channel + char *text + int level + +#******************************* +MODULE = Irssi::Irc PACKAGE = Irssi::Irc::Ignore PREFIX = ignore_ +#******************************* + +void +values(ignore) + Irssi::Irc::Ignore ignore +PREINIT: + HV *hv; + AV *av; + char **tmp; +PPCODE: + hv = newHV(); + hv_store(hv, "mask", 4, new_pv(ignore->mask), 0); + hv_store(hv, "servertag", 9, new_pv(ignore->servertag), 0); + av = newAV(); + for (tmp = ignore->channels; *tmp != NULL; tmp++) { + av_push(av, new_pv(*tmp)); + } + hv_store(hv, "channels", 8, newRV_noinc((SV*)av), 0); + hv_store(hv, "pattern", 7, new_pv(ignore->pattern), 0); + + hv_store(hv, "level", 5, newSViv(ignore->level), 0); + hv_store(hv, "except_level", 12, newSViv(ignore->except_level), 0); + + hv_store(hv, "regexp", 6, newSViv(ignore->regexp), 0); + hv_store(hv, "fullword", 8, newSViv(ignore->fullword), 0); + XPUSHs(sv_2mortal(newRV_noinc((SV*)hv))); + +void +ignore_add_rec(rec) + Irssi::Irc::Ignore rec + +void +ignore_update_rec(rec) + Irssi::Irc::Ignore rec |