- Timestamp:
- May 25, 2006, 3:58:07 PM (18 years ago)
- Location:
- branches/network/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/lib/network/udp_server_socket.cc
r7854 r7857 251 251 if ( userId >= userList.size() ) 252 252 { 253 254 // first packet of client has size 0. else it is an old one or the first packet was lost255 assert( packet->len == 0 );256 253 257 254 newConn++; -
branches/network/src/subprojects/network/network_unit_test.cc
r7748 r7857 300 300 netMan->initialize(); 301 301 302 303 304 netMan->establishConnection("localhost", 9999); 302 std::string host; 303 304 if ( argc > 2 ) 305 host = argv[1]; 306 else 307 host = "localhost"; 308 309 netMan->establishConnection(host, 9999); 305 310 306 311 // SimpleSync* ss = new SimpleSync("SimpleSync");
Note: See TracChangeset
for help on using the changeset viewer.