2005-01-12 18:40:04 +00:00
|
|
|
/* libnm_glib_test - test app for libnm_glib
|
|
|
|
|
*
|
|
|
|
|
* Dan Williams <dcbw@redhat.com>
|
|
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
*
|
|
|
|
|
* (C) Copyright 2005 Red Hat, Inc.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include "libnm_glib.h"
|
|
|
|
|
|
|
|
|
|
|
2005-10-07 19:17:06 +00:00
|
|
|
static void status_printer (libnm_glib_ctx *ctx, gpointer user_data)
|
2005-01-12 18:40:04 +00:00
|
|
|
{
|
2005-04-27 18:05:16 +00:00
|
|
|
libnm_glib_state state;
|
2005-01-12 18:40:04 +00:00
|
|
|
|
2005-02-18 20:25:24 +00:00
|
|
|
g_return_if_fail (ctx != NULL);
|
2005-01-12 18:40:04 +00:00
|
|
|
|
2005-04-27 18:05:16 +00:00
|
|
|
state = libnm_glib_get_network_state (ctx);
|
|
|
|
|
switch (state)
|
2005-01-12 18:40:04 +00:00
|
|
|
{
|
|
|
|
|
case LIBNM_NO_DBUS:
|
|
|
|
|
fprintf (stderr, "Status: No DBUS\n");
|
|
|
|
|
break;
|
|
|
|
|
case LIBNM_NO_NETWORKMANAGER:
|
|
|
|
|
fprintf (stderr, "Status: No NetworkManager\n");
|
|
|
|
|
break;
|
|
|
|
|
case LIBNM_NO_NETWORK_CONNECTION:
|
|
|
|
|
fprintf (stderr, "Status: No Connection\n");
|
|
|
|
|
break;
|
|
|
|
|
case LIBNM_ACTIVE_NETWORK_CONNECTION:
|
|
|
|
|
fprintf (stderr, "Status: Active Connection\n");
|
|
|
|
|
break;
|
|
|
|
|
case LIBNM_INVALID_CONTEXT:
|
|
|
|
|
fprintf (stderr, "Status: Error\n");
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
fprintf (stderr, "Status: unknown\n");
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int main( int argc, char *argv[] )
|
|
|
|
|
{
|
|
|
|
|
GMainLoop *loop;
|
|
|
|
|
libnm_glib_ctx *ctx;
|
|
|
|
|
|
|
|
|
|
ctx = libnm_glib_init ();
|
|
|
|
|
if (!ctx)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Could not initialize libnm.\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
libnm_glib_register_callback (ctx, status_printer, ctx, NULL);
|
|
|
|
|
|
|
|
|
|
loop = g_main_loop_new (NULL, FALSE);
|
|
|
|
|
// id = g_timeout_add (2000, status_printer, (gpointer)ctx);
|
|
|
|
|
|
|
|
|
|
g_main_loop_run (loop);
|
|
|
|
|
|
|
|
|
|
// g_source_remove (id);
|
|
|
|
|
|
|
|
|
|
exit (0);
|
|
|
|
|
}
|