From: DoHyun Pyun Date: Wed, 29 Jun 2016 06:34:09 +0000 (+0900) Subject: Move passkey reply APIs to internal header X-Git-Tag: submit/tizen/20160629.092010~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=06ca04d3b5827d12adc8fd89d9573175cfca7af2;p=platform%2Fcore%2Fapi%2Fbluetooth.git Move passkey reply APIs to internal header Change-Id: I4ffd1cbf9d70e427171f1ab28486c92e62270ebf Signed-off-by: DoHyun Pyun --- diff --git a/include/bluetooth_private.h b/include/bluetooth_private.h index 1407f6c..f0acbdf 100644 --- a/include/bluetooth_private.h +++ b/include/bluetooth_private.h @@ -674,33 +674,6 @@ int bt_adapter_set_authentication_req_cb(bt_adapter_authentication_req_cb callba */ int bt_adapter_unset_authentication_req_cb(void); -/** - * @ingroup CAPI_NETWORK_BLUETOOTH_DEVICE_MODULE - * @brief API to reply with PIN or PASSKEY with authentication type - TRUE or FALSE. - * @remarks This function can be called by application when remote device requests PIN or PASSKEY from - * local adapter. - * @param[in] passkey The passkey to be provided by application when remote devices requests for it. - * @param[in] authentication_reply This indicates whether application wants to accept or cancel the on-going pairing - * @pre This function can only be called when application receieves authentication event (BT_AUTH_PIN_REQUEST) - * from remote device. - * @see bt_adapter_set_authentication_req_cb() - */ -int bt_passkey_reply(char *passkey, bool authentication_reply); - -/** - * @ingroup CAPI_NETWORK_BLUETOOTH_DEVICE_MODULE - * @brief API to reply to the PASSKEY confirmation for on-going pairing with remote device. - * @remarks This function can be called by application, when local adapter wants PASSKEY confirmation from user. - * @param[in] confirmation_reply This indicates whether application wants to accepts or cancels the on-going pairing - * confirmation_reply : TRUE will indicate that Application has confirmed the PASSKEY - * confirmation_reply : FALSE will indicate that Application has failed to confirm the PASSKEY. In this situation - * the pairing will be failed. - * @pre This function can only be called when application receives authentication event (BT_AUTH_PASSKEY_CONFIRM_REQUEST) - * from remote device. - * @see bt_adapter_set_authentication_req_cb() - */ -int bt_passkey_confirmation_reply(bool confirmation_reply); - #ifdef __cplusplus } #endif diff --git a/include/mobile/bluetooth_internal.h b/include/mobile/bluetooth_internal.h index 2fd346b..f2311f4 100644 --- a/include/mobile/bluetooth_internal.h +++ b/include/mobile/bluetooth_internal.h @@ -3017,6 +3017,33 @@ int bt_dpm_set_data_transfer_state(bt_dpm_status_e value); */ int bt_dpm_get_data_transfer_state(bt_dpm_status_e *value); +/** + * @ingroup CAPI_NETWORK_BLUETOOTH_DEVICE_MODULE + * @brief API to reply with PIN or PASSKEY with authentication type - TRUE or FALSE. + * @remarks This function can be called by application when remote device requests PIN or PASSKEY from + * local adapter. + * @param[in] passkey The passkey to be provided by application when remote devices requests for it. + * @param[in] authentication_reply This indicates whether application wants to accept or cancel the on-going pairing + * @pre This function can only be called when application receieves authentication event (BT_AUTH_PIN_REQUEST) + * from remote device. + * @see bt_adapter_set_authentication_req_cb() + */ +int bt_passkey_reply(char *passkey, bool authentication_reply); + +/** + * @ingroup CAPI_NETWORK_BLUETOOTH_DEVICE_MODULE + * @brief API to reply to the PASSKEY confirmation for on-going pairing with remote device. + * @remarks This function can be called by application, when local adapter wants PASSKEY confirmation from user. + * @param[in] confirmation_reply This indicates whether application wants to accepts or cancels the on-going pairing + * confirmation_reply : TRUE will indicate that Application has confirmed the PASSKEY + * confirmation_reply : FALSE will indicate that Application has failed to confirm the PASSKEY. In this situation + * the pairing will be failed. + * @pre This function can only be called when application receives authentication event (BT_AUTH_PASSKEY_CONFIRM_REQUEST) + * from remote device. + * @see bt_adapter_set_authentication_req_cb() + */ +int bt_passkey_confirmation_reply(bool confirmation_reply); + /** * @} */ diff --git a/include/tv/bluetooth_internal.h b/include/tv/bluetooth_internal.h index ce3ba68..283ebb7 100644 --- a/include/tv/bluetooth_internal.h +++ b/include/tv/bluetooth_internal.h @@ -3018,6 +3018,33 @@ int bt_dpm_set_data_transfer_state(bt_dpm_status_e value); */ int bt_dpm_get_data_transfer_state(bt_dpm_status_e *value); +/** + * @ingroup CAPI_NETWORK_BLUETOOTH_DEVICE_MODULE + * @brief API to reply with PIN or PASSKEY with authentication type - TRUE or FALSE. + * @remarks This function can be called by application when remote device requests PIN or PASSKEY from + * local adapter. + * @param[in] passkey The passkey to be provided by application when remote devices requests for it. + * @param[in] authentication_reply This indicates whether application wants to accept or cancel the on-going pairing + * @pre This function can only be called when application receieves authentication event (BT_AUTH_PIN_REQUEST) + * from remote device. + * @see bt_adapter_set_authentication_req_cb() + */ +int bt_passkey_reply(char *passkey, bool authentication_reply); + +/** + * @ingroup CAPI_NETWORK_BLUETOOTH_DEVICE_MODULE + * @brief API to reply to the PASSKEY confirmation for on-going pairing with remote device. + * @remarks This function can be called by application, when local adapter wants PASSKEY confirmation from user. + * @param[in] confirmation_reply This indicates whether application wants to accepts or cancels the on-going pairing + * confirmation_reply : TRUE will indicate that Application has confirmed the PASSKEY + * confirmation_reply : FALSE will indicate that Application has failed to confirm the PASSKEY. In this situation + * the pairing will be failed. + * @pre This function can only be called when application receives authentication event (BT_AUTH_PASSKEY_CONFIRM_REQUEST) + * from remote device. + * @see bt_adapter_set_authentication_req_cb() + */ +int bt_passkey_confirmation_reply(bool confirmation_reply); + /** * @} */ diff --git a/include/wearable/bluetooth_internal.h b/include/wearable/bluetooth_internal.h index 72d23a3..da17c82 100644 --- a/include/wearable/bluetooth_internal.h +++ b/include/wearable/bluetooth_internal.h @@ -3165,6 +3165,33 @@ int bt_dpm_set_data_transfer_state(bt_dpm_status_e value); */ int bt_dpm_get_data_transfer_state(bt_dpm_status_e *value); +/** + * @ingroup CAPI_NETWORK_BLUETOOTH_DEVICE_MODULE + * @brief API to reply with PIN or PASSKEY with authentication type - TRUE or FALSE. + * @remarks This function can be called by application when remote device requests PIN or PASSKEY from + * local adapter. + * @param[in] passkey The passkey to be provided by application when remote devices requests for it. + * @param[in] authentication_reply This indicates whether application wants to accept or cancel the on-going pairing + * @pre This function can only be called when application receieves authentication event (BT_AUTH_PIN_REQUEST) + * from remote device. + * @see bt_adapter_set_authentication_req_cb() + */ +int bt_passkey_reply(char *passkey, bool authentication_reply); + +/** + * @ingroup CAPI_NETWORK_BLUETOOTH_DEVICE_MODULE + * @brief API to reply to the PASSKEY confirmation for on-going pairing with remote device. + * @remarks This function can be called by application, when local adapter wants PASSKEY confirmation from user. + * @param[in] confirmation_reply This indicates whether application wants to accepts or cancels the on-going pairing + * confirmation_reply : TRUE will indicate that Application has confirmed the PASSKEY + * confirmation_reply : FALSE will indicate that Application has failed to confirm the PASSKEY. In this situation + * the pairing will be failed. + * @pre This function can only be called when application receives authentication event (BT_AUTH_PASSKEY_CONFIRM_REQUEST) + * from remote device. + * @see bt_adapter_set_authentication_req_cb() + */ +int bt_passkey_confirmation_reply(bool confirmation_reply); + /** * @} */