device: renew dhcp leases on awake for software devices
[NetworkManager.git] / libnm-util / nm-setting-olpc-mesh.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 2007 - 2008 Red Hat, Inc.
19  * Copyright 2007 - 2008 Novell, Inc.
20  * Copyright 2009 One Laptop per Child
21  */
22
23 #ifndef NM_SETTING_OLPC_MESH_H
24 #define NM_SETTING_OLPC_MESH_H
25
26 #include <nm-setting.h>
27
28 G_BEGIN_DECLS
29
30 #define NM_TYPE_SETTING_OLPC_MESH            (nm_setting_olpc_mesh_get_type ())
31 #define NM_SETTING_OLPC_MESH(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), NM_TYPE_SETTING_OLPC_MESH, NMSettingOlpcMesh))
32 #define NM_SETTING_OLPC_MESH_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), NM_TYPE_SETTING_OLPC_MESH, NMSettingOlpcMeshClass))
33 #define NM_IS_SETTING_OLPC_MESH(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NM_TYPE_SETTING_OLPC_MESH))
34 #define NM_IS_SETTING_OLPC_MESH_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), NM_TYPE_SETTING_OLPC_MESH))
35 #define NM_SETTING_OLPC_MESH_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), NM_TYPE_SETTING_OLPC_MESH, NMSettingOlpcMeshClass))
36
37 #define NM_SETTING_OLPC_MESH_SETTING_NAME "802-11-olpc-mesh"
38
39 /**
40  * NMSettingOlpcMeshError:
41  * @NM_SETTING_OLPC_MESH_ERROR_UNKNOWN: unknown or unclassified error
42  * @NM_SETTING_OLPC_MESH_ERROR_INVALID_PROPERTY: the property was invalid
43  * @NM_SETTING_OLPC_MESH_ERROR_MISSING_PROPERTY: the property was missing and is
44  * required
45  */
46 typedef enum {
47         NM_SETTING_OLPC_MESH_ERROR_UNKNOWN = 0,      /*< nick=UnknownError >*/
48         NM_SETTING_OLPC_MESH_ERROR_INVALID_PROPERTY, /*< nick=InvalidProperty >*/
49         NM_SETTING_OLPC_MESH_ERROR_MISSING_PROPERTY  /*< nick=MissingProperty >*/
50 } NMSettingOlpcMeshError;
51
52 #define NM_SETTING_OLPC_MESH_ERROR nm_setting_olpc_mesh_error_quark ()
53 GQuark nm_setting_olpc_mesh_error_quark (void);
54
55 #define NM_SETTING_OLPC_MESH_SSID                 "ssid"
56 #define NM_SETTING_OLPC_MESH_CHANNEL              "channel"
57 #define NM_SETTING_OLPC_MESH_DHCP_ANYCAST_ADDRESS "dhcp-anycast-address"
58
59 typedef struct {
60         NMSetting parent;
61 } NMSettingOlpcMesh;
62
63 typedef struct {
64         NMSettingClass parent;
65
66         /* Padding for future expansion */
67         void (*_reserved1) (void);
68         void (*_reserved2) (void);
69         void (*_reserved3) (void);
70         void (*_reserved4) (void);
71 } NMSettingOlpcMeshClass;
72
73 GType nm_setting_olpc_mesh_get_type (void);
74
75 NMSetting *       nm_setting_olpc_mesh_new                      (void);
76 const GByteArray *nm_setting_olpc_mesh_get_ssid                 (NMSettingOlpcMesh *setting);
77 guint32           nm_setting_olpc_mesh_get_channel              (NMSettingOlpcMesh *setting);
78 const GByteArray *nm_setting_olpc_mesh_get_dhcp_anycast_address (NMSettingOlpcMesh *setting);
79
80 G_END_DECLS
81
82 #endif /* NM_SETTING_OLPC_MESH_H */