email: Updated comment regarding ssldone usage
Updated the ssldone comment as multi mode is always used internally now.
This commit is contained in:
parent
44cf225f7a
commit
73fae58132
@ -61,8 +61,7 @@ struct imap_conn {
|
|||||||
imapstate state; /* Always use imap.c:state() to change state! */
|
imapstate state; /* Always use imap.c:state() to change state! */
|
||||||
int cmdid; /* Next command ID */
|
int cmdid; /* Next command ID */
|
||||||
const char *idstr; /* String based response ID to wait for */
|
const char *idstr; /* String based response ID to wait for */
|
||||||
bool ssldone; /* Is connect() over SSL done? Only relevant in
|
bool ssldone; /* Is connect() over SSL done? */
|
||||||
multi mode */
|
|
||||||
};
|
};
|
||||||
|
|
||||||
extern const struct Curl_handler Curl_handler_imap;
|
extern const struct Curl_handler Curl_handler_imap;
|
||||||
|
@ -65,8 +65,7 @@ struct pop3_conn {
|
|||||||
unsigned int authused; /* SASL auth mechanism used for the connection */
|
unsigned int authused; /* SASL auth mechanism used for the connection */
|
||||||
char *apoptimestamp; /* APOP timestamp from the server greeting */
|
char *apoptimestamp; /* APOP timestamp from the server greeting */
|
||||||
pop3state state; /* Always use pop3.c:state() to change state! */
|
pop3state state; /* Always use pop3.c:state() to change state! */
|
||||||
bool ssldone; /* Is connect() over SSL done? Only relevant in
|
bool ssldone; /* Is connect() over SSL done? */
|
||||||
multi mode */
|
|
||||||
};
|
};
|
||||||
|
|
||||||
extern const struct Curl_handler Curl_handler_pop3;
|
extern const struct Curl_handler Curl_handler_pop3;
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
* | (__| |_| | _ <| |___
|
* | (__| |_| | _ <| |___
|
||||||
* \___|\___/|_| \_\_____|
|
* \___|\___/|_| \_\_____|
|
||||||
*
|
*
|
||||||
* Copyright (C) 2009 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al.
|
* Copyright (C) 2009 - 2013, Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||||
*
|
*
|
||||||
* This software is licensed as described in the file COPYING, which
|
* This software is licensed as described in the file COPYING, which
|
||||||
* you should have received as part of this distribution. The terms
|
* you should have received as part of this distribution. The terms
|
||||||
@ -64,8 +64,7 @@ struct smtp_conn {
|
|||||||
unsigned int authused; /* Auth mechanism used for the connection */
|
unsigned int authused; /* Auth mechanism used for the connection */
|
||||||
smtpstate state; /* Always use smtp.c:state() to change state! */
|
smtpstate state; /* Always use smtp.c:state() to change state! */
|
||||||
struct curl_slist *rcpt; /* Recipient list */
|
struct curl_slist *rcpt; /* Recipient list */
|
||||||
bool ssldone; /* Is connect() over SSL done? Only relevant in
|
bool ssldone; /* Is connect() over SSL done? */
|
||||||
multi mode */
|
|
||||||
bool size_supported; /* If server supports SIZE extension according to
|
bool size_supported; /* If server supports SIZE extension according to
|
||||||
RFC 1870 */
|
RFC 1870 */
|
||||||
};
|
};
|
||||||
@ -85,4 +84,3 @@ extern const struct Curl_handler Curl_handler_smtps;
|
|||||||
CURLcode Curl_smtp_escape_eob(struct connectdata *conn, ssize_t nread);
|
CURLcode Curl_smtp_escape_eob(struct connectdata *conn, ssize_t nread);
|
||||||
|
|
||||||
#endif /* HEADER_CURL_SMTP_H */
|
#endif /* HEADER_CURL_SMTP_H */
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user