- Timestamp:
- May 15, 2009, 1:59:19 PM (16 years ago)
- Location:
- source/ariba
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/Node.cpp
r3374 r3578 63 63 const communication::EndpointDescriptor* ep = 64 64 ariba_mod.getBootstrapNode(vnetname); 65 if( ep == NULL ) return; 66 65 if( ep == NULL ) { 66 std::cout << "no bootstrap node defined" << std::endl; 67 return; 68 } 67 69 ariba_mod.base_comm->start(ariba_mod.ip_addr, ariba_mod.tcp_port); 68 70 base_overlay->start( *ariba_mod.base_comm, nodeId ); -
source/ariba/Node.h
r3374 r3578 49 49 50 50 #include <vector> 51 #include <iostream> 51 52 #include "Module.h" 52 53 #include "Identifiers.h" -
source/ariba/utility/system/Timer.cpp
r2467 r3578 102 102 } 103 103 104 obj->running = false; 104 if(! obj->oneshot ) 105 obj->running = false; 105 106 } 106 107 #endif // UNDERLAY_OMNET 107 108 108 109 void Timer::handleSystemEvent( const SystemEvent& event ) { 109 if( running ) 110 if( running ){ 111 if( oneshot ) running = false; 110 112 eventFunction(); 113 } 111 114 112 115 #ifdef UNDERLAY_OMNET
Note:
See TracChangeset
for help on using the changeset viewer.