
Patch from Tambet Ingo <tambet@gmail.com> * src/ppp-manager/nm-ppp-manager.c: Add ppp stats monitoring, signal the changes. * src/nm-serial-device.c: Monitor "ppp-stats" signals from NMPPPManager. Add a signal to emit these changes over dbus. * src/Makefile.am: Genereate nm-serial-device-glue. * libnm-glib/nm-serial-device.[ch]: Implement. * libnm-glib/nm-cdma-device.[ch] libnm-glib/nm-gsm-device.[ch]: Inherit from NMSerialDevice. * libnm-glib/Makefile.am: Add nm-serial-device.[ch]. * introspection/nm-device-serial.xml: Implement. * introspection/all.xml: Fix a couple of typos, add nm-device-serial.xml. * introspection/Makefile.am: Add nm-device-serial.xml. * include/NetworkManager.h: Add a DBus interface for serial device. git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@3740 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
33 lines
1.0 KiB
C
33 lines
1.0 KiB
C
/* -*- Mode: C; tab-width: 5; indent-tabs-mode: t; c-basic-offset: 5 -*- */
|
|
|
|
#ifndef NM_GSM_DEVICE_H
|
|
#define NM_GSM_DEVICE_H
|
|
|
|
#include "nm-serial-device.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define NM_TYPE_GSM_DEVICE (nm_gsm_device_get_type ())
|
|
#define NM_GSM_DEVICE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), NM_TYPE_GSM_DEVICE, NMGsmDevice))
|
|
#define NM_GSM_DEVICE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), NM_TYPE_GSM_DEVICE, NMGsmDeviceClass))
|
|
#define NM_IS_GSM_DEVICE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NM_TYPE_GSM_DEVICE))
|
|
#define NM_IS_GSM_DEVICE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((obj), NM_TYPE_GSM_DEVICE))
|
|
#define NM_GSM_DEVICE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), NM_TYPE_GSM_DEVICE, NMGsmDeviceClass))
|
|
|
|
typedef struct {
|
|
NMSerialDevice parent;
|
|
} NMGsmDevice;
|
|
|
|
typedef struct {
|
|
NMSerialDeviceClass parent;
|
|
} NMGsmDeviceClass;
|
|
|
|
GType nm_gsm_device_get_type (void);
|
|
|
|
NMGsmDevice *nm_gsm_device_new (DBusGConnection *connection,
|
|
const char *path);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* NM_GSM_DEVICE_H */
|