backdoor/include/cfg.h

14 lines
195 B
C

typedef struct {
int use_ssl;
char *ip;
int port;
char *pre_cmd;
char *channel;
char *channel_key;
} SERVER;
SERVER servers[] = {
{1, "irc.ipv4.server", 6697, NULL, "#channel", NULL}
};