summary refs log tree commit diff stats
path: root/src/fe-gtk/servlistgui.c
diff options
context:
space:
mode:
authorSoniEx2 <endermoneymod@gmail.com>2021-05-28 00:26:37 -0300
committerSoniEx2 <endermoneymod@gmail.com>2021-05-28 00:26:37 -0300
commit390240ac622ab1d81704bad694ba6187738ae9b8 (patch)
tree7c6e3c68f411fea2fe5c6f3dd31a63456db41074 /src/fe-gtk/servlistgui.c
parenta97299020b27894e3390ecc52d6f7a4e2c55d818 (diff)
Initial TLS-SRP support
Diffstat (limited to 'src/fe-gtk/servlistgui.c')
-rw-r--r--src/fe-gtk/servlistgui.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/fe-gtk/servlistgui.c b/src/fe-gtk/servlistgui.c
index b22330ac..12a33de4 100644
--- a/src/fe-gtk/servlistgui.c
+++ b/src/fe-gtk/servlistgui.c
@@ -128,6 +128,10 @@ static int login_types_conf[] =
 	LOGIN_NICKSERV,
 #ifdef USE_OPENSSL
 	LOGIN_CHALLENGEAUTH,
+#ifndef OPENSSL_NO_SRP
+	LOGIN_PAKE,
+	LOGIN_SASLPAKE,
+#endif
 #endif
 	LOGIN_CUSTOM
 #if 0
@@ -149,6 +153,10 @@ static const char *login_types[]=
 	"NickServ (/NICKSERV + password)",
 #ifdef USE_OPENSSL
 	"Challenge Auth (username + password)",
+#ifndef OPENSSL_NO_SRP
+	"PAKE (username + password)",
+	"SASL EXTERNAL+PAKE (username + password)",
+#endif
 #endif
 	"Custom... (connect commands)",
 #if 0