history/cfg.h

28 lines
507 B
C

//Settings
#define NICK "histbot"
#define HOST "192.168.0.184" //localhost"
#define PORT 6667
#define DIR "./"
struct CHANNEL {
char *channel;
char *key;
};
struct CHANNEL channels[] = {
{"#hp", NULL}
};
//Put \r\n after string end
//Exp: {..., "PRIVMSG NickServ IDENTIFY mypassword\r\n", ..., NULL};
char *send_after_join[] = {NULL};
//Output
#define FORMAT_TXT "<%s> %s\n"
#define FORMAT_HTML "[%s] %s<br>\n"
#define FORMAT_AWK "%s %s\n"
#define FORMAT FORMAT_TXT
//File ext
#define EXT ".txt"