From 5ae2fca60a84a929fca55131d5c1b486d1e68015 Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Sat, 19 Jan 2019 00:28:15 +0100 Subject: rdacheck: Add little tool that reports about what RDA detects. --- util/Makefile.am | 23 +++++++++++++++++++++++ util/rdacheck.c | 44 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 67 insertions(+) create mode 100644 util/Makefile.am create mode 100644 util/rdacheck.c (limited to 'util') 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 + + 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 +#include + +#include + +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(); +} -- cgit v1.2.3