Default hostname to "MiniDexed"

[ci skip]
network
probonopd 5 days ago committed by GitHub
parent 7ca6e29682
commit 0171b877d1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      src/config.cpp

@ -204,7 +204,7 @@ void CConfig::Load (void)
m_bNetworkEnabled = m_Properties.GetNumber ("NetworkEnabled", 0) != 0;
m_bNetworkDHCP = m_Properties.GetNumber ("NetworkDHCP", 0) != 0;
m_NetworkType = m_Properties.GetString ("NetworkType", "wifi");
m_NetworkHostname = m_Properties.GetString ("NetworkHostname", "minidexed");
m_NetworkHostname = m_Properties.GetString ("NetworkHostname", "MiniDexed");
m_INetworkIPAddress = m_Properties.GetIPAddress("NetworkIPAddress") != 0;
m_INetworkSubnetMask = m_Properties.GetIPAddress("NetworkSubnetMask") != 0;
m_INetworkDefaultGateway = m_Properties.GetIPAddress("NetworkDefaultGateway") != 0;
@ -766,4 +766,4 @@ CIPAddress CConfig::GetNetworkDefaultGateway (void) const
CIPAddress CConfig::GetNetworkDNSServer (void) const
{
return m_INetworkDNSServer;
}
}

Loading…
Cancel
Save