Changeset 5624 for source/ariba/overlay/modules
- Timestamp:
- Aug 3, 2009, 2:29:12 PM (15 years ago)
- Location:
- source/ariba/overlay/modules
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/overlay/modules/OverlayInterface.h
r5316 r5624 103 103 * end-point, if this node is the initiator 104 104 */ 105 virtual void joinOverlay(const EndpointDescriptor& bootstrap = 106 EndpointDescriptor::UNSPECIFIED ) = 0; 105 virtual void joinOverlay(const EndpointDescriptor& bootstrap = EndpointDescriptor::UNSPECIFIED()) = 0; 107 106 108 107 /** -
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 -
source/ariba/overlay/modules/onehop/OneHop.cpp
r5316 r5624 71 71 72 72 OverlayNodeMapping::const_iterator i = overlayNodes.find( node ); 73 if (i == overlayNodes.end()) return EndpointDescriptor::UNSPECIFIED ;73 if (i == overlayNodes.end()) return EndpointDescriptor::UNSPECIFIED(); 74 74 75 75 const EndpointDescriptor& ep = baseoverlay.getEndpointDescriptor( i->second ); -
source/ariba/overlay/modules/onehop/OneHop.h
r5316 r5624 72 72 /// @see OverlayInterface.h 73 73 virtual void joinOverlay(const EndpointDescriptor& boot = 74 EndpointDescriptor::UNSPECIFIED );74 EndpointDescriptor::UNSPECIFIED()); 75 75 76 76 /// @see OverlayInterface.h
Note:
See TracChangeset
for help on using the changeset viewer.