device: renew dhcp leases on awake for software devices
[NetworkManager.git] / libnm-core / nm-setting-wimax.h
1 /* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
2
3 /*
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17  * Boston, MA 02110-1301 USA.
18  *
19  * Copyright 2009 Novell, Inc.
20  */
21
22 #ifndef __NM_SETTING_WIMAX_H__
23 #define __NM_SETTING_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-setting.h>
30
31 G_BEGIN_DECLS
32
33 #define NM_TYPE_SETTING_WIMAX            (nm_setting_wimax_get_type ())
34 #define NM_SETTING_WIMAX(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), NM_TYPE_SETTING_WIMAX, NMSettingWimax))
35 #define NM_SETTING_WIMAX_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), NM_TYPE_SETTING_WIMAX, NMSettingWimaxClass))
36 #define NM_IS_SETTING_WIMAX(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NM_TYPE_SETTING_WIMAX))
37 #define NM_IS_SETTING_WIMAX_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), NM_TYPE_SETTING_WIMAX))
38 #define NM_SETTING_WIMAX_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), NM_TYPE_SETTING_WIMAX, NMSettingWimaxClass))
39
40 #define NM_SETTING_WIMAX_SETTING_NAME "wimax"
41
42 #define NM_SETTING_WIMAX_NETWORK_NAME "network-name"
43 #define NM_SETTING_WIMAX_MAC_ADDRESS  "mac-address"
44
45 struct _NMSettingWimax {
46         NMSetting parent;
47 };
48
49 typedef struct {
50         NMSettingClass parent;
51
52         /*< private >*/
53         gpointer padding[4];
54 } NMSettingWimaxClass;
55
56 NM_DEPRECATED_IN_1_2
57 GType nm_setting_wimax_get_type (void);
58
59 NM_DEPRECATED_IN_1_2
60 NMSetting        *nm_setting_wimax_new              (void);
61 NM_DEPRECATED_IN_1_2
62 const char       *nm_setting_wimax_get_network_name (NMSettingWimax *setting);
63 NM_DEPRECATED_IN_1_2
64 const char       *nm_setting_wimax_get_mac_address  (NMSettingWimax *setting);
65
66 G_END_DECLS
67
68 #endif /* __NM_SETTING_WIMAX_H__ */