我正在编写一个客户端服务器程序,服务器从客户端接收消息.我想在服务器端看到客户端的IP地址.我怎样才能做到这一点?如果你能帮助我,我将不胜感激.谢谢
既然你正在使用QTcpSocket
,我认为.peerAddress
你正在寻找.
class Server : public QTcpServer {...}
接受
void Server::acceptConnection() { std::cout << "new connection!\n"; client = nextPendingConnection(); std::cout << client->peerAddress().toString(); }