diff options
author | developerKurt <mustafakurt.business@gmail.com> | 2020-01-02 08:01:03 +0300 |
---|---|---|
committer | developerKurt <mustafakurt.business@gmail.com> | 2020-01-02 08:01:03 +0300 |
commit | 1c43e31b622eba08b14079c03f9ad1861b4a0868 (patch) | |
tree | d2847bfd8694a1177ed18146b018dde742bd10b2 /src/main/java/org/traccar/protocol/PstProtocol.java | |
parent | 8b7257b4e952bdcfd4411c572a73adaf350d0d58 (diff) | |
parent | c31417c85f80854e33267ac23fb5636885954e83 (diff) | |
download | trackermap-server-1c43e31b622eba08b14079c03f9ad1861b4a0868.tar.gz trackermap-server-1c43e31b622eba08b14079c03f9ad1861b4a0868.tar.bz2 trackermap-server-1c43e31b622eba08b14079c03f9ad1861b4a0868.zip |
As requested in issue #4393, added logging IP address functionality when login attempts fail.
Diffstat (limited to 'src/main/java/org/traccar/protocol/PstProtocol.java')
-rw-r--r-- | src/main/java/org/traccar/protocol/PstProtocol.java | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/main/java/org/traccar/protocol/PstProtocol.java b/src/main/java/org/traccar/protocol/PstProtocol.java new file mode 100644 index 000000000..0ed9affd8 --- /dev/null +++ b/src/main/java/org/traccar/protocol/PstProtocol.java @@ -0,0 +1,40 @@ +/* + * Copyright 2019 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 org.traccar.BaseProtocol; +import org.traccar.PipelineBuilder; +import org.traccar.TrackerServer; + +public class PstProtocol extends BaseProtocol { + + public PstProtocol() { + addServer(new TrackerServer(true, getName()) { + @Override + protected void addProtocolHandlers(PipelineBuilder pipeline) { + pipeline.addLast(new PstProtocolDecoder(PstProtocol.this)); + } + }); + addServer(new TrackerServer(false, getName()) { + @Override + protected void addProtocolHandlers(PipelineBuilder pipeline) { + pipeline.addLast(new PstFrameDecoder()); + pipeline.addLast(new PstProtocolDecoder(PstProtocol.this)); + } + }); + } + +} |