diff options
author | Anton Tananaev <anton@traccar.org> | 2022-09-18 11:31:41 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2022-09-18 11:31:41 -0700 |
commit | 5612d29b74a1c5ded13955565cf1b48f2307813c (patch) | |
tree | 78ec7b1db425d44805afdc0425609632e4dcbeb5 /src/main/java/org/traccar/protocol/G1rusProtocol.java | |
parent | aa7509c4d234552dc9a8fc7041190e9da0fda590 (diff) | |
download | trackermap-server-5612d29b74a1c5ded13955565cf1b48f2307813c.tar.gz trackermap-server-5612d29b74a1c5ded13955565cf1b48f2307813c.tar.bz2 trackermap-server-5612d29b74a1c5ded13955565cf1b48f2307813c.zip |
Refactor G1RUS protocol
Diffstat (limited to 'src/main/java/org/traccar/protocol/G1rusProtocol.java')
-rw-r--r-- | src/main/java/org/traccar/protocol/G1rusProtocol.java | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/src/main/java/org/traccar/protocol/G1rusProtocol.java b/src/main/java/org/traccar/protocol/G1rusProtocol.java index 0d77a8add..f1823762d 100644 --- a/src/main/java/org/traccar/protocol/G1rusProtocol.java +++ b/src/main/java/org/traccar/protocol/G1rusProtocol.java @@ -1,6 +1,20 @@ +/* + * Copyright 2022 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.traccar.protocol; -import io.netty.handler.codec.string.StringDecoder; import io.netty.handler.codec.string.StringEncoder; import org.traccar.BaseProtocol; import org.traccar.PipelineBuilder; @@ -16,9 +30,11 @@ public class G1rusProtocol extends BaseProtocol { addServer(new TrackerServer(config, getName(), false) { @Override protected void addProtocolHandlers(PipelineBuilder pipeline, Config config) { + pipeline.addLast(new G1rusFrameDecoder()); pipeline.addLast(new StringEncoder()); pipeline.addLast(new G1rusProtocolDecoder(G1rusProtocol.this)); } }); } + } |