Changeset 4836 for source/ariba/overlay
- Timestamp:
- Jul 9, 2009, 1:50:37 PM (15 years ago)
- Location:
- source/ariba/overlay
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/overlay/BaseOverlay.cpp
r4762 r4836 112 112 " with nodeid " << nodeId.toString()); 113 113 114 spovnetId = id; 115 state = BaseOverlayStateJoinInitiated; 116 117 118 // 119 // start bootstrapping for spovnetid 120 // 121 122 overlayBootstrap.start( this, spovnetId, nodeId ); 123 overlayBootstrap.publish( bc->getEndpointDescriptor() ); 124 114 125 // 115 126 // contact the spovnet initiator and request … … 120 131 // but first, we have to establish a link to the initiator... 121 132 // 122 123 spovnetId = id;124 state = BaseOverlayStateJoinInitiated;125 133 126 134 initiatorLink = bc->establishLink( bootstrapEp ); -
source/ariba/overlay/BaseOverlay.h
r3712 r4836 63 63 #include "ariba/overlay/modules/OverlayFactory.h" 64 64 #include "ariba/overlay/modules/OverlayStructureEvents.h" 65 #include "ariba/overlay/OverlayBootstrap.h" 65 66 66 67 // forward declarations 67 68 namespace ariba { 68 class NodeListener;69 class CommunicationListener;70 class SideportListener;71 namespace utility {72 class OvlVis;73 }69 class NodeListener; 70 class CommunicationListener; 71 class SideportListener; 72 namespace utility { 73 class OvlVis; 74 } 74 75 } 75 76 … … 83 84 using std::deque; 84 85 86 // ariba interface 85 87 using ariba::NodeListener; 86 88 using ariba::CommunicationListener; 89 90 // overlay 91 using ariba::overlay::OverlayBootstrap; 87 92 88 93 // communication … … 497 502 JoiningNodes joiningNodes; 498 503 504 /** 505 * Bootstrapper for our spovnet 506 */ 507 OverlayBootstrap overlayBootstrap; 499 508 }; 500 509
Note:
See TracChangeset
for help on using the changeset viewer.