Changeset 6832 for source/ariba/overlay


Ignore:
Timestamp:
Nov 5, 2009, 9:03:35 AM (14 years ago)
Author:
Christoph Mayer
Message:

-kleine fixes

Location:
source/ariba/overlay
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • source/ariba/overlay/BaseOverlay.cpp

    r6824 r6832  
    509509        if (destination == nodeId) {
    510510                logging_warn("Sent message to myself. Handling message.")
    511                                 Message msg;
     511                Message msg;
    512512                msg.encapsulate(message);
    513513                handleMessage( &msg, NULL );
     
    819819
    820820                // bootstrap against ourselfs
    821                 logging_debug("joining spovnet locally");
     821                logging_info("joining spovnet locally");
    822822
    823823                overlayInterface->joinOverlay();
     
    836836
    837837                // bootstrap against another node
    838                 logging_debug("joining spovnet remotely against " << bootstrapEp.toString());
     838                logging_info("joining spovnet remotely against " << bootstrapEp.toString());
    839839
    840840                const LinkID& lnk = bc->establishLink( bootstrapEp );
  • source/ariba/overlay/OverlayBootstrap.cpp

    r6211 r6832  
    7676        //manager.registerModule( BootstrapManager::BootstrapTypePeriodicBroadcast );
    7777        //manager.registerModule( BootstrapManager::BootstrapTypeBluetoothSdp );
    78         manager.registerModule( BootstrapManager::BootstrapTypeMulticastDns );
     78        //manager.registerModule( BootstrapManager::BootstrapTypeMulticastDns );
    7979
    8080        watchtimer.startWatchdog();
     
    9191        //manager.unregisterModule( BootstrapManager::BootstrapTypePeriodicBroadcast );
    9292        //manager.unregisterModule( BootstrapManager::BootstrapTypeBluetoothSdp );
    93         manager.unregisterModule( BootstrapManager::BootstrapTypeMulticastDns );
     93        //manager.unregisterModule( BootstrapManager::BootstrapTypeMulticastDns );
    9494
    9595        watchtimer.stopWatchdog();
  • source/ariba/overlay/modules/chord/Chord.cpp

    r6266 r6832  
    251251                                << " with link " << lnk.toString());
    252252                // replace with new link
    253                 if (!item->info.isUnspecified() || item->info!=lnk)
     253                if (item->info!=lnk && item->info.isUnspecified()==false)
    254254                        baseoverlay.dropLink(item->info);
    255255                item->info = lnk;
Note: See TracChangeset for help on using the changeset viewer.