Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 9334 in orxonox.OLD for branches/proxy/src/lib/network/handshake.cc


Ignore:
Timestamp:
Jul 19, 2006, 10:29:14 PM (18 years ago)
Author:
patrick
Message:

work of the day in one commit:D

  • switched whole network framework to ip sturcture
  • extended ip structrue a little bit
  • reimplemented the disconnection/reconnection algorithm
  • synchronizeable ip bug discovered and solved
File:
1 edited

Legend:

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

    r9327 r9334  
    6363  localState.canDel = 0;
    6464  localState.redirectProxy = 0;
    65   localState.proxy1.host = 0;
    66   localState.proxy1.port = 0;
    67   localState.proxy2.host = 0;
    68   localState.proxy2.port = 0;
     65  localState.proxy1 = IP(0, 0);
     66  localState.proxy2 = IP (0, 0);
    6967
    7068
     
    8179  remoteState.canDel = 0;
    8280  remoteState.redirectProxy = 0;
    83   remoteState.proxy1.host = 0;
    84   remoteState.proxy1.port = 0;
    85   remoteState.proxy2.host = 0;
    86   remoteState.proxy2.port = 0;
     81  remoteState.proxy1 = IP(0, 0);
     82  remoteState.proxy2 = IP(0, 0);
    8783
    8884  // activate the synchronization process
Note: See TracChangeset for help on using the changeset viewer.