Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jul 25, 2006, 7:29:31 PM (18 years ago)
Author:
patrick
Message:

the proxy network interface is started

File:
1 edited

Legend:

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

    r9462 r9463  
    7777
    7878/**
    79  * get newly connected client socket. note
     79 * get newly connected socket. note
    8080 * @return new socket or NULL if no new socket exists
    81  *
    82  *  only clients connect to this socket
    8381 */
    8482NetworkSocket * UdpServerSocket::getNewSocket( void )
     
    9593  return result;
    9694}
    97 
    98 
    99 /**
    100  * get newly connected proxy socket. note
    101  * @return new socket or NULL if no new socket exists
    102  *
    103  * only proxy servers connect to this socket
    104  */
    105 NetworkSocket * UdpServerSocket::getNewProxySocket( void )
    106 {
    107   NetworkSocket * result = NULL;
    108 
    109   if ( newSocketList.size() > 0 )
    110   {
    111     result = newSocketList.front();
    112 
    113     newSocketList.pop_front();
    114   }
    115 
    116   return result;
    117 }
    118 
    11995
    12096
Note: See TracChangeset for help on using the changeset viewer.