diff options
author | Matthias Clasen <mclasen@redhat.com> | 2018-07-25 07:17:38 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2018-07-25 07:18:38 -0400 |
commit | 56092b8529ec5dd35d4fe57e14d7d5bd4c9bf0fd (patch) | |
tree | 363653431f185330cd160095b353fd43345366fd /gio | |
parent | 2480ece23d504c685756143d82625426cc144a10 (diff) | |
download | glib-56092b8529ec5dd35d4fe57e14d7d5bd4c9bf0fd.tar.gz |
Revert "Add a gnet utility"
This reverts commit 1db3b6def6a736429ba778e49fce0d3044cfdf79.
I had forgotten to remove this from the branch before merging.
Diffstat (limited to 'gio')
-rw-r--r-- | gio/Makefile.am | 8 | ||||
-rw-r--r-- | gio/gnet-tool.c | 77 |
2 files changed, 0 insertions, 85 deletions
diff --git a/gio/Makefile.am b/gio/Makefile.am index ca1422739..98c808815 100644 --- a/gio/Makefile.am +++ b/gio/Makefile.am @@ -974,14 +974,6 @@ gio_LDADD = libgio-2.0.la \ $(top_builddir)/glib/libglib-2.0.la \ $(NULL) -bin_PROGRAMS += gnet -gnet_SOURCES = \ - gnet-tool.c -gnet_LDADD = libgio-2.0.la \ - $(top_builddir)/gobject/libgobject-2.0.la \ - $(top_builddir)/glib/libglib-2.0.la \ - $(NULL) - dist-hook: $(BUILT_EXTRA_DIST) files='$(BUILT_EXTRA_DIST)'; \ for f in $$files; do \ diff --git a/gio/gnet-tool.c b/gio/gnet-tool.c deleted file mode 100644 index 334923654..000000000 --- a/gio/gnet-tool.c +++ /dev/null @@ -1,77 +0,0 @@ -/* - * Copyright 2015 Red Hat, Inc. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, see <http://www.gnu.org/licenses/>. - * - * Author: Matthias Clasen <mclasen@redhat.com> - */ - -#include "config.h" - -#include <gio/gio.h> -#include <gi18n.h> -#include <locale.h> -#include <stdio.h> -#include <string.h> -#include <stdlib.h> -#include <errno.h> - -static void -network_changed (GNetworkMonitor *nm, - gboolean available, - gpointer data) -{ - g_print ("::network-changed available: %d\n", available); -} - -static void -notify (GObject *object, - GParamSpec *pspec, - gpointer data) -{ - GNetworkMonitor *nm = G_NETWORK_MONITOR (object); - - g_print ("notify::"); - if (strcmp (pspec->name, "network-available") == 0) - g_print ("network-available: %d\n", g_network_monitor_get_network_available (nm)); - else if (strcmp (pspec->name, "network-metered") == 0) - g_print ("network-metered: %d\n", g_network_monitor_get_network_metered (nm)); - else if (strcmp (pspec->name, "connectivity") == 0) - g_print ("connectivity: %d\n", g_network_monitor_get_connectivity (nm)); -} - -int -main (int argc, char **argv) -{ - GNetworkMonitor *nm; - - setlocale (LC_ALL, ""); - textdomain (GETTEXT_PACKAGE); - bindtextdomain (GETTEXT_PACKAGE, GLIB_LOCALE_DIR); - -#ifdef HAVE_BIND_TEXTDOMAIN_CODESET - bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); -#endif - - nm = g_network_monitor_get_default (); - g_print ("Using %s\n", g_type_name_from_instance (nm)); - - g_signal_connect (nm, "network-changed", G_CALLBACK (network_changed), NULL); - g_signal_connect (nm, "notify", G_CALLBACK (notify), NULL); - - while (TRUE) - g_main_context_iteration (NULL, TRUE); - - return 1; -} |