Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 9268 in orxonox.OLD for branches/proxy/src/lib/network/handshake.h


Ignore:
Timestamp:
Jul 13, 2006, 11:32:48 AM (18 years ago)
Author:
patrick
Message:

extending handshake for node type exchange

File:
1 edited

Legend:

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

    r9262 r9268  
    1212
    1313struct HandshakeState {
    14   int orxId;
    15   int version;
     14  int orxId;                         //!< orxonox id
     15  int version;                       //!< network protocol version
    1616
    17   int networkManagerId;
    18   int messageManagerId;
    19   int hostId;
     17  int networkManagerId;              //!< unique id of the network manager
     18  int messageManagerId;              //!< unique id of the message manager
     19  int hostId;                        //!< host id
     20  int nodeType;                      //!< type of the network node
    2021
    21   int completed;
    22   int canDel;
     22  int completed;                     //!< true if completed
     23  int canDel;                        //!< true if marked for deletion
    2324
    24   int error;
     25  int error;                         //!< error number
    2526
    26   std::string errorString;
     27  std::string errorString;           //!< error string
    2728
    2829  //additional data
    29   std::string preferedNickName;
     30  std::string preferedNickName;      //!< prefered nick name
    3031};
    3132
     
    7778    int                msgManId_handler;                      //!< message manager handler
    7879    int                hostId_handler;                        //!< host id handler
    79     int                serverAddressHandler;                  //!< server address handler
     80    int                nodeTypeHandler;                       //!< node type handler
    8081
    8182    int                completed_handler;                     //!< handshake completion handler
     
    8384    int                errorString_handler;                   //!< handshake error string handler
    8485    int                candel_id;                             //!< handshake deletion handler
     86    int                nodeType;                              //!, the type of the network node
    8587
    8688};
Note: See TracChangeset for help on using the changeset viewer.