Add a new condition to mark IKE_SAs that are currently being reauthenticated

This commit is contained in:
Tobias Brunner
2012-09-06 11:23:11 +02:00
parent 4c91845452
commit 873b63b771
2 changed files with 9 additions and 9 deletions
+5
View File
@@ -175,6 +175,11 @@ enum ike_condition_t {
* Peer has been authenticated using XAuth
*/
COND_XAUTH_AUTHENTICATED = (1<<9),
/**
* This IKE_SA is currently being reauthenticated
*/
COND_REAUTHENTICATING = (1<<10),
};
/**