removed cout

This commit is contained in:
Erik Frojdh 2019-05-16 15:10:24 +02:00
parent c30c6bb883
commit e6ad80e187

View File

@ -49,9 +49,6 @@ ServerInterface2 ServerSocket::accept() {
char tc[INET_ADDRSTRLEN]{};
inet_ntop(AF_INET, &(clientAddr.sin_addr), tc, INET_ADDRSTRLEN);
thisClient = tc;
std::cout << "lastClient: " << lastClient << " thisClient: " << thisClient
<< '\n';
return ServerInterface2(newSocket);
}