Hi to everybody,

i've a client that use a QTcpSocket to connect itself to a QTcpServer.

All is fine on Windows, but when i deploy the client on Symbian while the server running on Windows, the application require me to select an internet access point but i use this:

client side
Qt Code:
  1. connectToServer(QHostAddress(QHostAddress::LocalHost).toString(), 9876);
To copy to clipboard, switch view to plain text mode 

server side
Qt Code:
  1. server.listen(QHostAddress(QHostAddress::LocalHost), 9876)
To copy to clipboard, switch view to plain text mode 

Can somebody help me?

Many thanks!