mirror of
https://github.com/irssi/irssi.git
synced 2026-08-21 01:22:26 +02:00
34 lines
844 B
Text
34 lines
844 B
Text
|
|
MODULE = Irssi PACKAGE = Irssi::Server
|
||
|
|
|
||
|
|
Irssi::Netsplit
|
||
|
|
netsplit_find(server, nick, address)
|
||
|
|
Irssi::Server server
|
||
|
|
char *nick
|
||
|
|
char *address
|
||
|
|
|
||
|
|
Irssi::Nick
|
||
|
|
netsplit_find_channel(server, nick, address, channel)
|
||
|
|
Irssi::Server server
|
||
|
|
char *nick
|
||
|
|
char *address
|
||
|
|
char *channel
|
||
|
|
|
||
|
|
|
||
|
|
#*******************************
|
||
|
|
MODULE = Irssi PACKAGE = Irssi::Netsplit
|
||
|
|
#*******************************
|
||
|
|
|
||
|
|
void
|
||
|
|
values(netsplit)
|
||
|
|
Irssi::Netsplit netsplit
|
||
|
|
PREINIT:
|
||
|
|
HV *hv;
|
||
|
|
PPCODE:
|
||
|
|
hv = newHV();
|
||
|
|
hv_store(hv, "nick", 4, new_pv(netsplit->nick), 0);
|
||
|
|
hv_store(hv, "address", 7, new_pv(netsplit->address), 0);
|
||
|
|
hv_store(hv, "server", 6, new_pv(netsplit->server), 0);
|
||
|
|
hv_store(hv, "destserver", 10, new_pv(netsplit->destserver), 0);
|
||
|
|
hv_store(hv, "destroy", 7, newSViv(netsplit->destroy), 0);
|
||
|
|
/*FIXME: add GSList *channels;*/
|
||
|
|
XPUSHs(sv_2mortal(newRV_noinc((SV*)hv)));
|