diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2018-06-08 11:07:43 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2018-06-08 11:07:43 +1200 |
commit | 4d9187e2ee98eee17d4adbcb84379e2c68fe2bcd (patch) | |
tree | 0751e189301c050e3a66ef25326190ea54fc7f92 /src/org/traccar/protocol/LaipacProtocol.java | |
parent | e26b25c7c35cb99f3e0fb114bcedd76f090e0c3b (diff) | |
download | trackermap-server-4d9187e2ee98eee17d4adbcb84379e2c68fe2bcd.tar.gz trackermap-server-4d9187e2ee98eee17d4adbcb84379e2c68fe2bcd.tar.bz2 trackermap-server-4d9187e2ee98eee17d4adbcb84379e2c68fe2bcd.zip |
Migrate L, M, N protocols
Diffstat (limited to 'src/org/traccar/protocol/LaipacProtocol.java')
-rw-r--r-- | src/org/traccar/protocol/LaipacProtocol.java | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/src/org/traccar/protocol/LaipacProtocol.java b/src/org/traccar/protocol/LaipacProtocol.java index 45b803a0f..aafada331 100644 --- a/src/org/traccar/protocol/LaipacProtocol.java +++ b/src/org/traccar/protocol/LaipacProtocol.java @@ -1,5 +1,5 @@ /* - * Copyright 2015 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,12 +15,11 @@ */ package org.traccar.protocol; -import org.jboss.netty.bootstrap.ServerBootstrap; -import org.jboss.netty.channel.ChannelPipeline; -import org.jboss.netty.handler.codec.frame.LineBasedFrameDecoder; -import org.jboss.netty.handler.codec.string.StringDecoder; -import org.jboss.netty.handler.codec.string.StringEncoder; +import io.netty.handler.codec.LineBasedFrameDecoder; +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.util.List; @@ -33,9 +32,9 @@ public class LaipacProtocol 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 LineBasedFrameDecoder(1024)); pipeline.addLast("stringEncoder", new StringEncoder()); pipeline.addLast("stringDecoder", new StringDecoder()); |