diff --git a/android/gatt.c b/android/gatt.c
index daedbb4..ca8fd20 100644
--- a/android/gatt.c
+++ b/android/gatt.c
static void handle_server_stop_service(const void *buf, uint16_t len)
{
+ const struct hal_cmd_gatt_server_stop_service *cmd = buf;
+ struct gatt_server *server;
+ uint8_t status;
+
DBG("");
+ server = find_server_by_id(cmd->server_if);
+ if (!server) {
+ error("gatt: server_if=%d not found", cmd->server_if);
+ status = HAL_STATUS_FAILED;
+ goto failed;
+ }
+
+ status = HAL_STATUS_SUCCESS;
+
+ /* TODO: stop service in attribute database */
+ DBG("Stop service: server: %d, srvc_hnd: %d", cmd->server_if,
+ cmd->service_handle);
+
+failed:
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_GATT,
- HAL_OP_GATT_SERVER_STOP_SERVICE, HAL_STATUS_FAILED);
+ HAL_OP_GATT_SERVER_STOP_SERVICE, status);
}
static void handle_server_delete_service(const void *buf, uint16_t len)