diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2019-01-19 00:28:15 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2019-01-19 00:33:38 +0100 |
commit | 5ae2fca60a84a929fca55131d5c1b486d1e68015 (patch) | |
tree | adf84def9c85de7c7349ffe29556425ee2f66b64 /util | |
parent | 74e8e01c459f7fbf8eb5e91362c41c6557f0fe00 (diff) | |
download | librda-5ae2fca60a84a929fca55131d5c1b486d1e68015.tar.gz librda-5ae2fca60a84a929fca55131d5c1b486d1e68015.tar.bz2 librda-5ae2fca60a84a929fca55131d5c1b486d1e68015.zip |
rdacheck: Add little tool that reports about what RDA detects.
Diffstat (limited to 'util')
-rw-r--r-- | util/Makefile.am | 23 | ||||
-rw-r--r-- | util/rdacheck.c | 44 |
2 files changed, 67 insertions, 0 deletions
diff --git a/util/Makefile.am b/util/Makefile.am new file mode 100644 index 0000000..8d1d792 --- /dev/null +++ b/util/Makefile.am @@ -0,0 +1,23 @@ +NULL = + +RDA_LIB = -lrda + +DISTCLEANFILES = + +bin_PROGRAMS = rdacheck + +rdacheck_SOURCES = \ + rdacheck.c + +rdacheck_CFLAGS = \ + -Wall -Werror \ + $(LIBRDA_CFLAGS) \ + -I$(top_srcdir)/src/ \ + -DBUILD_DIR="\"$(builddir)\"" \ + $(NULL) + +rdacheck_LDADD = \ + $(RDA_LIB) \ + $(LIBRDA_LIBS) \ + -L$(top_builddir)/src/.libs \ + $(NULL) 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(); +} |