summaryrefslogtreecommitdiff
path: root/libopie2/opiebluez/obluetooth.cpp
Unidiff
Diffstat (limited to 'libopie2/opiebluez/obluetooth.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiebluez/obluetooth.cpp57
1 files changed, 57 insertions, 0 deletions
diff --git a/libopie2/opiebluez/obluetooth.cpp b/libopie2/opiebluez/obluetooth.cpp
index c99a822..e0ba0ec 100644
--- a/libopie2/opiebluez/obluetooth.cpp
+++ b/libopie2/opiebluez/obluetooth.cpp
@@ -37,9 +37,11 @@ using namespace Opie::Core;
37#include <bluetooth/bluetooth.h> 37#include <bluetooth/bluetooth.h>
38#include <bluetooth/hci.h> 38#include <bluetooth/hci.h>
39#include <bluetooth/hci_lib.h> 39#include <bluetooth/hci_lib.h>
40#include <assert.h>
40#include <errno.h> 41#include <errno.h>
41#include <stdlib.h> 42#include <stdlib.h>
42#include <string.h> 43#include <string.h>
44#include <unistd.h>
43#include <sys/ioctl.h> 45#include <sys/ioctl.h>
44#include <sys/types.h> 46#include <sys/types.h>
45#include <sys/socket.h> 47#include <sys/socket.h>
@@ -189,6 +191,61 @@ bool OBluetoothInterface::isUp() const
189 return hci_test_bit( HCI_UP, &d->devinfo.flags ); 191 return hci_test_bit( HCI_UP, &d->devinfo.flags );
190} 192}
191 193
194OBluetoothInterface::DeviceIterator OBluetoothInterface::neighbourhood()
195{
196 _devices.clear();
197 struct hci_inquiry_req* ir;
198 int nrsp = 255;
199
200 char* mybuffer = static_cast<char*>( malloc( sizeof( *ir ) + ( sizeof( inquiry_info ) * (nrsp) ) ) );
201 assert( mybuffer );
202
203 ir = (struct hci_inquiry_req*) mybuffer;
204 memset( ir, 0, sizeof( *ir ) + ( sizeof( inquiry_info ) * (nrsp) ) );
205
206 ir->dev_id = d->devinfo.dev_id;
207 ir->num_rsp = nrsp;
208 ir->length = 8;
209 ir->flags = 0;
210 ir->lap[0] = 0x33;
211 ir->lap[1] = 0x8b;
212 ir->lap[2] = 0x9e;
213
214 int result = ::ioctl( d->ctlfd, HCIINQUIRY, mybuffer );
215 if ( result == -1 )
216 {
217 owarn << "OBluetoothInterface::neighbourhood() - can't issue HCIINQUIRY (" << strerror( errno ) << ")" << oendl;
218 return DeviceIterator( _devices );
219 }
220
221 for( int i = 0; i < ir->num_rsp; ++i )
222 {
223 odebug << "found a device" << oendl;
224 }
225
226 return DeviceIterator( _devices );
192} 227}
228
229
230/*======================================================================================
231 * OBluetoothDevice
232 *======================================================================================*/
233
234OBluetoothDevice::OBluetoothDevice( QObject* parent, const char* name )
235 :QObject( parent, name )
236{
237 odebug << "OBluetoothDevice::OBluetoothDevice() - '" << name << "'" << oendl;
238}
239
240OBluetoothDevice::~OBluetoothDevice()
241{
242 odebug << "OBluetoothDevice::~OBluetoothDevice()" << oendl;
193} 243}
194 244
245QString OBluetoothDevice::macAddress() const
246{
247 return "N/A";
248}
249
250}
251}