Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jul 25, 2006, 11:35:11 PM (19 years ago)
Author:
patrick
Message:

now the clients can connect to the proxy servers.

⇒ hybrid proxy servers are half way done. There is still one major problem:

NetworkGameManager
This class is not yet hybrid at all. I will have take some more time for this one…

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/proxy/src/lib/network/network_stream.cc

    r9474 r9476  
    228228void NetworkStream::createServer(int clientPort, int proxyPort)
    229229{
    230   this->proxySocket = new UdpServerSocket(clientPort);
    231   this->clientSocket= new UdpServerSocket(proxyPort);
     230  PRINTF(0)(" Creating new Server: listening for clients on port %i and for proxies on port %i", clientPort, proxyPort);
     231  this->clientSocket= new UdpServerSocket(clientPort);
     232  this->proxySocket = new UdpServerSocket(proxyPort);
    232233}
    233234
Note: See TracChangeset for help on using the changeset viewer.