From 275e21eb2b5b06d291a44f3a485cf62bc927fc52 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Mon, 18 Dec 2006 22:01:00 +0000
Subject: [PATCH] Update the LDAP connection handler and LDAP client connection to properly update the abandon operation count when appropriate.  Also, update a number of test cases to verify that the LDAPStatistics information is properly updated.

---
 opends/src/server/org/opends/server/protocols/ldap/LDAPConnectionHandler.java |   16 ++++++++++++++++
 1 files changed, 16 insertions(+), 0 deletions(-)

diff --git a/opends/src/server/org/opends/server/protocols/ldap/LDAPConnectionHandler.java b/opends/src/server/org/opends/server/protocols/ldap/LDAPConnectionHandler.java
index adb2099..1a20f51 100644
--- a/opends/src/server/org/opends/server/protocols/ldap/LDAPConnectionHandler.java
+++ b/opends/src/server/org/opends/server/protocols/ldap/LDAPConnectionHandler.java
@@ -1605,6 +1605,22 @@
 
 
   /**
+   * Indicates whether this connection handler should use SSL to communicate
+   * with clients.
+   *
+   * @return  {@code true} if this connection handler should use SSL to
+   *          communicate with clients, or {@code false} if not.
+   */
+  public boolean useSSL()
+  {
+    assert debugEnter(CLASS_NAME, "useSSL");
+
+    return useSSL;
+  }
+
+
+
+  /**
    * Retrieves the SSL client authentication policy for this connection handler.
    *
    * @return  The SSL client authentication policy for this connection handler.

--
Gitblit v1.10.0