mirror of
git://git.psyced.org/git/psyced
synced 2024-08-15 03:25:10 +00:00
let the past begone in cvs land. welcome to igit igit!
This commit is contained in:
commit
4e601cf1c7
509 changed files with 77963 additions and 0 deletions
40
world/net/relay/user.c
Normal file
40
world/net/relay/user.c
Normal file
|
@ -0,0 +1,40 @@
|
|||
// $Id: user.c,v 1.3 2006/11/05 21:33:19 fippo Exp $
|
||||
//
|
||||
// <lynX> relay users serve the purpose of implementing all the features of
|
||||
// a PSYC/Jabber identity for users of an IRC network whose identities are
|
||||
// auth'd by a NickServ. you may of course use it for other types of
|
||||
// authenticated networks or systems. further integration between this and
|
||||
// the system in question are of course welcome to be implemented.
|
||||
//
|
||||
// right now this simply forwards messages. we soon have to add a way for
|
||||
// the owner of this to issue commands.
|
||||
//
|
||||
#include <net.h>
|
||||
#include <user.h>
|
||||
|
||||
volatile object relay;
|
||||
|
||||
qScheme() { return "relay"; }
|
||||
|
||||
msg(source, mc, data, vars, showingLog, target) {
|
||||
if (showingLog) return;
|
||||
unless (relay) {
|
||||
//relay = RELAY_OBJECT -> load();
|
||||
relay = find_object(RELAY_OBJECT);
|
||||
PT(("%O using relay %O\n", ME, relay))
|
||||
unless (relay) return; // we have a problem
|
||||
}
|
||||
PT(("%O relaying %O from %O\n", ME, mc, source))
|
||||
//vars["_nick_target"] = MYNICK;
|
||||
|
||||
/* we need to remember this for QUIT handling */
|
||||
if (abbrev("_echo_place_enter", mc))
|
||||
unless (places[source])
|
||||
places[source] = vars["_nick_place"];
|
||||
relay->msg(source || previous_object(), mc, data, vars,
|
||||
showingLog, MYNICK); // we need mynick here for ircgate
|
||||
// instead of target
|
||||
// we aren't calling ::msg() thus all user functions are ineffective
|
||||
// as of now
|
||||
return;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue