blob: f9b6fa6bf308829b7666611892610fcac462aca0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef CLIENT_AUTHENTICATE_H
#define CLIENT_AUTHENTICATE_H
void pop3_client_auth_result(struct client *client,
enum client_auth_result result,
const struct client_auth_reply *reply,
const char *text);
bool cmd_capa(struct pop3_client *client, const char *args);
bool cmd_user(struct pop3_client *client, const char *args);
bool cmd_pass(struct pop3_client *client, const char *args);
int cmd_auth(struct pop3_client *client);
bool cmd_apop(struct pop3_client *client, const char *args);
#endif
|