From 3d1ef71470acc6404c013d41562c429b8c3d3df6 Mon Sep 17 00:00:00 2001 From: gichan2-jang Date: Fri, 6 Sep 2024 10:06:25 +0900 Subject: [PATCH] [Edge] Remove AITT support Remove AITT connection since AITT has been deprecated. Signed-off-by: gichan2-jang --- c/src/ml-api-service-offloading.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/c/src/ml-api-service-offloading.c b/c/src/ml-api-service-offloading.c index 902d0c40..1360b79b 100644 --- a/c/src/ml-api-service-offloading.c +++ b/c/src/ml-api-service-offloading.c @@ -99,8 +99,6 @@ _mlrs_get_conn_type (const gchar * value) conn_type = NNS_EDGE_CONNECT_TYPE_HYBRID; else if (0 == g_ascii_strcasecmp (value, "MQTT")) conn_type = NNS_EDGE_CONNECT_TYPE_MQTT; - else if (0 == g_ascii_strcasecmp (value, "AITT")) - conn_type = NNS_EDGE_CONNECT_TYPE_AITT; else conn_type = NNS_EDGE_CONNECT_TYPE_UNKNOWN;