Browse Source

Merge pull request #2011 from Vort/net_status

log changes of network status
pull/2013/head
orignal 5 months ago committed by GitHub
parent
commit
faaa8115d9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      libi2pd/RouterContext.cpp
  2. 9
      libi2pd/RouterContext.h

4
libi2pd/RouterContext.cpp

@ -303,6 +303,8 @@ namespace i2p @@ -303,6 +303,8 @@ namespace i2p
SetTesting (false);
if (status != m_Status)
{
LogPrint(eLogInfo, "Router: network status v4 changed ",
ROUTER_STATUS_NAMES[m_Status], " -> ", ROUTER_STATUS_NAMES[status]);
m_Status = status;
switch (m_Status)
{
@ -323,6 +325,8 @@ namespace i2p @@ -323,6 +325,8 @@ namespace i2p
SetTestingV6 (false);
if (status != m_StatusV6)
{
LogPrint(eLogInfo, "Router: network status v6 changed ",
ROUTER_STATUS_NAMES[m_StatusV6], " -> ", ROUTER_STATUS_NAMES[status]);
m_StatusV6 = status;
switch (m_StatusV6)
{

9
libi2pd/RouterContext.h

@ -48,6 +48,15 @@ namespace garlic @@ -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,

Loading…
Cancel
Save