diff options
Diffstat (limited to 'src/irc/core/sasl.h')
-rw-r--r-- | src/irc/core/sasl.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/irc/core/sasl.h b/src/irc/core/sasl.h new file mode 100644 index 00000000..fcf87e16 --- /dev/null +++ b/src/irc/core/sasl.h @@ -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 |