mirror of
https://github.com/irssi/irssi.git
synced 2026-08-19 16:42:30 +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
14
src/irc/core/sasl.h
Normal file
14
src/irc/core/sasl.h
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#ifndef __SASL_H
|
||||
#define __SASL_H
|
||||
|
||||
enum {
|
||||
SASL_MECHANISM_NONE = 0,
|
||||
SASL_MECHANISM_PLAIN,
|
||||
SASL_MECHANISM_EXTERNAL,
|
||||
SASL_MECHANISM_MAX
|
||||
};
|
||||
|
||||
void sasl_init(void);
|
||||
void sasl_deinit(void);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue