diff options
author | Anderson Lizardo <anderson.lizardo@openbossa.org> | 2012-02-23 11:58:27 -0400 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@intel.com> | 2012-02-23 22:40:37 +0200 |
commit | 5a878d96f94a565a1675165a0d758f4f44fc5902 (patch) | |
tree | bef1674dca3ddbd462a6830aa61e8ac68c3a77fb | |
parent | 2f3ebee35ea749e15dafd6c8a8169989a9fc8656 (diff) | |
download | bluez-5a878d96f94a565a1675165a0d758f4f44fc5902.tar.gz bluez-5a878d96f94a565a1675165a0d758f4f44fc5902.tar.xz bluez-5a878d96f94a565a1675165a0d758f4f44fc5902.zip |
mgmtops: Add SET_LE/SET_SSP command complete handling
This avoids "Unknown command complete for opcode <nn>" errors.
-rw-r--r-- | plugins/mgmtops.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/mgmtops.c b/plugins/mgmtops.c index 91b4a221..84d9adcb 100644 --- a/plugins/mgmtops.c +++ b/plugins/mgmtops.c @@ -1185,6 +1185,12 @@ static void mgmt_cmd_complete(int sk, uint16_t index, void *buf, size_t len) case MGMT_OP_SET_PAIRABLE: mgmt_new_settings(sk, index, ev->data, len); break; + case MGMT_OP_SET_SSP: + DBG("set_ssp complete"); + break; + case MGMT_OP_SET_LE: + DBG("set_le complete"); + break; case MGMT_OP_ADD_UUID: DBG("add_uuid complete"); break; |