mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
Merge pull request #308 from vague666/sasl_in_network_list
Add sasl info to /network list output if available
This commit is contained in:
commit
fb6375c6f9
@ -56,7 +56,12 @@ static void cmd_network_list(void)
|
||||
g_string_append_printf(str, "autosendcmd: %s, ", rec->autosendcmd);
|
||||
if (rec->usermode != NULL)
|
||||
g_string_append_printf(str, "usermode: %s, ", rec->usermode);
|
||||
|
||||
if (rec->sasl_mechanism != NULL)
|
||||
g_string_append_printf(str, "sasl_mechanism: %s, ", rec->sasl_mechanism);
|
||||
if (rec->sasl_username != NULL)
|
||||
g_string_append_printf(str, "sasl_username: %s, ", rec->sasl_username);
|
||||
if (rec->sasl_password != NULL)
|
||||
g_string_append_printf(str, "sasl_password: (pass), ");
|
||||
if (rec->cmd_queue_speed > 0)
|
||||
g_string_append_printf(str, "cmdspeed: %d, ", rec->cmd_queue_speed);
|
||||
if (rec->max_cmds_at_once > 0)
|
||||
|
Loading…
Reference in New Issue
Block a user