summaryrefslogtreecommitdiff
path: root/util/rdacheck.c
blob: 44bad775f3049969974cbf5579272831d6ee5316 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
rdacheck utility for librda

Copyright 2019, 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>
#include <rda_protocol.h>

int
main (int __attribute__((unused)) argc, char __attribute__((unused)) **argv)
{
	rda_init();
	g_message(_("Currently used remote technology: %s"), rda_get_remote_technology_name());
	g_message(_("Currently used protocol: %s"), rda_get_protocol_name());

	g_message(_("RDA supports the following remote technologies:"));

	for(GList* tech = rda_supported_technologies_by_name(); tech; tech = tech->next) {
		gchar* item = tech->data;
		g_message("    * %s", item);
	}

	g_message(_("RDA supports the following protocols:"));

	GList *proto = NULL;
	for(proto = rda_supported_protocols_by_name(); proto; proto = proto->next) {
		gchar* item = proto->data;
		g_message("    * %s", item);
	}
	g_list_free_full(g_steal_pointer(&proto), free);
}