summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsrc/agent-connman.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/agent-connman.c b/src/agent-connman.c
index e4850a8f..509358c5 100755
--- a/src/agent-connman.c
+++ b/src/agent-connman.c
@@ -258,6 +258,11 @@ static void request_input_append_passphrase(DBusMessageIter *iter,
#endif
value = "psk";
break;
+#if defined TIZEN_EXT
+ case CONNMAN_SERVICE_SECURITY_SAE:
+ value = "sae";
+ break;
+#endif
case CONNMAN_SERVICE_SECURITY_8021X:
phase2 = __connman_service_get_phase2(service);
@@ -394,6 +399,11 @@ static void previous_passphrase_handler(DBusMessageIter *iter,
#endif
data.type = "psk";
break;
+#if defined TIZEN_EXT
+ case CONNMAN_SERVICE_SECURITY_SAE:
+ data.type = "sae";
+ break;
+#endif
/*
* This should never happen: no passphrase is set if security
* is not one of the above. */