blob: 9e23475cd950187d932b7b75292a7ef8206a0c3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef POP3_PROXY_H
#define POP3_PROXY_H
void pop3_proxy_reset(struct client *client);
int pop3_proxy_parse_line(struct client *client, const char *line);
void pop3_proxy_failed(struct client *client,
enum login_proxy_failure_type type,
const char *reason, bool reconnecting);
const char *pop3_proxy_get_state(struct client *client);
#endif
|