Added a state check for protocol negotiation.

Will be used to negotiate SSL.
This commit is contained in:
Jan Vidar Krey 2009-06-22 19:38:24 +02:00
parent ca7544df9b
commit 57fd872f14
2 changed files with 13 additions and 0 deletions

View File

@ -286,6 +286,13 @@ int user_is_connecting(struct user* user)
return 0;
}
int user_is_protocol_negotiating(struct user* user)
{
if (user->state == state_protocol)
return 1;
return 0;
}
int user_is_disconnecting(struct user* user)
{
if (user->state == state_cleanup || user->state == state_disconnected)

View File

@ -191,6 +191,12 @@ extern void user_set_state(struct user* user, enum user_state);
*/
extern int user_is_logged_in(struct user* user);
/**
* Returns 1 if the user is in state_protocol.
* Returns 0 otherwise.
*/
extern int user_is_protocol_negotiating(struct user* user);
/**
* Returns 1 if the user is in state_protocol, state_identify or state_verify.
* Returns 0 otherwise.