log changes of network status

This commit is contained in:
Vort 2024-01-28 15:37:14 +02:00
parent a3246cd9dc
commit 81015a5228
2 changed files with 13 additions and 0 deletions

View file

@ -48,6 +48,15 @@ namespace garlic
eRouterStatusMesh = 4
};
const char* const ROUTER_STATUS_NAMES[] =
{
"OK", // 0
"Firewalled", // 1
"Unknown", // 2
"Proxy", // 3
"Mesh" // 4
};
enum RouterError
{
eRouterErrorNone = 0,