From bbfd71f011a7b88ca7ed0de3088002004169790e Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Sun, 19 Oct 2025 22:27:40 -0700 Subject: [PATCH] "IP-Network" --- mesh_bot.py | 2 +- pong_bot.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mesh_bot.py b/mesh_bot.py index 0b23d44..db4ab68 100755 --- a/mesh_bot.py +++ b/mesh_bot.py @@ -1602,7 +1602,7 @@ def onReceive(packet, interface): hop = "MQTT" if "unknown" in str(transport_mechanism).lower() and (snr == 0 and rssi == 0): - hop = "IP-based" + hop = "IP-Network" if enableHopLogs: logger.debug(f"System: Packet HopDebugger: hop_away:{hop_away} hop_limit:{hop_limit} hop_start:{hop_start} calculated_hop_count:{hop_count} final_hop_value:{hop} via_mqtt:{via_mqtt} transport_mechanism:{transport_mechanism}") diff --git a/pong_bot.py b/pong_bot.py index d0e275f..87ddbd5 100755 --- a/pong_bot.py +++ b/pong_bot.py @@ -334,7 +334,7 @@ def onReceive(packet, interface): hop = "MQTT" if "unknown" in str(transport_mechanism).lower() and (snr == 0 and rssi == 0): - hop = "IP-based" + hop = "IP-Network" if enableHopLogs: logger.debug(f"System: Packet HopDebugger: hop_away:{hop_away} hop_limit:{hop_limit} hop_start:{hop_start} calculated_hop_count:{hop_count} final_hop_value:{hop} via_mqtt:{via_mqtt} transport_mechanism:{transport_mechanism}")