device: renew dhcp leases on awake for software devices
[NetworkManager.git] / libnm / nm-device-wimax.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 - 2012 Red Hat, Inc.
19  * Copyright 2009 Novell, Inc.
20  */
21
22 #ifndef __NM_DEVICE_WIMAX_H__
23 #define __NM_DEVICE_WIMAX_H__
24
25 #if !defined (__NETWORKMANAGER_H_INSIDE__) && !defined (NETWORKMANAGER_COMPILATION)
26 #error "Only <NetworkManager.h> can be included directly."
27 #endif
28
29 #include <nm-device.h>
30
31 G_BEGIN_DECLS
32
33 #define NM_TYPE_DEVICE_WIMAX            (nm_device_wimax_get_type ())
34 #define NM_DEVICE_WIMAX(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), NM_TYPE_DEVICE_WIMAX, NMDeviceWimax))
35 #define NM_DEVICE_WIMAX_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), NM_TYPE_DEVICE_WIMAX, NMDeviceWimaxClass))
36 #define NM_IS_DEVICE_WIMAX(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NM_TYPE_DEVICE_WIMAX))
37 #define NM_IS_DEVICE_WIMAX_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), NM_TYPE_DEVICE_WIMAX))
38 #define NM_DEVICE_WIMAX_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), NM_TYPE_DEVICE_WIMAX, NMDeviceWimaxClass))
39
40 #define NM_DEVICE_WIMAX_HW_ADDRESS       "hw-address"
41 #define NM_DEVICE_WIMAX_ACTIVE_NSP       "active-nsp"
42 #define NM_DEVICE_WIMAX_CENTER_FREQUENCY "center-frequency"
43 #define NM_DEVICE_WIMAX_RSSI             "rssi"
44 #define NM_DEVICE_WIMAX_CINR             "cinr"
45 #define NM_DEVICE_WIMAX_TX_POWER         "tx-power"
46 #define NM_DEVICE_WIMAX_BSID             "bsid"
47 #define NM_DEVICE_WIMAX_NSPS             "nsps"
48
49 struct _NMDeviceWimax {
50         NMDevice parent;
51 };
52
53 typedef struct {
54         NMDeviceClass parent;
55
56         /* Signals */
57         void (*nsp_added)   (NMDeviceWimax *self, NMWimaxNsp *nsp);
58         void (*nsp_removed) (NMDeviceWimax *self, NMWimaxNsp *nsp);
59
60         /*< private >*/
61         gpointer padding[4];
62 } NMDeviceWimaxClass;
63
64 NM_DEPRECATED_IN_1_2
65 GType nm_device_wimax_get_type (void);
66
67 NM_DEPRECATED_IN_1_2
68 const char      *nm_device_wimax_get_hw_address  (NMDeviceWimax *wimax);
69 NM_DEPRECATED_IN_1_2
70 NMWimaxNsp      *nm_device_wimax_get_active_nsp  (NMDeviceWimax *wimax);
71 NM_DEPRECATED_IN_1_2
72 NMWimaxNsp      *nm_device_wimax_get_nsp_by_path (NMDeviceWimax *wimax,
73                                                   const char *path);
74
75 NM_DEPRECATED_IN_1_2
76 const GPtrArray *nm_device_wimax_get_nsps        (NMDeviceWimax *wimax);
77
78 NM_DEPRECATED_IN_1_2
79 guint            nm_device_wimax_get_center_frequency (NMDeviceWimax *self);
80 NM_DEPRECATED_IN_1_2
81 gint             nm_device_wimax_get_rssi        (NMDeviceWimax *self);
82 NM_DEPRECATED_IN_1_2
83 gint             nm_device_wimax_get_cinr        (NMDeviceWimax *self);
84 NM_DEPRECATED_IN_1_2
85 gint             nm_device_wimax_get_tx_power    (NMDeviceWimax *self);
86 NM_DEPRECATED_IN_1_2
87 const char *     nm_device_wimax_get_bsid        (NMDeviceWimax *self);
88
89 G_END_DECLS
90
91 #endif /* __NM_DEVICE_WIMAX_H__ */