summaryrefslogtreecommitdiff
path: root/src/rda.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/rda.c')
-rw-r--r--src/rda.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/rda.c b/src/rda.c
index 0fb0e0b..6582b8c 100644
--- a/src/rda.c
+++ b/src/rda.c
@@ -173,3 +173,18 @@ rda_session_terminate(void)
return FALSE;
}
+
+gchar *
+rda_supported_technologies(void)
+{
+
+ g_autofree gchar * technologies;
+
+#ifdef WITH_REMOTE_AWARENESS_X2GO
+ g_message("RDA supports (stable): %s", rda_remote_technology_name_x2go());
+#endif
+
+#ifdef WITH_REMOTE_AWARENESS_OGON
+ g_message("RDA supports (alpha): %s", rda_remote_technology_name_ogon());
+#endif
+}