Changeset 7532 for source/ariba/utility/bootstrap/BootstrapManager.cpp
- Timestamp:
- Feb 4, 2010, 5:29:37 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/utility/bootstrap/BootstrapManager.cpp
r5953 r7532 54 54 } 55 55 56 BootstrapManager::RegistrationResult BootstrapManager::registerModule(BootstrapManager::BootstrapType type){ 56 BootstrapManager::RegistrationResult BootstrapManager::registerModule( 57 BootstrapManager::BootstrapType type, string info){ 57 58 58 59 boost::mutex::scoped_lock lock( modulesMutex ); … … 68 69 switch(type){ 69 70 case BootstrapTypeMulticastDns: 70 module = new MulticastDns(this );71 module = new MulticastDns(this, info); 71 72 break; 72 73 case BootstrapTypePeriodicBroadcast: 73 module = new PeriodicBroadcast(this );74 module = new PeriodicBroadcast(this, info); 74 75 break; 75 76 case BootstrapTypeBluetoothSdp: 76 module = new BluetoothSdp(this );77 module = new BluetoothSdp(this, info); 77 78 break; 78 79 }
Note:
See TracChangeset
for help on using the changeset viewer.