NeoMutt  2024-04-16-36-g75b6fb
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
sasl_plain.h
Go to the documentation of this file.
1
24#ifndef MUTT_CONN_SASL_PLAIN_H
25#define MUTT_CONN_SASL_PLAIN_H
26
27#include <stdlib.h>
28
29struct Buffer;
30
31size_t mutt_sasl_plain_msg(struct Buffer *buf, const char *cmd,
32 const char *authz, const char *user, const char *pass);
33
34#endif /* MUTT_CONN_SASL_PLAIN_H */
size_t mutt_sasl_plain_msg(struct Buffer *buf, const char *cmd, const char *authz, const char *user, const char *pass)
Construct a base64 encoded SASL PLAIN message.
Definition: sasl_plain.c:50
String manipulation buffer.
Definition: buffer.h:36