Added states for state machine implementation of SmtpClient.

This commit is contained in:
Attila Tőkés 2012-09-02 20:48:18 +03:00 committed by Attila
parent 24ca613e47
commit 04b7054aa9

View File

@ -54,6 +54,15 @@ public:
TlsConnection // STARTTLS
};
enum State {
UnconnectedState,
ConnectingState,
ConnectedState,
AuthenticatingState,
MailSendingState,
DisconnectingState
};
/* [0] --- */