summaryrefslogtreecommitdiff
path: root/lib/smtp.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/smtp.h')
-rw-r--r--lib/smtp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/smtp.h b/lib/smtp.h
index ed704abd6..7a03e51ce 100644
--- a/lib/smtp.h
+++ b/lib/smtp.h
@@ -60,6 +60,8 @@ typedef enum {
struct SMTP {
curl_pp_transfer transfer;
struct curl_slist *rcpt; /* Recipient list */
+ size_t eob; /* Number of bytes of the EOB (End Of Body) that
+ have been received so far */
};
/* smtp_conn is used for struct connection-oriented data in the connectdata
@@ -69,8 +71,6 @@ struct smtp_conn {
smtpstate state; /* Always use smtp.c:state() to change state! */
bool ssldone; /* Is connect() over SSL done? */
char *domain; /* Client address/name to send in the EHLO */
- size_t eob; /* Number of bytes of the EOB (End Of Body) that
- have been received so far */
unsigned int authmechs; /* Accepted authentication mechanisms */
unsigned int prefmech; /* Preferred authentication mechanism */
unsigned int authused; /* Auth mechanism used for the connection */