From 90f73ed100d00bd5b16475fe522137b93ba0c40c Mon Sep 17 00:00:00 2001 From: GUVWAF Date: Sun, 1 Sep 2024 15:35:52 +0200 Subject: [PATCH] Add RESPONSE priority for responses to a request --- meshtastic/mesh.proto | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/meshtastic/mesh.proto b/meshtastic/mesh.proto index 824ae65..23d2b9c 100644 --- a/meshtastic/mesh.proto +++ b/meshtastic/mesh.proto @@ -1020,6 +1020,12 @@ message MeshPacket { */ RELIABLE = 70; + /* + * If priority is unset but the packet is a response to a request, we want it to get there relatively quickly. + * Furthermore, responses stop relaying packets directed to a node early. + */ + RESPONSE = 80; + /* * Higher priority for specific message types (portnums) to distinguish between other reliable packets. */