Changeset 7857 in orxonox.OLD for branches/network/src/subprojects
- Timestamp:
- May 25, 2006, 3:58:07 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.