Changeset 5953 for source/ariba/utility/bootstrap
- Timestamp:
- Aug 14, 2009, 2:17:07 PM (15 years ago)
- Location:
- source/ariba/utility/bootstrap
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/utility/bootstrap/BootstrapManager.cpp
r4879 r5953 97 97 } 98 98 99 bool BootstrapManager::isModuleRegistered(BootstrapType type){ 100 boost::mutex::scoped_lock lock( modulesMutex ); 101 102 ModuleMap::iterator i = modules.find(type); 103 return (i != modules.end()); 104 } 105 99 106 BootstrapManager::RegistrationResult BootstrapManager::unregisterModule( 100 107 BootstrapManager::BootstrapType type){ -
source/ariba/utility/bootstrap/BootstrapManager.h
r4879 r5953 88 88 RegistrationResult unregisterAllModules(); 89 89 RegistrationResult unregisterModule(BootstrapType type); 90 bool isModuleRegistered(BootstrapType type); 90 91 91 92 void registerCallback(BootstrapInformationCallback* _callback); -
source/ariba/utility/bootstrap/modules/bluetoothsdp/BluetoothSdp.cpp
r5649 r5953 258 258 // 259 259 260 if(!haveConnections()){260 //if(!haveConnections()){ 261 261 262 262 /* … … 304 304 close(sock); 305 305 306 } else {307 logging_debug("have active rfcomm connectinos, not searching");308 }309 310 int nextscan = (rand() % 30) + 5;306 //} else { 307 //logging_debug("have active rfcomm connections, not searching"); 308 //} 309 310 int nextscan = (rand() % 5) + 3; 311 311 logging_debug("next sdp scan try in " << nextscan << " seconds"); 312 312
Note:
See TracChangeset
for help on using the changeset viewer.