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