Changeset 5344
- Timestamp:
- Jul 26, 2009, 3:32:49 PM (15 years ago)
- Location:
- source/ariba
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/overlay/OverlayBootstrap.cpp
r5316 r5344 64 64 65 65 manager.registerCallback( this ); 66 manager.registerModule( BootstrapManager::BootstrapTypePeriodicBroadcast );67 //manager.registerModule( BootstrapManager::BootstrapTypeBluetoothSdp );66 //manager.registerModule( BootstrapManager::BootstrapTypePeriodicBroadcast ); 67 manager.registerModule( BootstrapManager::BootstrapTypeBluetoothSdp ); 68 68 } 69 69 … … 76 76 77 77 manager.unregisterCallback( this ); 78 manager.unregisterModule( BootstrapManager::BootstrapTypePeriodicBroadcast );79 //manager.unregisterModule( BootstrapManager::BootstrapTypeBluetoothSdp );78 //manager.unregisterModule( BootstrapManager::BootstrapTypePeriodicBroadcast ); 79 manager.unregisterModule( BootstrapManager::BootstrapTypeBluetoothSdp ); 80 80 } 81 81 -
source/ariba/utility/bootstrap/modules/bluetoothsdp/BluetoothSdp.cpp
r5316 r5344 320 320 // connect to the SDP server running on the remote machine 321 321 logging_debug("querying services from bt device " << ba2string(&target)); 322 session = sdp_connect(BDADDR_ANY, &target, 0);322 session = sdp_connect(BDADDR_ANY, &target, SDP_RETRY_IF_BUSY); 323 323 324 324 if (session == NULL) { -
source/ariba/utility/system/StartupWrapper.cpp
r5316 r5344 107 107 } 108 108 { 109 // log4cxx::LoggerPtr logger(log4cxx::Logger::getLogger("BaseCommunication")); 110 // logger->setLevel(log4cxx::Level::getError()); 109 log4cxx::LoggerPtr logger(log4cxx::Logger::getLogger("BaseCommunication")); 110 logger->setLevel(log4cxx::Level::getDebug()); 111 } 112 { 113 log4cxx::LoggerPtr logger(log4cxx::Logger::getLogger("OverlayBootstrap")); 114 logger->setLevel(log4cxx::Level::getDebug()); 115 } 116 { 117 log4cxx::LoggerPtr logger(log4cxx::Logger::getLogger("BootstrapManager")); 118 logger->setLevel(log4cxx::Level::getDebug()); 119 } 120 { 121 log4cxx::LoggerPtr logger(log4cxx::Logger::getLogger("BluetoothSdp")); 122 logger->setLevel(log4cxx::Level::getDebug()); 111 123 } 112 124
Note:
See TracChangeset
for help on using the changeset viewer.