mirror of
https://github.com/ShaYmez/xlxd.git
synced 2024-12-23 01:55:49 -05:00
Use protocol name instead of number in logs
This commit is contained in:
parent
f4394c41fe
commit
f1f2b605b1
@ -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);
|
||||
|
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user