From ea629fa971db08f2267b50522360563a8fec7f86 Mon Sep 17 00:00:00 2001
From: ludovicp <ludovicp@localhost>
Date: Thu, 27 May 2010 15:28:09 +0000
Subject: [PATCH] Fix for issues #3395 and #3998. The changes improves the replica initialization protocol, especially flow control and handling connection outage.
---
opendj-sdk/opends/src/server/org/opends/server/replication/protocol/RoutableMsg.java | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/opendj-sdk/opends/src/server/org/opends/server/replication/protocol/RoutableMsg.java b/opendj-sdk/opends/src/server/org/opends/server/replication/protocol/RoutableMsg.java
index 8b3172a..fac8b57 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/replication/protocol/RoutableMsg.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/replication/protocol/RoutableMsg.java
@@ -22,7 +22,7 @@
* CDDL HEADER END
*
*
- * Copyright 2006-2009 Sun Microsystems, Inc.
+ * Copyright 2006-2010 Sun Microsystems, Inc.
*/
package org.opends.server.replication.protocol;
@@ -81,7 +81,8 @@
}
/**
- * Get the destination.
+ * Get the destination. The value is a serverId, or ALL_SERVERS dedicated
+ * value.
* @return the destination
*/
public int getDestination()
@@ -93,7 +94,7 @@
* Get the server ID of the server that sent this message.
* @return the server id
*/
- public int getsenderID()
+ public int getSenderID()
{
return this.senderID;
}
--
Gitblit v1.10.0