diff options
author | Steve Holme <steve_holme@hotmail.com> | 2014-08-14 23:25:37 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2014-08-15 21:32:21 +0100 |
commit | 078d1fbf2b9d2d3a79f03c92ddca6fb0c6f1a434 (patch) | |
tree | b5853e6c8e679e561532a66e2652877fadaf01fb /lib/smtp.h | |
parent | 9eba83c156039156b8bd24b820923f2ddd275a80 (diff) | |
download | curl-078d1fbf2b9d2d3a79f03c92ddca6fb0c6f1a434.tar.gz |
email: Added mutual authentication flag
Diffstat (limited to 'lib/smtp.h')
-rw-r--r-- | lib/smtp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/smtp.h b/lib/smtp.h index e2a19c639..db1b1e672 100644 --- a/lib/smtp.h +++ b/lib/smtp.h @@ -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; |