backdoor/include/cfg.h

14 lines
195 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-28 06:38:20 +00:00
{1, "irc.ipv4.server", 6697, NULL, "#channel", NULL}
2024-04-21 16:39:15 +00:00
};