mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 20:33:46 +02:00
Allow the user to set and modify the SASL parameters
The /NETWORK ADD command now is able to modify the SASL mechanism, the username and the password on a chatnet basis.
This commit is contained in:
parent
f247a43b97
commit
1a2c479bc0
4 changed files with 34 additions and 10 deletions
|
|
@ -49,9 +49,9 @@ static void sig_chatnet_read(IRC_CHATNET_REC *rec, CONFIG_NODE *node)
|
|||
rec->max_modes = config_node_get_int(node, "max_modes", 0);
|
||||
rec->max_whois = config_node_get_int(node, "max_whois", 0);
|
||||
|
||||
rec->sasl_mechanism = config_node_get_str(node, "sasl_mechanism", NULL);
|
||||
rec->sasl_username = config_node_get_str(node, "sasl_username", NULL);
|
||||
rec->sasl_password = config_node_get_str(node, "sasl_password", NULL);
|
||||
rec->sasl_mechanism = g_strdup(config_node_get_str(node, "sasl_mechanism", NULL));
|
||||
rec->sasl_username = g_strdup(config_node_get_str(node, "sasl_username", NULL));
|
||||
rec->sasl_password = g_strdup(config_node_get_str(node, "sasl_password", NULL));
|
||||
}
|
||||
|
||||
static void sig_chatnet_saved(IRC_CHATNET_REC *rec, CONFIG_NODE *node)
|
||||
|
|
@ -88,8 +88,12 @@ static void sig_chatnet_saved(IRC_CHATNET_REC *rec, CONFIG_NODE *node)
|
|||
|
||||
static void sig_chatnet_destroyed(IRC_CHATNET_REC *rec)
|
||||
{
|
||||
if (IS_IRC_CHATNET(rec))
|
||||
if (IS_IRC_CHATNET(rec)) {
|
||||
g_free(rec->usermode);
|
||||
g_free(rec->sasl_mechanism);
|
||||
g_free(rec->sasl_username);
|
||||
g_free(rec->sasl_password);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -81,7 +81,7 @@ static void sig_server_setup_fill_chatnet(IRC_SERVER_CONNECT_REC *conn,
|
|||
if (ircnet->max_query_chans > 0)
|
||||
conn->max_query_chans = ircnet->max_query_chans;
|
||||
|
||||
/* Validate the SASL parameters filled by sig_chatnet_read() */
|
||||
/* Validate the SASL parameters filled by sig_chatnet_read() or cmd_network_add */
|
||||
conn->sasl_mechanism = SASL_MECHANISM_NONE;
|
||||
|
||||
if (ircnet->sasl_mechanism != NULL) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue