Merge pull request #34 from fifieldt/ignore-atak-forwarder

Add 257 ATAK_FORWARDER to ignored packet types
This commit is contained in:
Liam Cottle 2024-06-06 20:47:11 +12:00 committed by GitHub
commit 9afa8a0594
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;
}