diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2019-03-19 20:47:11 -0700 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2019-03-19 20:47:11 -0700 |
commit | 57638edf3ceb8263aad7a33fb4b860be5c3436b8 (patch) | |
tree | 92397050bdab58491a4e339ea003f30a45520767 /src/org/traccar | |
parent | def60bd842f57d2f82057da2bd51eff757459750 (diff) | |
download | trackermap-server-57638edf3ceb8263aad7a33fb4b860be5c3436b8.tar.gz trackermap-server-57638edf3ceb8263aad7a33fb4b860be5c3436b8.tar.bz2 trackermap-server-57638edf3ceb8263aad7a33fb4b860be5c3436b8.zip |
Fix Huabao encoding issue
Diffstat (limited to 'src/org/traccar')
-rw-r--r-- | src/org/traccar/protocol/HuabaoProtocolDecoder.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/org/traccar/protocol/HuabaoProtocolDecoder.java b/src/org/traccar/protocol/HuabaoProtocolDecoder.java index 4e39d42eb..6e2e1377b 100644 --- a/src/org/traccar/protocol/HuabaoProtocolDecoder.java +++ b/src/org/traccar/protocol/HuabaoProtocolDecoder.java @@ -44,7 +44,7 @@ public class HuabaoProtocolDecoder extends BaseProtocolDecoder { public static final int MSG_GENERAL_RESPONSE = 0x8001; public static final int MSG_TERMINAL_REGISTER = 0x0100; public static final int MSG_TERMINAL_REGISTER_RESPONSE = 0x8100; - public static final int MSG_TERMINAL_CONTROL = 8105; + public static final int MSG_TERMINAL_CONTROL = 0x8105; public static final int MSG_TERMINAL_AUTH = 0x0102; public static final int MSG_LOCATION_REPORT = 0x0200; public static final int MSG_LOCATION_BATCH = 0x0704; |