Make login type more intuitive and disable unused /NS
This commit is contained in:
parent
0badd9b874
commit
791e0fc11f
|
@ -120,7 +120,9 @@ static int login_types_conf[] =
|
||||||
7, /* /pass */
|
7, /* /pass */
|
||||||
1, /* /msg NickServ */
|
1, /* /msg NickServ */
|
||||||
2, /* /NickServ */
|
2, /* /NickServ */
|
||||||
|
#if 0
|
||||||
3, /* /NS */
|
3, /* /NS */
|
||||||
|
#endif
|
||||||
4, /* /msg NS */
|
4, /* /msg NS */
|
||||||
5, /* /auth */
|
5, /* /auth */
|
||||||
};
|
};
|
||||||
|
@ -128,13 +130,15 @@ static int login_types_conf[] =
|
||||||
static const char *login_types[]=
|
static const char *login_types[]=
|
||||||
{
|
{
|
||||||
"Default",
|
"Default",
|
||||||
"SASL",
|
"SASL (username + password)",
|
||||||
"Server Password",
|
"Server Password (/PASS password)",
|
||||||
"Message NickServ",
|
"NickServ (/MSG NickServ + password)",
|
||||||
"NickServ",
|
"NickServ (/NickServ + password)",
|
||||||
"NS",
|
#if 0
|
||||||
"Message NS",
|
"NickServ (/NS + password)",
|
||||||
"AUTH",
|
#endif
|
||||||
|
"NickServ (/MSG NS + password)",
|
||||||
|
"AUTH (/AUTH nickname password)",
|
||||||
NULL
|
NULL
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue