|
@@ -20,6 +20,7 @@
|
|
|
|
|
|
|
|
int set_noshare = 0;
|
|
int set_noshare = 0;
|
|
|
|
|
|
|
|
|
|
+bool auth_obscure = 0;
|
|
|
char alias[1024] = "bc botcmd,bl botcmd ?";
|
|
char alias[1024] = "bc botcmd,bl botcmd ?";
|
|
|
char auth_key[51] = "";
|
|
char auth_key[51] = "";
|
|
|
char auth_prefix[2] = "";
|
|
char auth_prefix[2] = "";
|
|
@@ -50,6 +51,7 @@ static variable_t vars[] = {
|
|
|
{"alias", alias, sizeof(alias), VAR_STRING|VAR_LIST|VAR_NOLOC|VAR_PERM, NULL, NULL},
|
|
{"alias", alias, sizeof(alias), VAR_STRING|VAR_LIST|VAR_NOLOC|VAR_PERM, NULL, NULL},
|
|
|
{"auth-key", auth_key, sizeof(auth_key), VAR_STRING|VAR_PERM, NULL, NULL},
|
|
{"auth-key", auth_key, sizeof(auth_key), VAR_STRING|VAR_PERM, NULL, NULL},
|
|
|
{"auth-prefix", auth_prefix, sizeof(auth_prefix), VAR_STRING|VAR_NOLHUB|VAR_PERM, NULL, NULL},
|
|
{"auth-prefix", auth_prefix, sizeof(auth_prefix), VAR_STRING|VAR_NOLHUB|VAR_PERM, NULL, NULL},
|
|
|
|
|
+ {"auth-obscure", &auth_obscure, 0, VAR_INT|VAR_BOOL, NULL, NULL},
|
|
|
{"bad-process", &badprocess, 0, VAR_INT|VAR_DETECTED, NULL, NULL},
|
|
{"bad-process", &badprocess, 0, VAR_INT|VAR_DETECTED, NULL, NULL},
|
|
|
{"dccauth", &dccauth, 0, VAR_INT|VAR_BOOL, NULL, NULL},
|
|
{"dccauth", &dccauth, 0, VAR_INT|VAR_BOOL, NULL, NULL},
|
|
|
{"chanset", glob_chanset, sizeof(glob_chanset), VAR_STRING|VAR_CHANSET|VAR_NOLHUB, NULL, NULL},
|
|
{"chanset", glob_chanset, sizeof(glob_chanset), VAR_STRING|VAR_CHANSET|VAR_NOLHUB, NULL, NULL},
|