From f1f2b605b1fc415203a7fdbcee1adc159873fa29 Mon Sep 17 00:00:00 2001 From: phl0 Date: Thu, 30 Mar 2017 09:32:17 +0200 Subject: [PATCH] Use protocol name instead of number in logs --- src/cclients.cpp | 4 ++-- src/cpeers.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cclients.cpp b/src/cclients.cpp index d0cc5e8..32315e5 100644 --- a/src/cclients.cpp +++ b/src/cclients.cpp @@ -85,7 +85,7 @@ void CClients::AddClient(CClient *client) // and append m_Clients.push_back(client); std::cout << "New client " << client->GetCallsign() << " at " << client->GetIp() - << " added with protocol " << client->GetProtocol() + << " added with protocol " << client->GetProtocolName() << " on module " << client->GetReflectorModule() << std::endl; // notify g_Reflector.OnClientsChanged(); @@ -106,7 +106,7 @@ void CClients::RemoveClient(CClient *client) { // remove it std::cout << "Client " << m_Clients[i]->GetCallsign() << " at " << m_Clients[i]->GetIp() - << " removed with protocol " << client->GetProtocol() + << " removed with protocol " << client->GetProtocolName() << " on module " << client->GetReflectorModule() << std::endl; delete m_Clients[i]; m_Clients.erase(m_Clients.begin()+i); diff --git a/src/cpeers.cpp b/src/cpeers.cpp index 3a27282..35c5547 100644 --- a/src/cpeers.cpp +++ b/src/cpeers.cpp @@ -85,7 +85,7 @@ void CPeers::AddPeer(CPeer *peer) // append peer to reflector peer list m_Peers.push_back(peer); std::cout << "New peer " << peer->GetCallsign() << " at " << peer->GetIp() - << " added with protocol " << peer->GetProtocol() << std::endl; + << " added with protocol " << peer->GetProtocolName() << std::endl; // and append all peer's client to reflector client list // it is double lock safe to lock Clients list after Peers list CClients *clients = g_Reflector.GetClients();