Handle the pending dbus calls before termination
[platform/core/connectivity/bluetooth-frwk.git] / include / bluetooth-ipsp-api.h
index d65bbc1..aac199a 100755 (executable)
@@ -51,7 +51,7 @@ typedef struct {
 } ipsp_device_address_t;
 
 /**
- * @fn int bluetooth_le_ipsp_init(void)
+ * @fn int bluetooth_ipsp_init(void)
  *
  * @brief Initializes IPSP service and register the service to Bluez
  *
@@ -68,10 +68,10 @@ typedef struct {
  * @remark      None
  *
  */
-int bluetooth_le_ipsp_init(void);
+int bluetooth_ipsp_init(void);
 
 /**
- * @fn int bluetooth_le_ipsp_deinit(void)
+ * @fn int bluetooth_ipsp_deinit(void)
  *
  * @brief De-Initialize IPSP service and un-register the callback
  * The IPSP De-Initialize request is responded by BLUETOOTH_EVENT_IPSP_INIT_STATE_CHANGED event.
@@ -86,10 +86,10 @@ int bluetooth_le_ipsp_init(void);
  * @remark      None
  *
  */
-int bluetooth_le_ipsp_deinit(void);
+int bluetooth_ipsp_deinit(void);
 
 /**
- * @fn int bluetooth_le_ipsp_connect(const ipsp_device_address_t *device_address);
+ * @fn int bluetooth_ipsp_connect(const ipsp_device_address_t *device_address);
  *
  * @brief Connects to IPSP Router device. It establishes connection for 6Lowpan over LE.
  *
@@ -103,12 +103,12 @@ int bluetooth_le_ipsp_deinit(void);
  * @param[in]  device_address - remote device address.
  *
  * @remark     None
- * @see        bluetooth_le_ipsp_disconnect()
+ * @see        bluetooth_ipsp_disconnect()
  */
-int bluetooth_le_ipsp_connect(const ipsp_device_address_t *device_address);
+int bluetooth_ipsp_connect(const ipsp_device_address_t *device_address);
 
 /**
- * @fn int bluetooth_le_ipsp_disconnect(const ipsp_device_address_t *device_address);
+ * @fn int bluetooth_ipsp_disconnect(const ipsp_device_address_t *device_address);
  *
  * @brief Disconnects to IPSP Router device. It disconnects connection for 6Lowpan over LE.
  *
@@ -122,9 +122,9 @@ int bluetooth_le_ipsp_connect(const ipsp_device_address_t *device_address);
  * @param[in]  device_address - remote device address.
  *
  * @remark     None
- * @see        bluetooth_le_ipsp_disconnect()
+ * @see        bluetooth_ipsp_disconnect()
  */
-int bluetooth_le_ipsp_disconnect(const ipsp_device_address_t *device_address);
+int bluetooth_ipsp_disconnect(const ipsp_device_address_t *device_address);
 
 
 #ifdef __cplusplus