aboutsummaryrefslogtreecommitdiff
path: root/lib/imap.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/imap.h')
-rw-r--r--lib/imap.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/imap.h b/lib/imap.h
index 2f0b62a61..c1395160a 100644
--- a/lib/imap.h
+++ b/lib/imap.h
@@ -33,6 +33,7 @@ typedef enum {
a connect */
IMAP_LOGIN,
IMAP_STARTTLS,
+ IMAP_UPGRADETLS, /* asynchronously upgrade the connection to SSL/TLS (multi mode only) */
IMAP_SELECT,
IMAP_FETCH,
IMAP_LOGOUT,
@@ -47,6 +48,7 @@ struct imap_conn {
imapstate state; /* always use imap.c:state() to change state! */
int cmdid; /* id number/index */
const char *idstr; /* pointer to a string for which to wait for as id */
+ bool ssldone; /* is connect() over SSL done? only relevant in multi mode */
};
extern const struct Curl_handler Curl_handler_imap;