Changeset 3713 for source/ariba/overlay
- Timestamp:
- May 26, 2009, 8:43:30 PM (16 years ago)
- Location:
- source/ariba/overlay
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/overlay/BaseOverlay.cpp
r3712 r3713 320 320 if( i->second.autolink ){ 321 321 logging_info( "auto link " << link.toString() << " is not up yet, queueing message" ); 322 i->second.waitingmsg.push_back( new Message(*message) ); 322 Data data = data_serialize( message ); 323 const_cast<Message*>(message)->dropPayload(); 324 i->second.waitingmsg.push_back( new Message(data) ); 323 325 } else { 324 326 logging_error("link " << link.toString() << " is not up yet, dropping message" ); -
source/ariba/overlay/modules/chord/Chord.cpp
r3709 r3713 161 161 remote.toString() ); 162 162 route_item* item = table->insert(remote); 163 164 163 165 164 // item added to routing table?
Note:
See TracChangeset
for help on using the changeset viewer.