]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
imap: Tidied up comments for connection based variables
authorSteve Holme <steve_holme@hotmail.com>
Tue, 26 Feb 2013 23:07:37 +0000 (23:07 +0000)
committerSteve Holme <steve_holme@hotmail.com>
Tue, 26 Feb 2013 23:07:37 +0000 (23:07 +0000)
lib/imap.h

index 0df0c8ea84f621c7ce4cc190559b05430f9cdb92..e6ede97774b1d5a367e2300c2389e16f2dfaf866 100644 (file)
@@ -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;