Get remote host Ip address QTcpServer

两盒软妹~` 提交于 2019-12-10 13:20:12

问题


I'm using Qt to create TCP server using QTcpServer. Every time a client connects to server, I would like to know the remote host's IP address and port number. I tried searching documentation but couldn't find any information on this topic.

I know there should be a way, I'm just not able to figure it out. Help please.


回答1:


QTcpServer won't tell you the address/port directly on an incoming connection but you can get it by getting the connected QTcpSocket from QTcpServer::nextPendingConnection() and then using QTcpSocket's peerAddress() and peerPort() methods.



来源:https://stackoverflow.com/questions/9204033/get-remote-host-ip-address-qtcpserver

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!