mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-28 04:00:09 +01:00
Move ppp-manager over to dbus-glib. The big deal is that it was
the last piece of
code that used NM's own version of dbus signal handling and
custom dictionary
marshalling/unmarshalling. With this change, all that obsolete
code can disappear
and we get to maintain over 2000 lines less code.
* libnm-util/dbus-dict-helpers.c:
* libnm-util/dbus-dict-helpers.h: Remove.
* src/ppp-manager/nm-pppd-plugin.c: Convert it to use dbus-glib.
* src/ppp-manager/nm-pppd-plugin.xml: Implement.
* src/ppp-manager/nm-ppp-manager.c: Use dbus-glib instead of
* home-brewed dbus signal
handlers.
* src/nm-dbus-manager.c: Remove all the manual dbus signal
* handling.
* configure.in: Remove test/libnm-util/Makefile creation.
* test/Makefile.am: Remove libnm-util from SUBDIRS.
* test/libnm-util/: Remove the whole directory.
git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@2965 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
77 lines
2.8 KiB
C
77 lines
2.8 KiB
C
/*
|
|
* Copyright (C) 2006 Red Hat, Inc.
|
|
*
|
|
* Written by 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.
|
|
*/
|
|
|
|
#ifndef __NM_DBUS_MANAGER_H__
|
|
#define __NM_DBUS_MANAGER_H__
|
|
|
|
#include "config.h"
|
|
#include "NetworkManagerDbusUtils.h"
|
|
#include <glib-object.h>
|
|
#include <dbus/dbus.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
typedef gboolean (* NMDBusSignalHandlerFunc) (DBusConnection * connection,
|
|
DBusMessage * message,
|
|
gpointer user_data);
|
|
|
|
#define NM_TYPE_DBUS_MANAGER (nm_dbus_manager_get_type ())
|
|
#define NM_DBUS_MANAGER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), NM_TYPE_DBUS_MANAGER, NMDBusManager))
|
|
#define NM_DBUS_MANAGER_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), NM_TYPE_DBUS_MANAGER, NMDBusManagerClass))
|
|
#define NM_IS_DBUS_MANAGER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), NM_TYPE_DBUS_MANAGER))
|
|
#define NM_IS_DBUS_MANAGER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), NM_TYPE_DBUS_MANAGER))
|
|
#define NM_DBUS_MANAGER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), NM_TYPE_DBUS_MANAGER, NMDBusManagerClass))
|
|
|
|
typedef struct {
|
|
GObject parent;
|
|
} NMDBusManager;
|
|
|
|
typedef struct {
|
|
GObjectClass parent;
|
|
|
|
/* Signals */
|
|
void (*dbus_connection_changed) (NMDBusManager *mgr,
|
|
DBusConnection *connection);
|
|
|
|
void (*name_owner_changed) (NMDBusManager *mgr,
|
|
const char *name,
|
|
const char *old_owner,
|
|
const char *new_owner);
|
|
} NMDBusManagerClass;
|
|
|
|
GType nm_dbus_manager_get_type (void);
|
|
|
|
NMDBusManager * nm_dbus_manager_get (void);
|
|
|
|
char * nm_dbus_manager_get_name_owner (NMDBusManager *self,
|
|
const char *name);
|
|
|
|
gboolean nm_dbus_manager_start_service (NMDBusManager *self);
|
|
|
|
gboolean nm_dbus_manager_name_has_owner (NMDBusManager *self,
|
|
const char *name);
|
|
|
|
DBusConnection * nm_dbus_manager_get_dbus_connection (NMDBusManager *self);
|
|
DBusGConnection * nm_dbus_manager_get_connection (NMDBusManager *self);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __NM_DBUS_MANAGER_H__ */
|