aboutsummaryrefslogtreecommitdiff
path: root/lib/imap.h
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2013-02-26 23:15:16 +0000
committerSteve Holme <steve_holme@hotmail.com>2013-02-26 23:15:16 +0000
commitaa44ec62aabab70b0f5e513726dd68dea8bbd822 (patch)
tree7d2f4276f192937537b663b703e634b55ac665e0 /lib/imap.h
parent05c03e7edd02e6ce2289c0ef707819439de242f0 (diff)
email: Slight reordering of connection based variables
Reordered the state and ssl_done variables in order to provide more consistency between the email protocols as well as for for an upcoming change.
Diffstat (limited to 'lib/imap.h')
-rw-r--r--lib/imap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/imap.h b/lib/imap.h
index e6ede9777..aafa63417 100644
--- a/lib/imap.h
+++ b/lib/imap.h
@@ -67,12 +67,12 @@ struct IMAP {
struct */
struct imap_conn {
struct pingpong pp;
+ imapstate state; /* Always use imap.c:state() to change state! */
+ bool ssldone; /* Is connect() over SSL done? */
unsigned int authmechs; /* Accepted authentication mechanisms */
unsigned int authused; /* Auth mechanism used for the connection */
- imapstate state; /* Always use imap.c:state() to change state! */
int cmdid; /* Last used command ID */
char resptag[5]; /* Response tag to wait for */
- bool ssldone; /* Is connect() over SSL done? */
bool tls_supported; /* StartTLS capability supported by server */
bool login_disabled; /* LOGIN command disabled by server */
bool ir_supported; /* Initial response supported by server */