diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-10-08 12:10:58 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-10-08 12:10:58 +1300 |
commit | 2e69800d0d83e3d0486b0ca0cecde7d2a451c105 (patch) | |
tree | 25307a6528d081d43de0c13e7a2f044a4dd7b7e3 /src/org/traccar/protocol/CellocatorProtocolDecoder.java | |
parent | 3f5aef83e284a1c4f4e608d57d7f3330af6ea12a (diff) | |
download | trackermap-server-2e69800d0d83e3d0486b0ca0cecde7d2a451c105.tar.gz trackermap-server-2e69800d0d83e3d0486b0ca0cecde7d2a451c105.tar.bz2 trackermap-server-2e69800d0d83e3d0486b0ca0cecde7d2a451c105.zip |
Make protocol message types public
Diffstat (limited to 'src/org/traccar/protocol/CellocatorProtocolDecoder.java')
-rw-r--r-- | src/org/traccar/protocol/CellocatorProtocolDecoder.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/org/traccar/protocol/CellocatorProtocolDecoder.java b/src/org/traccar/protocol/CellocatorProtocolDecoder.java index 45505a7c7..5517e703b 100644 --- a/src/org/traccar/protocol/CellocatorProtocolDecoder.java +++ b/src/org/traccar/protocol/CellocatorProtocolDecoder.java @@ -39,7 +39,7 @@ public class CellocatorProtocolDecoder extends BaseProtocolDecoder { static final int MSG_CLIENT_SERIAL = 8; static final int MSG_CLIENT_MODULAR = 9; - private static final int MSG_SERVER_ACKNOWLEDGE = 4; + public static final int MSG_SERVER_ACKNOWLEDGE = 4; private byte commandCount; |