Change isIntended falt to false for RULE_VIOLATION

This commit is contained in:
Manfred Karrer 2016-06-12 12:43:30 +02:00
parent c2eb77edae
commit 663b505410

View File

@ -23,7 +23,7 @@ public enum CloseConnectionReason {
UNKNOWN_PEER_ADDRESS(true, true),
// illegal requests
RULE_VIOLATION(true, true);
RULE_VIOLATION(true, false);
public final boolean sendCloseMessage;
public boolean isIntended;