diff options
author | Steve Holme <steve_holme@hotmail.com> | 2013-02-26 23:07:37 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-02-26 23:07:37 +0000 |
commit | 05c03e7edd02e6ce2289c0ef707819439de242f0 (patch) | |
tree | 5fc81f5b68071afc152e9e5afdfc887a6b1235c9 /lib/imap.h | |
parent | f67bd1a3440badb2fb55d412d5fd7762bd73370d (diff) | |
download | curl-05c03e7edd02e6ce2289c0ef707819439de242f0.tar.gz |
imap: Tidied up comments for connection based variables
Diffstat (limited to 'lib/imap.h')
-rw-r--r-- | lib/imap.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/imap.h b/lib/imap.h index 0df0c8ea8..e6ede9777 100644 --- a/lib/imap.h +++ b/lib/imap.h @@ -67,16 +67,16 @@ struct IMAP { struct */ struct imap_conn { struct pingpong pp; - 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 explicitly disabled by server */ - bool ir_supported; /* Initial response supported by server */ - char *mailbox_uidvalidity; /* UIDVALIDITY parsed from SELECT response */ + 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 */ + char *mailbox_uidvalidity; /* UIDVALIDITY parsed from select response */ }; extern const struct Curl_handler Curl_handler_imap; |