diff options
author | Abyss777 <abyss@fox5.ru> | 2018-06-08 17:04:44 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2018-06-08 17:04:44 +0500 |
commit | c176b7b4bf4eef6f71767f92ada2591ef27c1cfa (patch) | |
tree | fd7ef0e30a4644760154ffc14101749311040d85 /src/org/traccar/protocol/TelicProtocol.java | |
parent | ecb7bb33fcec52491f917dbc65a82990dcddb808 (diff) | |
download | trackermap-server-c176b7b4bf4eef6f71767f92ada2591ef27c1cfa.tar.gz trackermap-server-c176b7b4bf4eef6f71767f92ada2591ef27c1cfa.tar.bz2 trackermap-server-c176b7b4bf4eef6f71767f92ada2591ef27c1cfa.zip |
Migrate part of T protocols
Diffstat (limited to 'src/org/traccar/protocol/TelicProtocol.java')
-rw-r--r-- | src/org/traccar/protocol/TelicProtocol.java | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/src/org/traccar/protocol/TelicProtocol.java b/src/org/traccar/protocol/TelicProtocol.java index fdd0b94c6..0ee4cf165 100644 --- a/src/org/traccar/protocol/TelicProtocol.java +++ b/src/org/traccar/protocol/TelicProtocol.java @@ -1,5 +1,5 @@ /* - * Copyright 2015 - 2016 Anton Tananaev (anton@traccar.org) + * Copyright 2015 - 2018 Anton Tananaev (anton@traccar.org) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -15,14 +15,12 @@ */ package org.traccar.protocol; -import org.jboss.netty.bootstrap.ServerBootstrap; -import org.jboss.netty.channel.ChannelPipeline; -import org.jboss.netty.handler.codec.string.StringDecoder; -import org.jboss.netty.handler.codec.string.StringEncoder; +import io.netty.handler.codec.string.StringDecoder; +import io.netty.handler.codec.string.StringEncoder; import org.traccar.BaseProtocol; +import org.traccar.PipelineBuilder; import org.traccar.TrackerServer; -import java.nio.ByteOrder; import java.util.List; public class TelicProtocol extends BaseProtocol { @@ -33,17 +31,15 @@ public class TelicProtocol extends BaseProtocol { @Override public void initTrackerServers(List<TrackerServer> serverList) { - TrackerServer server = new TrackerServer(new ServerBootstrap(), getName()) { + serverList.add(new TrackerServer(false, getName()) { @Override - protected void addSpecificHandlers(ChannelPipeline pipeline) { + protected void addProtocolHandlers(PipelineBuilder pipeline) { pipeline.addLast("frameDecoder", new TelicFrameDecoder()); pipeline.addLast("stringDecoder", new StringDecoder()); pipeline.addLast("stringEncoder", new StringEncoder()); pipeline.addLast("objectDecoder", new TelicProtocolDecoder(TelicProtocol.this)); } - }; - server.setEndianness(ByteOrder.LITTLE_ENDIAN); - serverList.add(server); + }); } } |