summaryrefslogtreecommitdiff
path: root/sources/protocols/implementations/VSReliableMulticastProtocol.java
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-04-15 02:53:19 +0300
committerPaul Buetow <paul@buetow.org>2025-04-15 02:53:19 +0300
commit822c7de49419775fe20c982a302b95987bbac2cf (patch)
tree25f84e977d206fe2d3fddae4238f56b49999ddc1 /sources/protocols/implementations/VSReliableMulticastProtocol.java
parent53b373ad26ff3f3c1900b9baa0d5366113884ef6 (diff)
more translation into english
Diffstat (limited to 'sources/protocols/implementations/VSReliableMulticastProtocol.java')
-rw-r--r--sources/protocols/implementations/VSReliableMulticastProtocol.java11
1 files changed, 6 insertions, 5 deletions
diff --git a/sources/protocols/implementations/VSReliableMulticastProtocol.java b/sources/protocols/implementations/VSReliableMulticastProtocol.java
index e4601ab..170533a 100644
--- a/sources/protocols/implementations/VSReliableMulticastProtocol.java
+++ b/sources/protocols/implementations/VSReliableMulticastProtocol.java
@@ -78,11 +78,11 @@ public class VSReliableMulticastProtocol extends VSAbstractProtocol {
else
return;
- log("ACK von Prozess " + pid + " erhalten!");
+ log("ACK from process " + pid + " received!");
+
if (pids.size() == 0) {
- log("ACKs von allen beteiligten Prozessen " +
- "erhalten!");
+ log("ACKs from all involved processes received!");
/* Remove the active schedule which has been created in the
onClientStart method */
@@ -125,10 +125,11 @@ public class VSReliableMulticastProtocol extends VSAbstractProtocol {
sendMessage(message);
if (ackSent) {
- log("ACK erneut versendet");
+ log("ACK sent again");
} else {
- log("ACK versendet");
+ log("ACK sent");
+
ackSent = true;
}
}