Rename config file values (acc. to #ee93e4ce)

This commit is contained in:
phl0
2017-11-09 23:17:25 +01:00
parent 85e90610d7
commit ecb4ea1a38
6 changed files with 25 additions and 25 deletions

View File

@@ -28,10 +28,10 @@
const unsigned int BUFFER_LENGTH = 200U;
CYSFNetwork::CYSFNetwork(const std::string& myAddress, unsigned int myPort, const std::string& gwyAddress, unsigned int gwyPort, const std::string& callsign, bool debug) :
CYSFNetwork::CYSFNetwork(const std::string& myAddress, unsigned int myPort, const std::string& gatewayAddress, unsigned int gatewayPort, const std::string& callsign, bool debug) :
m_socket(myAddress, myPort),
m_address(),
m_port(gwyPort),
m_port(gatewayPort),
m_callsign(),
m_debug(debug),
m_enabled(false),
@@ -42,7 +42,7 @@ m_tag(NULL)
m_callsign = callsign;
m_callsign.resize(YSF_CALLSIGN_LENGTH, ' ');
m_address = CUDPSocket::lookup(gwyAddress);
m_address = CUDPSocket::lookup(gatewayAddress);
m_tag = new unsigned char[YSF_CALLSIGN_LENGTH];
::memset(m_tag, ' ', YSF_CALLSIGN_LENGTH);