Ignore:
Timestamp:
Jul 13, 2009, 5:41:44 PM (15 years ago)
Author:
Christoph Mayer
Message:

bluetooth zeugs leicht gefixt

File:
1 edited

Legend:

Unmodified
Added
Removed
  • source/ariba/utility/bootstrap/BootstrapManager.cpp

    r4850 r4879  
    4141#include "ariba/utility/bootstrap/modules/multicastdns/MulticastDns.h"
    4242#include "ariba/utility/bootstrap/modules/periodicbroadcast/PeriodicBroadcast.h"
     43#include "ariba/utility/bootstrap/modules/bluetoothsdp/BluetoothSdp.h"
    4344
    4445namespace ariba {
     
    7273                module = new PeriodicBroadcast(this);
    7374                break;
     75        case BootstrapTypeBluetoothSdp:
     76                module = new BluetoothSdp(this);
     77                break;
    7478        }
    7579
     
    130134        }
    131135
     136        { // bluetooth sdp
     137                        RegistrationResult resone = RegistrationSucceeded;
     138                        resone = registerModule(BootstrapTypeBluetoothSdp);
     139
     140                        if(resone != RegistrationSucceeded)
     141                                result = resone;
     142                }
     143
    132144        { // todo
    133145                /*  ...   */
     
    140152        unregisterModule(BootstrapTypeMulticastDns);
    141153        unregisterModule(BootstrapTypePeriodicBroadcast);
     154        unregisterModule(BootstrapTypeBluetoothSdp);
    142155        /*  todo  ...  */
    143156
Note: See TracChangeset for help on using the changeset viewer.