diff options
author | Steve Holme <steve_holme@hotmail.com> | 2013-02-07 20:02:06 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-02-07 20:02:06 +0000 |
commit | 86dfcf737d1b05c7c731f098ff8c0e0ab87040fa (patch) | |
tree | a68c371bfee89d0d7ff432d07bf3fdec5ea8775c /lib/imap.h | |
parent | 4ed469a56fd2ff7d4c85a7cf14c871a54f06fa2e (diff) | |
download | curl-86dfcf737d1b05c7c731f098ff8c0e0ab87040fa.tar.gz |
imap: Added support for SASL-IR extension (Part 1)
Introduced detection of the SASL-IR capability, in order to add support
for sending the initial response with the AUTHENTICATE command, as per
RFC4959.
Diffstat (limited to 'lib/imap.h')
-rw-r--r-- | lib/imap.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/imap.h b/lib/imap.h index 5cbae751a..eeedcff17 100644 --- a/lib/imap.h +++ b/lib/imap.h @@ -63,6 +63,7 @@ struct imap_conn { char resptag[5]; /* Response tag to wait for */ bool ssldone; /* Is connect() over SSL done? */ bool login_disabled; /* LOGIN command explicitly disabled by server */ + bool ir_supported; /* Initial response supported by server */ }; extern const struct Curl_handler Curl_handler_imap; |