From 176636de441dd8db893fb7a2182a0b2290aa2215 Mon Sep 17 00:00:00 2001 From: Sacha Weatherstone Date: Wed, 26 Oct 2022 20:40:12 +1100 Subject: [PATCH] Remove peer info (#211) * Yank * Add to * fix import sort * remove --- mesh.proto | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/mesh.proto b/mesh.proto index 80aced8..24031fa 100644 --- a/mesh.proto +++ b/mesh.proto @@ -1247,26 +1247,6 @@ message FromRadio { */ message ToRadio { - /* - * Instead of sending want_config_id as a uint32, newer clients send this structure with information about the client. - */ - message PeerInfo { - - /* - * The numeric version code for the client application, which in some cases are used to control device behavior (so the device can - * make assumptions about who is using the API. - */ - uint32 app_version = 1; - - /* - * True if the peer device can gateway MQTT packets. - * If true, the device will not try to send packets to the internet directly, - * instead it will pass the packets to the peer for dispatching. - * This feature is optional, if set to false the device will assume the client can not gateway to MQTT. - */ - bool mqtt_gateway = 2; - } - /* * Log levels, chosen to match python logging conventions. */