device: renew dhcp leases on awake for software devices
[NetworkManager.git] / libnm-glib / nm-device-adsl.h
1 /* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
2 /*
3  * This library is free software; you can redistribute it and/or
4  * modify it under the terms of the GNU Lesser General Public
5  * License as published by the Free Software Foundation; either
6  * version 2 of the License, or (at your option) any later version.
7  *
8  * This library is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * Lesser General Public License for more details.
12  *
13  * You should have received a copy of the GNU Lesser General Public
14  * License along with this library; if not, write to the
15  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
16  * Boston, MA 02110-1301 USA.
17  *
18  * Copyright 2011 Pantelis Koukousoulas <pktoss@gmail.com>
19  */
20
21 #ifndef NM_DEVICE_ADSL_H
22 #define NM_DEVICE_ADSL_H
23
24 #include "nm-device.h"
25
26 G_BEGIN_DECLS
27
28 #define NM_TYPE_DEVICE_ADSL            (nm_device_adsl_get_type ())
29 #define NM_DEVICE_ADSL(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), NM_TYPE_DEVICE_ADSL, NMDeviceAdsl))
30 #define NM_DEVICE_ADSL_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), NM_TYPE_DEVICE_ADSL, NMDeviceAdslClass))
31 #define NM_IS_DEVICE_ADSL(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NM_TYPE_DEVICE_ADSL))
32 #define NM_IS_DEVICE_ADSL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), NM_TYPE_DEVICE_ADSL))
33 #define NM_DEVICE_ADSL_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), NM_TYPE_DEVICE_ADSL, NMDeviceAdslClass))
34
35 /**
36  * NMDeviceAdslError:
37  * @NM_DEVICE_ADSL_ERROR_UNKNOWN: unknown or unclassified error
38  * @NM_DEVICE_ADSL_ERROR_NOT_ADSL_CONNECTION: the connection was not of ADSL type
39  * @NM_DEVICE_ADSL_ERROR_INVALID_ADSL_CONNECTION: the ADSL connection was invalid
40  */
41 typedef enum {
42         NM_DEVICE_ADSL_ERROR_UNKNOWN = 0,             /*< nick=UnknownError >*/
43         NM_DEVICE_ADSL_ERROR_NOT_ADSL_CONNECTION,     /*< nick=NotAdslConnection >*/
44         NM_DEVICE_ADSL_ERROR_INVALID_ADSL_CONNECTION, /*< nick=InvalidAdslConnection >*/
45 } NMDeviceAdslError;
46
47 #define NM_DEVICE_ADSL_ERROR nm_device_adsl_error_quark ()
48 GQuark nm_device_adsl_error_quark (void);
49
50 #define NM_DEVICE_ADSL_CARRIER "carrier"
51
52 typedef struct {
53         NMDevice parent;
54 } NMDeviceAdsl;
55
56 typedef struct {
57         NMDeviceClass parent;
58
59         /* Padding for future expansion */
60         void (*_reserved1) (void);
61         void (*_reserved2) (void);
62         void (*_reserved3) (void);
63         void (*_reserved4) (void);
64         void (*_reserved5) (void);
65         void (*_reserved6) (void);
66 } NMDeviceAdslClass;
67
68 GType nm_device_adsl_get_type (void);
69
70 GObject *nm_device_adsl_new (DBusGConnection *connection, const char *path);
71 gboolean nm_device_adsl_get_carrier (NMDeviceAdsl *device);
72
73 G_END_DECLS
74
75 #endif /* NM_DEVICE_ADSL_H */