mud/lib/secure/daemon/i3router
2020-09-06 05:43:07 -07:00
..
blacklist.cfg first commit 2020-09-06 05:43:07 -07:00
broadcast_chanlist.h first commit 2020-09-06 05:43:07 -07:00
broadcast_mudlist.h first commit 2020-09-06 05:43:07 -07:00
clean_fd.h first commit 2020-09-06 05:43:07 -07:00
core_stuff.h first commit 2020-09-06 05:43:07 -07:00
debug.h first commit 2020-09-06 05:43:07 -07:00
funcs.h first commit 2020-09-06 05:43:07 -07:00
hosted_channels.h first commit 2020-09-06 05:43:07 -07:00
irn.h first commit 2020-09-06 05:43:07 -07:00
process_channel.h first commit 2020-09-06 05:43:07 -07:00
process_startup_req.h first commit 2020-09-06 05:43:07 -07:00
read_callback.h first commit 2020-09-06 05:43:07 -07:00
readme.txt first commit 2020-09-06 05:43:07 -07:00
remove_mud.h first commit 2020-09-06 05:43:07 -07:00
rsocket.c first commit 2020-09-06 05:43:07 -07:00
send_chanlist_reply.h first commit 2020-09-06 05:43:07 -07:00
send_error.h first commit 2020-09-06 05:43:07 -07:00
send_full_mudlist.h first commit 2020-09-06 05:43:07 -07:00
send_mudlist_updates.h first commit 2020-09-06 05:43:07 -07:00
send_startup_reply.h first commit 2020-09-06 05:43:07 -07:00
server_log.h first commit 2020-09-06 05:43:07 -07:00
server.c first commit 2020-09-06 05:43:07 -07:00

// This I3 router code was written mostly by Tim Johnson (Tim@TimMUD,
// Tim@The Eternal Fantasy)
// To use it, #include the server.h file or else just rename it to server.c
//
// If you use it yourself, I'd like you to mention in whatever appropriate
// (if your I3 network or your primary MUD has a web site or board for example)
// place that I wrote all this and you're welcome to list what you may have
// changed on it after downloading mine.  I'd actually prefer there to be a
// list somewhere simply because I'm curious what kinds of ideas people add.
// If it's something good, other people would probably be curious about it as
// well.
//
// I haven't done any router-to-router communications, so don't expect this to
// hook you up to the main network.  This will only be useful for private I3
// networks.
// Also, this is LPC code and needs to be on a MUD for it to run.  It works
// good on a stock TMI-2 MUD, one day I'll make a stripped-down mudlib solely
// for running my router on (without code for players to log in and such).
// Until then, just download TMI-2 and put these files on your MUD and it
// should work.
//
// -Tim (Last edited February 16, 2004)
//
// Some modifications have been made by Cratylus @ Dead Souls to get it
// working on DS muds and add some features.
// -Crat 05Sep2006
//
// Added inter-router networking support. See irn.h.
// -Crat 23Feb2007