Changeset 4618 for source/ariba/communication
- Timestamp:
- Jun 29, 2009, 4:49:46 PM (15 years ago)
- Location:
- source/ariba/communication
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/communication/EndpointDescriptor.h
r3705 r4618 100 100 101 101 sznBeginDefault( ariba::communication::EndpointDescriptor, X ) { 102 uint 8_t unspec = isUnspec;102 uint16_t unspec = isUnspec; //TODO: was uint8_t 103 103 104 104 X && unspec && VO(locator); -
source/ariba/communication/messages/AribaBaseMsg.h
r4617 r4618 85 85 86 86 private: 87 uint 8_t state; // the link message type87 uint16_t state; // the link message type //TODO: was uint8_t 88 88 LinkID localLink; // the local link id 89 89 LinkID remoteLink; // the remote link id … … 94 94 95 95 sznBeginDefault( ariba::communication::AribaBaseMsg, X ) { 96 uint8_t x = 0xff; 97 X && state && x && &localLink && &remoteLink && Payload(); 96 X && state && &localLink && &remoteLink && Payload(); 98 97 } sznEnd(); 99 98 -
source/ariba/communication/modules/transport/tcp/TCPTransport.cpp
r4598 r4618 203 203 // converting message 204 204 logging_debug( "converting message" ); 205 206 207 std::cout << "XXXXXXXXXXXXreceived data on tcp transport: " << data << std::endl; 208 209 205 //std::cout << "XXXXXXXXXXXXreceived data on tcp transport: " << data << std::endl; 210 206 Message* msg = new Message(data); 207 211 208 std::ostringstream o; 212 209 o << (peer->get_ip_str() + 7) << ":" << remotePort; … … 243 240 244 241 Data data = data_serialize( message ); 245 246 247 std::cout << "XXXXXXXXXXXXXsending out data using tcp transport: " << data << std::endl; 248 249 250 242 //std::cout << "XXXXXXXXXXXXXsending out data using tcp transport: " << data << std::endl; 251 243 252 244 const_cast<Message*>(message)->dropPayload();
Note:
See TracChangeset
for help on using the changeset viewer.