From 92a7350758362b7b90576a01fdf96417298e0a5c Mon Sep 17 00:00:00 2001
From: gbellato <gbellato@localhost>
Date: Mon, 09 Oct 2006 14:15:55 +0000
Subject: [PATCH] - Change the synchronization code so that the changelog server can now be used directly through the ChangelogBroker class as a client API.
---
opends/src/server/org/opends/server/changelog/SerializingProtocolSession.java | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/opends/src/server/org/opends/server/changelog/SerializingProtocolSession.java b/opends/src/server/org/opends/server/changelog/SerializingProtocolSession.java
index 23d87c2..c2b0a5c 100644
--- a/opends/src/server/org/opends/server/changelog/SerializingProtocolSession.java
+++ b/opends/src/server/org/opends/server/changelog/SerializingProtocolSession.java
@@ -111,4 +111,12 @@
{
return socket.getInetAddress().getHostAddress();
}
+
+ /**
+ * {@inheritDoc}
+ */
+ public void setSoTimeout(int timeout) throws SocketException
+ {
+ socket.setSoTimeout(timeout);
+ }
}
--
Gitblit v1.10.0