]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
email: Added mutual authentication flag
authorSteve Holme <steve_holme@hotmail.com>
Thu, 14 Aug 2014 22:25:37 +0000 (23:25 +0100)
committerSteve Holme <steve_holme@hotmail.com>
Fri, 15 Aug 2014 20:32:21 +0000 (21:32 +0100)
lib/imap.h
lib/pop3.h
lib/smtp.h

index c7f76f5a0225a7c5b1fa9a58dd52f6758cba6151..768fc4b8c1236a341bd95f9053b0722129c206dd 100644 (file)
@@ -92,6 +92,7 @@ struct imap_conn {
   bool tls_supported;         /* StartTLS capability supported by server */
   bool login_disabled;        /* LOGIN command disabled by server */
   bool ir_supported;          /* Initial response supported by server */
+  bool mutual_auth;           /* Mutual authentication enabled (GSSAPI only) */
   char *mailbox;              /* The last selected mailbox */
   char *mailbox_uidvalidity;  /* UIDVALIDITY parsed from select response */
 };
index 39e35d2da29ca9c89f0930a8f7ea7bb2b2065035..729a55ad5eec18621d045f1ccd2475201a8c16d2 100644 (file)
@@ -84,6 +84,7 @@ struct pop3_conn {
   unsigned int authused;  /* SASL auth mechanism used for the connection */
   char *apoptimestamp;    /* APOP timestamp from the server greeting */
   bool tls_supported;     /* StartTLS capability supported by server */
+  bool mutual_auth;       /* Mutual authentication enabled (GSSAPI only) */
 };
 
 extern const struct Curl_handler Curl_handler_pop3;
index e2a19c639fe98b5552a1528f4b251ef6c79dddc5..db1b1e672890b4173f4975061a7788b95cf49758 100644 (file)
@@ -86,6 +86,7 @@ struct smtp_conn {
   bool size_supported;     /* If server supports SIZE extension according to
                               RFC 1870 */
   bool auth_supported;     /* AUTH capability supported by server */
+  bool mutual_auth;        /* Mutual authentication enabled (GSSAPI only) */
 };
 
 extern const struct Curl_handler Curl_handler_smtp;