From 282288d61ff6180e6798948e3aaa49271e306e70 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Mon, 30 Jul 2007 06:26:11 +0000
Subject: [PATCH] Update the server to provide an idle time limit configuration option that can be used to terminate client connections that have been idle for too long. This can be controlled on a server-wide default level using the ds-cfg-idle-time-limit configuration attribute in the cn=config entry, but it can also be overridden on a per-user level with the ds-rlim-idle-time-limit operational attribute in the user's entry.
---
opends/src/server/org/opends/server/config/ConfigConstants.java | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/opends/src/server/org/opends/server/config/ConfigConstants.java b/opends/src/server/org/opends/server/config/ConfigConstants.java
index 09b7bdd..afa68fe 100644
--- a/opends/src/server/org/opends/server/config/ConfigConstants.java
+++ b/opends/src/server/org/opends/server/config/ConfigConstants.java
@@ -3541,6 +3541,15 @@
/**
+ * The name of the operational attribute that may be included in user entries
+ * to specify an idle time limit to be applied for that user.
+ */
+ public static final String OP_ATTR_USER_IDLE_TIME_LIMIT =
+ NAME_PREFIX_RLIM + "idle-time-limit";
+
+
+
+ /**
* The name of the operational attribute that may be included in user
* entries to specify a size limit to be applied for that user.
*/
--
Gitblit v1.10.0