summaryrefslogtreecommitdiffstats
path: root/src/pop3-login/pop3-proxy.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/pop3-login/pop3-proxy.h')
-rw-r--r--src/pop3-login/pop3-proxy.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/pop3-login/pop3-proxy.h b/src/pop3-login/pop3-proxy.h
new file mode 100644
index 0000000..9e23475
--- /dev/null
+++ b/src/pop3-login/pop3-proxy.h
@@ -0,0 +1,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