Changeset 4625
- Timestamp:
- Jun 30, 2009, 8:00:52 AM (15 years ago)
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
sample/pingpong/PingPongMessage.h
r4618 r4625 18 18 public: 19 19 PingPongMessage(); 20 PingPongMessage( uint 16_t _id );20 PingPongMessage( uint8_t _id ); 21 21 virtual ~PingPongMessage(); 22 22 23 23 string info(); 24 uint 16_t getid();24 uint8_t getid(); 25 25 private: 26 uint 16_t id; //TODO: was uint8_t26 uint8_t id; 27 27 }; 28 28 -
source/ariba/communication/EndpointDescriptor.h
r4618 r4625 100 100 101 101 sznBeginDefault( ariba::communication::EndpointDescriptor, X ) { 102 uint 16_t unspec = isUnspec; //TODO: was uint8_t102 uint8_t unspec = isUnspec; 103 103 104 104 X && unspec && VO(locator); -
source/ariba/communication/messages/AribaBaseMsg.h
r4621 r4625 85 85 86 86 private: 87 uint8_t state; // the link message type //TODO: was uint8_t87 uint8_t state; // the link message type 88 88 LinkID localLink; // the local link id 89 89 LinkID remoteLink; // the remote link id -
source/ariba/overlay/messages/LinkRequest.h
r4618 r4625 24 24 private: 25 25 bool free_endpoint_; 26 uint 16_t flags; //TODO: was uint8_t26 uint8_t flags; 27 27 uint32_t nonce; 28 28 const EndpointDescriptor* endpoint; -
source/ariba/overlay/messages/OverlayMsg.h
r4618 r4625 90 90 91 91 private: 92 uint 16_t type; //TODO: was uint8_t92 uint8_t type; 93 93 ServiceID service; 94 94 NodeID sourceNode; -
source/ariba/overlay/modules/chord/messages/ChordMessage.h
r4618 r4625 97 97 98 98 private: 99 uint 16_t type; //TODO: was uint8_t100 uint 16_t hop_count; //TODO: was uint8_t99 uint8_t type; 100 uint8_t hop_count; 101 101 NodeID source, destination; 102 102 }; -
source/ariba/overlay/modules/chord/messages/Discovery.h
r4618 r4625 108 108 109 109 private: 110 uint 16_t follow_type; //TODO: was uint8_t111 uint 16_t ttl; //TODO: was uint8_t110 uint8_t follow_type; 111 uint8_t ttl; 112 112 EndpointDescriptor* source_endpoint; 113 113 // NodeEndpointList descriptors; -
source/ariba/overlay/modules/onehop/messages/OneHopMessage.h
r4618 r4625 68 68 69 69 private: 70 uint 16_t type; // TODO: was uint8_t70 uint8_t type; 71 71 }; 72 72 -
source/ariba/utility/types/Identifier.h
r4618 r4625 572 572 // calculate length of key 573 573 uint16_t len = array_size*sizeof(mp_limb_t); 574 uint 16_t unspec = isUnspec; //TODO: was uint8_t574 uint8_t unspec = isUnspec; 575 575 576 576 // only serialize the lower 16 bits of keyLength -
source/ariba/utility/types/OverlayParameterSet.h
r4618 r4625 64 64 65 65 private: 66 uint 16_t structure; //TODO: was uint8_t66 uint8_t structure; 67 67 68 68 };
Note:
See TracChangeset
for help on using the changeset viewer.