Merge pull request #564 from meshtastic/blankconfig

Adds a blank config for fetching a remote admin session key
pull/565/head
Ben Meadors 2024-08-20 10:26:07 -05:00 zatwierdzone przez GitHub
commit 56a4355070
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
2 zmienionych plików z 11 dodań i 0 usunięć

Wyświetl plik

@ -71,6 +71,11 @@ message AdminMessage {
* TODO: REPLACE
*/
SECURITY_CONFIG = 7;
/*
*
*/
SESSIONKEY_CONFIG = 8;
}
/*

Wyświetl plik

@ -1069,6 +1069,11 @@ message Config {
bool admin_channel_enabled = 8;
}
/*
* Blank config request, strictly for getting the session key
*/
message SessionkeyConfig {}
/*
* Payload Variant
*/
@ -1081,5 +1086,6 @@ message Config {
LoRaConfig lora = 6;
BluetoothConfig bluetooth = 7;
SecurityConfig security = 8;
SessionkeyConfig sessionkey = 9;
}
}