diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2008-06-11 01:46:01 +0000 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2008-06-11 01:46:01 +0000 |
commit | 0b850e269ad6ca4a17e5177928a4e17c14b293ad (patch) | |
tree | 76e6d8b14b3f369c6eea64fdfcac22ba0bd422f3 /hcid/dbus-hci.c | |
parent | a6f07d2bf12942854072c37c3c42d7447921beee (diff) |
Parse the IO capa response event
Diffstat (limited to 'hcid/dbus-hci.c')
-rw-r--r-- | hcid/dbus-hci.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/hcid/dbus-hci.c b/hcid/dbus-hci.c index c7be87e3..106660a2 100644 --- a/hcid/dbus-hci.c +++ b/hcid/dbus-hci.c @@ -2435,8 +2435,8 @@ void hcid_dbus_pin_code_reply(bdaddr_t *local, void *ptr) } } -int hcid_dbus_get_io_cap(bdaddr_t *local, bdaddr_t *remote, uint8_t *cap, - uint8_t *auth) +int hcid_dbus_get_io_cap(bdaddr_t *local, bdaddr_t *remote, + uint8_t *cap, uint8_t *auth) { struct adapter *adapter; struct device *device; @@ -2478,6 +2478,12 @@ int hcid_dbus_get_io_cap(bdaddr_t *local, bdaddr_t *remote, uint8_t *cap, return 0; } +int hcid_dbus_set_io_cap(bdaddr_t *local, bdaddr_t *remote, + uint8_t cap, uint8_t auth) +{ + return 0; +} + static int inquiry_cancel(int dd, int to) { struct hci_request rq; |