device: renew dhcp leases on awake for software devices
[NetworkManager.git] / libnm-core / 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 #if !defined (__NETWORKMANAGER_H_INSIDE__) && !defined (NETWORKMANAGER_COMPILATION)
27 #error "Only <NetworkManager.h> can be included directly."
28 #endif
29
30 #include <nm-setting.h>
31
32 G_BEGIN_DECLS
33
34 #define NM_TYPE_SETTING_OLPC_MESH            (nm_setting_olpc_mesh_get_type ())
35 #define NM_SETTING_OLPC_MESH(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), NM_TYPE_SETTING_OLPC_MESH, NMSettingOlpcMesh))
36 #define NM_SETTING_OLPC_MESH_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), NM_TYPE_SETTING_OLPC_MESH, NMSettingOlpcMeshClass))
37 #define NM_IS_SETTING_OLPC_MESH(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NM_TYPE_SETTING_OLPC_MESH))
38 #define NM_IS_SETTING_OLPC_MESH_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), NM_TYPE_SETTING_OLPC_MESH))
39 #define NM_SETTING_OLPC_MESH_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), NM_TYPE_SETTING_OLPC_MESH, NMSettingOlpcMeshClass))
40
41 #define NM_SETTING_OLPC_MESH_SETTING_NAME "802-11-olpc-mesh"
42
43 #define NM_SETTING_OLPC_MESH_SSID                 "ssid"
44 #define NM_SETTING_OLPC_MESH_CHANNEL              "channel"
45 #define NM_SETTING_OLPC_MESH_DHCP_ANYCAST_ADDRESS "dhcp-anycast-address"
46
47 struct _NMSettingOlpcMesh {
48         NMSetting parent;
49 };
50
51 typedef struct {
52         NMSettingClass parent;
53
54         /*< private >*/
55         gpointer padding[4];
56 } NMSettingOlpcMeshClass;
57
58 GType nm_setting_olpc_mesh_get_type (void);
59
60 NMSetting *       nm_setting_olpc_mesh_new                      (void);
61 GBytes *          nm_setting_olpc_mesh_get_ssid                 (NMSettingOlpcMesh *setting);
62 guint32           nm_setting_olpc_mesh_get_channel              (NMSettingOlpcMesh *setting);
63 const char *      nm_setting_olpc_mesh_get_dhcp_anycast_address (NMSettingOlpcMesh *setting);
64
65 G_END_DECLS
66
67 #endif /* __NM_SETTING_OLPC_MESH_H__ */