summaryrefslogtreecommitdiff
path: root/util/rdacheck.c
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2019-01-19 00:28:15 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2019-01-19 00:33:38 +0100
commit5ae2fca60a84a929fca55131d5c1b486d1e68015 (patch)
treeadf84def9c85de7c7349ffe29556425ee2f66b64 /util/rdacheck.c
parent74e8e01c459f7fbf8eb5e91362c41c6557f0fe00 (diff)
downloadlibrda-5ae2fca60a84a929fca55131d5c1b486d1e68015.tar.gz
librda-5ae2fca60a84a929fca55131d5c1b486d1e68015.tar.bz2
librda-5ae2fca60a84a929fca55131d5c1b486d1e68015.zip
rdacheck: Add little tool that reports about what RDA detects.
Diffstat (limited to 'util/rdacheck.c')
-rw-r--r--util/rdacheck.c44
1 files changed, 44 insertions, 0 deletions
diff --git a/util/rdacheck.c b/util/rdacheck.c
new file mode 100644
index 0000000..370f184
--- /dev/null
+++ b/util/rdacheck.c
@@ -0,0 +1,44 @@
+/*
+X2Go tests for librda
+
+Copyright 2018, Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
+
+ Copyright (C) 2018 Mike Gabriel
+ All rights reserved.
+
+ The RDA Library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public License as
+ published by the Free Software Foundation; either version 2 of the
+ License, or (at your option) any later version.
+
+ The RDA Library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Library General Public License for more details.
+
+ You should have received a copy of the GNU Library General Public
+ License along with the Mate Library; see the file COPYING.LIB. If not,
+ write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
+ Boston, MA 02110-1301, USA.
+*/
+
+#include <glib.h>
+#include <glib/gi18n.h>
+
+#include <rda.h>
+
+int
+main (int argc, char ** argv)
+{
+ rda_init();
+ g_message(_("Currently used remote technology: %s"), rda_get_remote_technology_name());
+
+ g_message(_("RDA supports the following remote session technologies:"));
+
+ for(GList* tech = rda_supported_technologies_by_name(); tech; tech = tech->next) {
+ gchar* item = tech->data;
+ g_message(" * %s", item);
+ }
+
+ rda_supported_technologies_by_name();
+}