From 2e69800d0d83e3d0486b0ca0cecde7d2a451c105 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Thu, 8 Oct 2015 12:10:58 +1300 Subject: Make protocol message types public --- src/org/traccar/protocol/OrionProtocolDecoder.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/org/traccar/protocol/OrionProtocolDecoder.java') diff --git a/src/org/traccar/protocol/OrionProtocolDecoder.java b/src/org/traccar/protocol/OrionProtocolDecoder.java index 647dc2aa7..9b4561e2e 100644 --- a/src/org/traccar/protocol/OrionProtocolDecoder.java +++ b/src/org/traccar/protocol/OrionProtocolDecoder.java @@ -35,8 +35,8 @@ public class OrionProtocolDecoder extends BaseProtocolDecoder { super(protocol); } - private static final int TYPE_USERLOG = 0; - private static final int TYPE_SYSLOG = 3; + public static final int MSG_USERLOG = 0; + public static final int MSG_SYSLOG = 3; private static void sendResponse(Channel channel, ChannelBuffer buf) { if (channel != null) { @@ -64,7 +64,7 @@ public class OrionProtocolDecoder extends BaseProtocolDecoder { buf.skipBytes(2); // header int type = buf.readUnsignedByte() & 0x0f; - if (type == TYPE_USERLOG) { + if (type == MSG_USERLOG) { int header = buf.readUnsignedByte(); -- cgit v1.2.3