Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get remote host Ip address QTcpServer

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.

like image 734
nik Avatar asked Feb 09 '12 00:02

nik


1 Answers

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.

like image 94
JediLlama Avatar answered Sep 21 '22 22:09

JediLlama