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.
This commit is contained in:
Steve Holme
2013-02-07 20:02:06 +00:00
parent 4ed469a56f
commit 86dfcf737d
2 changed files with 9 additions and 3 deletions

View File

@@ -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;