Hi, I've configured a public hostname on no-ip, and then configured my box to redirect the port.

I've also configured the firewall to accept that connection.

But Qt is cutting the connection :

Qt Code:
  1. socket->connectToHost("monsite.ddns.net", 80); // On se connecte au serveur demandé
To copy to clipboard, switch view to plain text mode 

I've started to listen on that port :

Qt Code:
  1. serveur = new QTcpServer(this);
  2. if (!serveur->listen(QHostAddress::Any, 50885))
To copy to clipboard, switch view to plain text mode 

Why is the Qt server cut the connection ?