mirror of
https://github.com/moparisthebest/hexchat
synced 2024-11-26 03:02:17 -05:00
Support numeric 908
This commit is contained in:
parent
a817072e6f
commit
0f0dabdcf4
@ -1829,34 +1829,44 @@ static const char *sasl_mechanisms[] =
|
||||
"EXTERNAL"
|
||||
};
|
||||
|
||||
void
|
||||
inbound_sasl_supportedmechs (server *serv, char *list)
|
||||
{
|
||||
int i;
|
||||
|
||||
if (serv->sasl_mech != MECH_EXTERNAL)
|
||||
{
|
||||
/* Use most secure one supported */
|
||||
for (i = MECH_AES; i >= MECH_PLAIN; i--)
|
||||
{
|
||||
if (strstr (list, sasl_mechanisms[i]) != NULL)
|
||||
{
|
||||
serv->sasl_mech = i;
|
||||
serv->retry_sasl = TRUE;
|
||||
tcp_sendf (serv, "AUTHENTICATE %s\r\n", sasl_mechanisms[i]);
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* Abort, none supported */
|
||||
serv->sent_saslauth = TRUE;
|
||||
tcp_sendf (serv, "AUTHENTICATE *\r\n");
|
||||
return;
|
||||
}
|
||||
|
||||
void
|
||||
inbound_sasl_authenticate (server *serv, char *data)
|
||||
{
|
||||
ircnet *net = (ircnet*)serv->network;
|
||||
char *user, *pass = NULL;
|
||||
const char *mech = sasl_mechanisms[serv->sasl_mech];
|
||||
int i;
|
||||
|
||||
/* Got a list of supported mechanisms */
|
||||
/* Got a list of supported mechanisms from inspircd */
|
||||
if (strchr (data, ',') != NULL)
|
||||
{
|
||||
if (serv->sasl_mech == MECH_EXTERNAL)
|
||||
goto sasl_abort;
|
||||
|
||||
/* Use most secure one supported */
|
||||
for (i = MECH_AES; i >= MECH_PLAIN; i--)
|
||||
{
|
||||
if (strstr (data, sasl_mechanisms[i]) != NULL)
|
||||
{
|
||||
serv->sasl_mech = i;
|
||||
serv->retry_sasl = TRUE;
|
||||
tcp_sendf (serv, "AUTHENTICATE %s\r\n", sasl_mechanisms[i]);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
/* Nothing we support */
|
||||
goto sasl_abort;
|
||||
inbound_sasl_supportedmechs (serv, data);
|
||||
return;
|
||||
}
|
||||
|
||||
if (net->user && !(net->flags & FLAG_USE_GLOBAL))
|
||||
@ -1882,7 +1892,6 @@ inbound_sasl_authenticate (server *serv, char *data)
|
||||
#endif
|
||||
}
|
||||
|
||||
sasl_abort:
|
||||
if (pass == NULL)
|
||||
{
|
||||
/* something went wrong abort */
|
||||
|
@ -968,6 +968,9 @@ process_numeric (session * sess, int n,
|
||||
tcp_send_len (serv, "CAP END\r\n", 9);
|
||||
}
|
||||
break;
|
||||
case 908: /* Supported SASL Mechs */
|
||||
inbound_sasl_supportedmechs (serv, word_eol[3]+1);
|
||||
break;
|
||||
|
||||
default:
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user