From e6b5fc8fd447eb01a2f214e58b263593b68055d5 Mon Sep 17 00:00:00 2001 From: zzz Date: Tue, 25 Jun 2019 14:15:10 +0000 Subject: [PATCH] I2CP: One more HostReply return code --- core/java/src/net/i2p/data/i2cp/HostReplyMessage.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/java/src/net/i2p/data/i2cp/HostReplyMessage.java b/core/java/src/net/i2p/data/i2cp/HostReplyMessage.java index 04e502202..8f0c3bfc0 100644 --- a/core/java/src/net/i2p/data/i2cp/HostReplyMessage.java +++ b/core/java/src/net/i2p/data/i2cp/HostReplyMessage.java @@ -37,6 +37,8 @@ public class HostReplyMessage extends I2CPMessageImpl { public static final int RESULT_KEY_REQUIRED = 3; /** @since 0.9.41 */ public static final int RESULT_SECRET_AND_KEY_REQUIRED = 4; + /** @since 0.9.41 */ + public static final int RESULT_DECRYPTION_FAILURE = 5; private static final long MAX_INT = (1L << 32) - 1;