mirror of
https://github.com/irssi/irssi.git
synced 2026-08-18 08:02:13 +02:00
SASL support
The only supported methods are PLAIN and EXTERNAL, the latter is untested as of
now.
The code gets the values from the keys named sasl_{mechanism,username,password}
specified for each chatnet.
This commit is contained in:
parent
762c1d7f2c
commit
b8d3301d34
10 changed files with 200 additions and 5 deletions
|
|
@ -17,12 +17,15 @@
|
|||
struct _IRC_CHATNET_REC {
|
||||
#include "chatnet-rec.h"
|
||||
|
||||
char *usermode;
|
||||
char *usermode;
|
||||
|
||||
char *sasl_mechanism;
|
||||
char *sasl_username;
|
||||
char *sasl_password;
|
||||
|
||||
int max_cmds_at_once;
|
||||
int cmd_queue_speed;
|
||||
int max_query_chans; /* when syncing, max. number of channels to
|
||||
put in one MODE/WHO command */
|
||||
int max_query_chans; /* when syncing, max. number of channels to put in one MODE/WHO command */
|
||||
|
||||
/* max. number of kicks/msgs/mode/whois per command */
|
||||
int max_kicks, max_msgs, max_modes, max_whois;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue