Changeset 5624 for source/ariba/overlay/modules/chord
- Timestamp:
- Aug 3, 2009, 2:29:12 PM (15 years ago)
- Location:
- source/ariba/overlay/modules/chord
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/overlay/modules/chord/Chord.cpp
r5555 r5624 133 133 const EndpointDescriptor& Chord::resolveNode(const NodeID& node) { 134 134 const route_item* item = table->get(node); 135 if (item == NULL || item->info.isUnspecified()) return EndpointDescriptor::UNSPECIFIED ;135 if (item == NULL || item->info.isUnspecified()) return EndpointDescriptor::UNSPECIFIED(); 136 136 return baseoverlay.getEndpointDescriptor(item->info); 137 137 } -
source/ariba/overlay/modules/chord/Chord.h
r5316 r5624 104 104 /// @see OverlayInterface.h 105 105 virtual void joinOverlay( 106 const EndpointDescriptor& boot = EndpointDescriptor::UNSPECIFIED 106 const EndpointDescriptor& boot = EndpointDescriptor::UNSPECIFIED() 107 107 ); 108 108
Note:
See TracChangeset
for help on using the changeset viewer.