INSTALL

This UDP port handling (Intermud) system was designed for muds using the Amylaar driver, but it should run on any mud that supports mappings and an efun for sending UDP packets. If you are not using an Amylaar driver some of the specifics of the installation instructions may not apply to you.

Your mud will need to be added to the host lists at other muds for the system to realise its full potential, but it will operate satisfactorily regardless.

It is a good idea to test out the intermud system at your own site to iron out any problems you may encounter. You will need to write your own intermud commands for players to use, but the command files in the udp directory should give you some good examples of usage. Some example commands and code can be found in the examples and contrib directories. The PROTOCOL file should also provide some useful information.

udp/who.c
Handles who requests from remote sites. The DATA field should be a string containing the who information.

udp/finger.c
DATA field should be a string containing the finger info.

udp/channel.c
This handles all incoming channel messages. It uses the header "CHANNEL" to identify the channel name, "CMD" to identify a special command, and DATA for the message body. The message is formatted and sent to all wizards on the mud. Incoming messages can be blocked by setting earmuffs != 1. This basic system relies on a function receive_channel_msg(string channel, string msg) being defined in all players who will receive the channel messages. It should pass on any received messages to player as long as 'msg' != 0. It should return 1 if the player is listening to the specified channel and 0 otherwise. You will probably want to alter this module to incorporate it into your local channel system or to make it more user-friendly.

udp/man.c
Handles remote man requests. The DATA field should be a string containing the manual page or information.

udp/query.c
Change the EMAIL #define to yourself (or a relevant email).

udp/ftp.c
Define the FTP_ROOT_DIR as appropriate. You will need to make sure this file has privilege to read (and write if PUTFILE is defined) to files inside FTP_ROOT_DIR.