- Timestamp:
- Jul 13, 2009, 12:13:24 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/utility/bootstrap/modules/bluetoothsdp/BluetoothSdp.h
r4840 r4870 44 44 #include <iostream> 45 45 #include <string> 46 #include <boost/bind.hpp> 47 #include <boost/asio.hpp> 48 #include <boost/thread.hpp> 46 49 #include <boost/thread/mutex.hpp> 47 50 #include <boost/thread/thread.hpp> 48 51 #include "ariba/utility/bootstrap/modules/BootstrapModule.h" 49 52 #include "ariba/utility/logging/Logging.h" 53 54 #ifdef HAVE_BLUETOOTH_BLUETOOTH_H 55 #include <bluetooth/bluetooth.h> 56 #include <bluetooth/sdp.h> 57 #include <bluetooth/sdp_lib.h> 58 #include <bluetooth/hci.h> 59 #include <bluetooth/hci_lib.h> 60 #endif 50 61 51 62 using std::string; … … 69 80 virtual void revokeService(string name); 70 81 82 #ifdef HAVE_BLUETOOTH_BLUETOOTH_H 83 84 private: 85 void bt_scan(); 86 void sdp_search(bdaddr_t target); 87 88 sdp_session_t *sdp_session_; 89 uint8_t channel_; 90 91 #endif // HAVE_BLUETOOTH_BLUETOOTH_H 92 93 boost::asio::io_service io_service_; 94 boost::asio::deadline_timer scan_timer_; 95 boost::thread t_; 96 97 71 98 }; 72 99
Note:
See TracChangeset
for help on using the changeset viewer.