diff options
Diffstat (limited to 'lib/smtp.h')
-rw-r--r-- | lib/smtp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/smtp.h b/lib/smtp.h index f78e2c5b4..ee057af79 100644 --- a/lib/smtp.h +++ b/lib/smtp.h @@ -62,6 +62,7 @@ struct SMTP { char *user; /* User name string */ char *passwd; /* Password string */ curl_pp_transfer transfer; + struct curl_slist *rcpt; /* Recipient list */ }; /* smtp_conn is used for struct connection-oriented data in the connectdata @@ -74,7 +75,6 @@ struct smtp_conn { unsigned int authmechs; /* Accepted authentication mechanisms */ unsigned int authused; /* Auth mechanism used for the connection */ smtpstate state; /* Always use smtp.c:state() to change state! */ - struct curl_slist *rcpt; /* Recipient list */ bool ssldone; /* Is connect() over SSL done? */ bool tls_supported; /* StartTLS capability supported by server */ bool size_supported; /* If server supports SIZE extension according to |