Skip to content

Commit

Permalink
Merge pull request #34 from fifieldt/ignore-atak-forwarder
Browse files Browse the repository at this point in the history
Add 257 ATAK_FORWARDER to ignored packet types
  • Loading branch information
liamcottle committed Jun 6, 2024
2 parents b7ce102 + a07ce17 commit 9afa8a0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/mqtt.js
Original file line number Diff line number Diff line change
Expand Up @@ -816,6 +816,8 @@ client.on("message", async (topic, message) => {
|| portnum === 65 // ignore STORE_FORWARD_APP
|| portnum === 66 // ignore RANGE_TEST_APP
|| portnum === 72 // ignore ATAK_PLUGIN
|| portnum === 257 // ignore ATAK_FORWARDER
|| portnum > 511 // ignore above MAX
){
return;
}
Expand Down

0 comments on commit 9afa8a0

Please sign in to comment.