device: renew dhcp leases on awake for software devices
[NetworkManager.git] / src / nm-dhcp6-config.h
1 /* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
2 /* NetworkManager -- Network link manager
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program 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
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  *
18  * Copyright (C) 2008 Red Hat, Inc.
19  */
20
21 #ifndef __NETWORKMANAGER_DHCP6_CONFIG_H__
22 #define __NETWORKMANAGER_DHCP6_CONFIG_H__
23
24 #include "nm-exported-object.h"
25
26 #define NM_TYPE_DHCP6_CONFIG            (nm_dhcp6_config_get_type ())
27 #define NM_DHCP6_CONFIG(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), NM_TYPE_DHCP6_CONFIG, NMDhcp6Config))
28 #define NM_DHCP6_CONFIG_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), NM_TYPE_DHCP6_CONFIG, NMDhcp6ConfigClass))
29 #define NM_IS_DHCP6_CONFIG(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NM_TYPE_DHCP6_CONFIG))
30 #define NM_IS_DHCP6_CONFIG_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), NM_TYPE_DHCP6_CONFIG))
31 #define NM_DHCP6_CONFIG_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), NM_TYPE_DHCP6_CONFIG, NMDhcp6ConfigClass))
32
33 struct _NMDhcp6Config {
34         NMExportedObject parent;
35 };
36
37 typedef struct {
38         NMExportedObjectClass parent;
39
40 } NMDhcp6ConfigClass;
41
42 #define NM_DHCP6_CONFIG_OPTIONS "options"
43
44 GType nm_dhcp6_config_get_type (void);
45
46 NMDhcp6Config *nm_dhcp6_config_new (void);
47
48 void nm_dhcp6_config_set_options (NMDhcp6Config *config,
49                                   GHashTable *options);
50
51 const char *nm_dhcp6_config_get_option (NMDhcp6Config *config, const char *option);
52
53 GVariant *nm_dhcp6_config_get_options (NMDhcp6Config *self);
54
55 #endif /* __NETWORKMANAGER_DHCP6_CONFIG_H__ */