From f7c3e06db5df27d44bb7fd661d23305bac9282a8 Mon Sep 17 00:00:00 2001 From: zzz <zzz@i2pmail.org> Date: Mon, 11 Apr 2022 10:30:29 -0400 Subject: [PATCH] I2CP: Fix external I2CP broken when session ID is 0 one chance in 64K, broken since 2005 don't revert previous attempted fix using synching, that's still a good idea --- core/java/src/net/i2p/data/i2cp/MessagePayloadMessage.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/java/src/net/i2p/data/i2cp/MessagePayloadMessage.java b/core/java/src/net/i2p/data/i2cp/MessagePayloadMessage.java index a70188b742..2d04fa693b 100644 --- a/core/java/src/net/i2p/data/i2cp/MessagePayloadMessage.java +++ b/core/java/src/net/i2p/data/i2cp/MessagePayloadMessage.java @@ -125,7 +125,7 @@ public class MessagePayloadMessage extends I2CPMessageImpl { */ @Override public synchronized void writeMessage(OutputStream out) throws I2CPMessageException, IOException { - if (_sessionId <= 0) + if (_sessionId < 0) throw new I2CPMessageException("Unable to write out the message, as the session ID has not been defined"); if (_messageId < 0) throw new I2CPMessageException("Unable to write out the message, as the message ID has not been defined"); -- GitLab