Changeset 6832 for source/ariba/overlay
- Timestamp:
- Nov 5, 2009, 9:03:35 AM (15 years ago)
- Location:
- source/ariba/overlay
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/overlay/BaseOverlay.cpp
r6824 r6832 509 509 if (destination == nodeId) { 510 510 logging_warn("Sent message to myself. Handling message.") 511 511 Message msg; 512 512 msg.encapsulate(message); 513 513 handleMessage( &msg, NULL ); … … 819 819 820 820 // bootstrap against ourselfs 821 logging_ debug("joining spovnet locally");821 logging_info("joining spovnet locally"); 822 822 823 823 overlayInterface->joinOverlay(); … … 836 836 837 837 // bootstrap against another node 838 logging_ debug("joining spovnet remotely against " << bootstrapEp.toString());838 logging_info("joining spovnet remotely against " << bootstrapEp.toString()); 839 839 840 840 const LinkID& lnk = bc->establishLink( bootstrapEp ); -
source/ariba/overlay/OverlayBootstrap.cpp
r6211 r6832 76 76 //manager.registerModule( BootstrapManager::BootstrapTypePeriodicBroadcast ); 77 77 //manager.registerModule( BootstrapManager::BootstrapTypeBluetoothSdp ); 78 manager.registerModule( BootstrapManager::BootstrapTypeMulticastDns );78 //manager.registerModule( BootstrapManager::BootstrapTypeMulticastDns ); 79 79 80 80 watchtimer.startWatchdog(); … … 91 91 //manager.unregisterModule( BootstrapManager::BootstrapTypePeriodicBroadcast ); 92 92 //manager.unregisterModule( BootstrapManager::BootstrapTypeBluetoothSdp ); 93 manager.unregisterModule( BootstrapManager::BootstrapTypeMulticastDns );93 //manager.unregisterModule( BootstrapManager::BootstrapTypeMulticastDns ); 94 94 95 95 watchtimer.stopWatchdog(); -
source/ariba/overlay/modules/chord/Chord.cpp
r6266 r6832 251 251 << " with link " << lnk.toString()); 252 252 // replace with new link 253 if ( !item->info.isUnspecified() || item->info!=lnk)253 if (item->info!=lnk && item->info.isUnspecified()==false) 254 254 baseoverlay.dropLink(item->info); 255 255 item->info = lnk;
Note:
See TracChangeset
for help on using the changeset viewer.