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/OrionFrameDecoder.java | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'src/org/traccar/protocol/OrionFrameDecoder.java') diff --git a/src/org/traccar/protocol/OrionFrameDecoder.java b/src/org/traccar/protocol/OrionFrameDecoder.java index 63bf84494..033dbd1d5 100644 --- a/src/org/traccar/protocol/OrionFrameDecoder.java +++ b/src/org/traccar/protocol/OrionFrameDecoder.java @@ -22,9 +22,6 @@ import org.jboss.netty.handler.codec.frame.FrameDecoder; public class OrionFrameDecoder extends FrameDecoder { - private static final int TYPE_USERLOG = 0; - private static final int TYPE_SYSLOG = 3; - @Override protected Object decode( ChannelHandlerContext ctx, @@ -37,7 +34,7 @@ public class OrionFrameDecoder extends FrameDecoder { int type = buf.getUnsignedByte(buf.readerIndex() + 2) & 0x0f; - if (type == TYPE_USERLOG) { + if (type == OrionProtocolDecoder.MSG_USERLOG) { if (buf.readableBytes() >= length + 5) { int index = buf.readerIndex() + 3; @@ -58,7 +55,7 @@ public class OrionFrameDecoder extends FrameDecoder { return buf.readBytes(length); } } - } else if (type == TYPE_SYSLOG) { + } else if (type == OrionProtocolDecoder.MSG_SYSLOG) { if (buf.readableBytes() >= length + 12) { length += buf.getUnsignedShort(buf.readerIndex() + 8); if (buf.readableBytes() >= length) { -- cgit v1.2.3