Hacking Kaybot
Currently the Kaybot source code includes the following files:
command.c
Description: Contains function for parsing and handling commands.
The main function called in this file is kb_command_handler(). This
function weeds through the message passed in the kbMsgSender structure
and looks for commands. Prior to parsing the commands the kb_user_space_maintainance()
function is called.
crypto.c
Description: Contains cryptography functions used by kaybot.
At present the kb_encrypt() function simply takes a string and increments
each character by one. The kb_decrypt() just reverses the process. This won't
be the case for much longer.
incoming.c
Description:
ircfunc.c
Description:
login.c
Description:
main.c
Description:
module.c
Description:
misc.c
Description:
net.c
Description:
privmsg.c
Description:
settings.c
Description:
string.c
Description:
users.c
Description:
|