From 139c40de1bc595ccd4b8ca952da9e2a37bc8a18e Mon Sep 17 00:00:00 2001
From: dugan <dugan@localhost>
Date: Wed, 05 Nov 2008 13:22:43 +0000
Subject: [PATCH] These fixes add confidentiality/integrity to the SASL GSSAPI and DIGEST-MD5 mechanisms. The issue links:

---
 opends/src/server/org/opends/server/api/ConnectionSecurityProvider.java |   10 ++++++++++
 1 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/opends/src/server/org/opends/server/api/ConnectionSecurityProvider.java b/opends/src/server/org/opends/server/api/ConnectionSecurityProvider.java
index 9ad8c1b..a2a510d 100644
--- a/opends/src/server/org/opends/server/api/ConnectionSecurityProvider.java
+++ b/opends/src/server/org/opends/server/api/ConnectionSecurityProvider.java
@@ -98,6 +98,16 @@
    */
   public abstract boolean isSecure();
 
+ /**
+  * Indicates whether the security provider is active or not. Some
+  * security providers (DIGEST-MD5, GSSAPI) perform
+  * confidentiality/integrity processing of messages and require
+  * several handshakes to setup.
+  *
+  * @return  {@code true} if the security provider is active, or,
+  *          {@code false} if not.
+  */
+  public abstract boolean isActive();
 
 
   /**

--
Gitblit v1.10.0