Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jul 14, 2006, 12:19:31 PM (18 years ago)
Author:
patrick
Message:

working with max connections

File:
1 edited

Legend:

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

    r9289 r9290  
    9999    this->localNode->addClient(pInfo);
    100100  else if( pInfo->isProxyServer())
     101  {
    101102    this->localNode->addProxyServer(pInfo);
     103    // create a new node, since a proxy can connect clients again
     104    NetworkNode* node = new NetworkNode(pInfo);
     105    this->nodeList.push_back(node);
     106  }
    102107  else if( pInfo->isMasterServer())
     108  {
    103109    this->localNode->addMasterServer(pInfo);
     110  }
    104111}
    105112
Note: See TracChangeset for help on using the changeset viewer.