Changeset 7688 for code/branches
- Timestamp:
- Dec 1, 2010, 2:11:44 PM (14 years ago)
- Location:
- code/branches/masterserver/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/masterserver/src/libraries/network/MasterServerProtocol.h
r7662 r7688 31 31 32 32 /* master server address (to be moved elsewhere later) */ 33 #define MS_ADDRESS "1 29.132.3.227"33 #define MS_ADDRESS "172.16.113.1" 34 34 35 35 #define MSPROTO_CLIENT "CL" -
code/branches/masterserver/src/libraries/network/WANDiscovery.cc
r7672 r7688 51 51 /* connect and see if it worked */ 52 52 if( msc.connect( MS_ADDRESS, 1234 ) ) 53 COUT(2) << "Error: could not connect to master server!\n"; 53 COUT(2) << "Error: could not connect to master server at " 54 << MS_ADDRESS << std::endl; 54 55 55 56 COUT(4) << "Initialization of WANDiscovery complete.\n"; -
code/branches/masterserver/src/modules/masterserver/MasterServer.cc
r7684 r7688 35 35 { 36 36 /* singleton stuff */ 37 //ManageScopedSingleton( MasterServer, ScopeID::Root, false );37 ManageScopedSingleton( MasterServer, ScopeID::Root, false ); 38 38 39 39 /* helpers */
Note: See TracChangeset
for help on using the changeset viewer.