diff options
Diffstat (limited to 'lib/smtp.h')
-rw-r--r-- | lib/smtp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/smtp.h b/lib/smtp.h index 76a8525a9..837ab0828 100644 --- a/lib/smtp.h +++ b/lib/smtp.h @@ -66,13 +66,13 @@ struct SMTP { struct */ struct smtp_conn { struct pingpong pp; + 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 authused; /* Auth mechanism used for the connection */ - smtpstate state; /* Always use smtp.c:state() to change state! */ - 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 RFC 1870 */ |