From 8895c577510fda22a5fe51ffdb682e4ab6f6044d Mon Sep 17 00:00:00 2001 From: Wootak Jung Date: Tue, 7 Feb 2023 11:00:14 +0900 Subject: [PATCH] Add an error enumeration for max connection Change-Id: I3e28532b8354d1d741c887f98ef72516c7955fe8 Signed-off-by: Wootak Jung --- include/bluetooth_type.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/bluetooth_type.h b/include/bluetooth_type.h index a62418a..7dd951e 100644 --- a/include/bluetooth_type.h +++ b/include/bluetooth_type.h @@ -106,6 +106,7 @@ typedef enum { BT_ERROR_AGAIN = TIZEN_ERROR_BLUETOOTH|0x010C, /**< Resource temporarily unavailable */ BT_ERROR_SERVICE_NOT_FOUND = TIZEN_ERROR_BLUETOOTH|0x010D, /**< Service Not Found */ BT_ERROR_AUTHORIZATION_REJECTED = TIZEN_ERROR_BLUETOOTH|0x010E, /**< Authorization rejected (Since 5.0) */ + BT_ERROR_MAX_CONNECTION = TIZEN_ERROR_BLUETOOTH|0x010F, /**< Max of connection exceeded (Since 7.5) */ } bt_error_e; /** -- 2.34.1