/* #define DBUG */ /*===[ IRCSERVER ]============================================================ Default IRC server to connect to. ============================================================================*/ #define IRCSERVER "change.me.to.a.server" /*===[ IRCPORT ]============================================================== Default IRC port to connect to. ============================================================================*/ #define IRCPORT 6667 /*===[ IRCNAME, USERNAME, IRCGECOS ]========================================== Name of the AI. 'Real' user name and Gecos information. ============================================================================*/ #define GET_IRCNAME "GloveGet" #define GET_USERNAME "GloveNet Client (GET)" #define GET_IRCGECOS "GloveNet Client (GET)" #define SEND_IRCNAME "GloveSend" #define SEND_USERNAME "GloveNet Client (SEND)" #define SEND_IRCGECOS "GloveNet Client (SEND)" /*===[ CHANNEL ]============================================================== The channel where the bot sends glove data =============================================================================*/ #define SEND_CHANNEL "#glove-send" #define GET_CHANNEL "#glove-get" /*===[ MAXLEN ]=============================================================== Maximum length of lines sent to and received from IRC. ============================================================================*/ #define MAXLEN 255 #define null(type) (type) 0L #define US 1 #define THEM 2 #ifndef TRUE #define TRUE 1 #define FALSE 0 #endif