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