diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-10-26 13:29:37 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-10-26 13:29:37 +1300 |
commit | 09b4183fd7ba546209d422d53ea07e273bec26f3 (patch) | |
tree | 529c916e244d634870b0d2f01c51efce0e032889 /src/org/traccar/protocol/EelinkProtocolDecoder.java | |
parent | 3e56ea6a99e7da5d61c5956876c2d977268e4756 (diff) | |
download | trackermap-server-09b4183fd7ba546209d422d53ea07e273bec26f3.tar.gz trackermap-server-09b4183fd7ba546209d422d53ea07e273bec26f3.tar.bz2 trackermap-server-09b4183fd7ba546209d422d53ea07e273bec26f3.zip |
Use hexDump instead of readHexString
Diffstat (limited to 'src/org/traccar/protocol/EelinkProtocolDecoder.java')
-rw-r--r-- | src/org/traccar/protocol/EelinkProtocolDecoder.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/org/traccar/protocol/EelinkProtocolDecoder.java b/src/org/traccar/protocol/EelinkProtocolDecoder.java index 9183dadbd..e016d542d 100644 --- a/src/org/traccar/protocol/EelinkProtocolDecoder.java +++ b/src/org/traccar/protocol/EelinkProtocolDecoder.java @@ -71,7 +71,7 @@ public class EelinkProtocolDecoder extends BaseProtocolDecoder { if (type == MSG_LOGIN) { - identify(ChannelBufferTools.readHexString(buf, 16).substring(1), channel); + identify(ChannelBuffers.hexDump(buf.readBytes(8)).substring(1), channel); } else if (hasDeviceId() && (type == MSG_GPS || type == MSG_ALARM || type == MSG_STATE || type == MSG_SMS)) { @@ -91,7 +91,7 @@ public class EelinkProtocolDecoder extends BaseProtocolDecoder { position.setCourse(buf.readUnsignedShort()); // Cell - position.set(Event.KEY_CELL, ChannelBufferTools.readHexString(buf, 18)); + position.set(Event.KEY_CELL, ChannelBuffers.hexDump(buf.readBytes(9))); // Validity position.setValid((buf.readUnsignedByte() & 0x01) != 0); |