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