Changeset 9268 in orxonox.OLD for branches/proxy/src/lib/network/handshake.h
- Timestamp:
- Jul 13, 2006, 11:32:48 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/proxy/src/lib/network/handshake.h
r9262 r9268 12 12 13 13 struct HandshakeState { 14 int orxId; 15 int version; 14 int orxId; //!< orxonox id 15 int version; //!< network protocol version 16 16 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 20 21 21 int completed; 22 int canDel; 22 int completed; //!< true if completed 23 int canDel; //!< true if marked for deletion 23 24 24 int error; 25 int error; //!< error number 25 26 26 std::string errorString; 27 std::string errorString; //!< error string 27 28 28 29 //additional data 29 std::string preferedNickName; 30 std::string preferedNickName; //!< prefered nick name 30 31 }; 31 32 … … 77 78 int msgManId_handler; //!< message manager handler 78 79 int hostId_handler; //!< host id handler 79 int serverAddressHandler; //!< server addresshandler80 int nodeTypeHandler; //!< node type handler 80 81 81 82 int completed_handler; //!< handshake completion handler … … 83 84 int errorString_handler; //!< handshake error string handler 84 85 int candel_id; //!< handshake deletion handler 86 int nodeType; //!, the type of the network node 85 87 86 88 };
Note: See TracChangeset
for help on using the changeset viewer.