Changeset 9296 in orxonox.OLD for branches/proxy/src/lib/network/handshake.cc
- Timestamp:
- Jul 14, 2006, 3:01:37 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/proxy/src/lib/network/handshake.cc
r9295 r9296 47 47 registerVar( new SynchronizeableString( &localState.preferedNickName, &remoteState.preferedNickName, "preferedNickName", PERMISSION_ALL ) ); 48 48 registerVar( new SynchronizeableIP( &localState.proxy1, &remoteState.proxy1, "proxy server 1", PERMISSION_ALL ) ); 49 registerVar( new SynchronizeableIP( &localState.proxy2, &remoteState.proxy1, "proxy server 2", PERMISSION_ALL ) ); 49 50 50 51 // init the local state … … 59 60 localState.nodeType = nodeType; 60 61 localState.canDel = 0; 62 localState.redirectProxy = 0; 61 63 62 64 remoteState.completed = 0; … … 70 72 remoteState.nodeType = NET_CLIENT; 71 73 remoteState.canDel = 0; 74 remoteState.redirectProxy = 0; 72 75 73 76 // activate the synchronization process … … 75 78 PRINTF(0)("Handshake created clientId = %d\n", clientId); 76 79 } 80 77 81 78 82 /** … … 125 129 } 126 130 127 128 131 // cancel 129 132 if ( *it == candel_id )
Note: See TracChangeset
for help on using the changeset viewer.