diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2018-06-07 23:03:50 +1200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-07 23:03:50 +1200 |
commit | e26b25c7c35cb99f3e0fb114bcedd76f090e0c3b (patch) | |
tree | 2a6a6ad9018e1de675fdadaadc6929f1163e37f7 /src/org/traccar/protocol/V680Protocol.java | |
parent | 7e324a9dfb2bcde08d1524a9f3dc5114c0d49bdc (diff) | |
parent | 757cdb82c9109541ee5e7dc8d8ddca31c8507ca3 (diff) | |
download | trackermap-server-e26b25c7c35cb99f3e0fb114bcedd76f090e0c3b.tar.gz trackermap-server-e26b25c7c35cb99f3e0fb114bcedd76f090e0c3b.tar.bz2 trackermap-server-e26b25c7c35cb99f3e0fb114bcedd76f090e0c3b.zip |
Merge pull request #3917 from Abyss777/netty4_uv
Migrate U,V protocols
Diffstat (limited to 'src/org/traccar/protocol/V680Protocol.java')
-rw-r--r-- | src/org/traccar/protocol/V680Protocol.java | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/src/org/traccar/protocol/V680Protocol.java b/src/org/traccar/protocol/V680Protocol.java index 98c64830b..eb9111578 100644 --- a/src/org/traccar/protocol/V680Protocol.java +++ b/src/org/traccar/protocol/V680Protocol.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,13 +15,11 @@ */ package org.traccar.protocol; -import org.jboss.netty.bootstrap.ConnectionlessBootstrap; -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.CharacterDelimiterFrameDecoder; +import org.traccar.PipelineBuilder; import org.traccar.TrackerServer; import java.util.List; @@ -34,18 +32,18 @@ public class V680Protocol extends BaseProtocol { @Override public void initTrackerServers(List<TrackerServer> serverList) { - serverList.add(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 CharacterDelimiterFrameDecoder(1024, "##")); pipeline.addLast("stringDecoder", new StringDecoder()); pipeline.addLast("stringEncoder", new StringEncoder()); pipeline.addLast("objectDecoder", new V680ProtocolDecoder(V680Protocol.this)); } }); - serverList.add(new TrackerServer(new ConnectionlessBootstrap(), getName()) { + serverList.add(new TrackerServer(true, getName()) { @Override - protected void addSpecificHandlers(ChannelPipeline pipeline) { + protected void addProtocolHandlers(PipelineBuilder pipeline) { pipeline.addLast("stringDecoder", new StringDecoder()); pipeline.addLast("stringEncoder", new StringEncoder()); pipeline.addLast("objectDecoder", new V680ProtocolDecoder(V680Protocol.this)); |