--- android/hal-pan.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/android/hal-pan.c b/android/hal-pan.c index 2bc560e..30facd4 100644 --- a/android/hal-pan.c +++ b/android/hal-pan.c @@ -77,6 +77,9 @@ static bt_status_t pan_enable(int local_role) if (!interface_ready()) return BT_STATUS_NOT_READY; + if (!(local_role == BTPAN_ROLE_PANU || local_role == BTPAN_ROLE_PANNAP)) + return BT_STATUS_UNSUPPORTED; + cmd.local_role = local_role; return hal_ipc_cmd(HAL_SERVICE_ID_PAN, HAL_OP_PAN_ENABLE, @@ -112,6 +115,14 @@ static bt_status_t pan_connect(const bt_bdaddr_t *bd_addr, int local_role, if (!interface_ready()) return BT_STATUS_NOT_READY; + if (!((local_role == BTPAN_ROLE_PANNAP && + remote_role == BTPAN_ROLE_PANU) || + (local_role == BTPAN_ROLE_PANU && + remote_role == BTPAN_ROLE_PANNAP) || + (local_role == BTPAN_ROLE_PANU && + remote_role == BTPAN_ROLE_PANU))) + return BT_STATUS_UNSUPPORTED; + memcpy(cmd.bdaddr, bd_addr, sizeof(cmd.bdaddr)); cmd.local_role = local_role; cmd.remote_role = remote_role; -- 1.8.3.2 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html