device: renew dhcp leases on awake for software devices
[NetworkManager.git] / src / nm-dhcp4-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_DHCP4_CONFIG_H__
22 #define __NETWORKMANAGER_DHCP4_CONFIG_H__
23
24 #include "nm-exported-object.h"
25
26 #define NM_TYPE_DHCP4_CONFIG            (nm_dhcp4_config_get_type ())
27 #define NM_DHCP4_CONFIG(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), NM_TYPE_DHCP4_CONFIG, NMDhcp4Config))
28 #define NM_DHCP4_CONFIG_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), NM_TYPE_DHCP4_CONFIG, NMDhcp4ConfigClass))
29 #define NM_IS_DHCP4_CONFIG(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NM_TYPE_DHCP4_CONFIG))
30 #define NM_IS_DHCP4_CONFIG_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), NM_TYPE_DHCP4_CONFIG))
31 #define NM_DHCP4_CONFIG_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), NM_TYPE_DHCP4_CONFIG, NMDhcp4ConfigClass))
32
33 struct _NMDhcp4Config {
34         NMExportedObject parent;
35 };
36
37 typedef struct {
38         NMExportedObjectClass parent;
39
40 } NMDhcp4ConfigClass;
41
42 #define NM_DHCP4_CONFIG_OPTIONS "options"
43
44 GType nm_dhcp4_config_get_type (void);
45
46 NMDhcp4Config *nm_dhcp4_config_new (void);
47
48 void nm_dhcp4_config_set_options (NMDhcp4Config *config,
49                                   GHashTable *options);
50
51 const char *nm_dhcp4_config_get_option (NMDhcp4Config *config, const char *option);
52
53 GVariant *nm_dhcp4_config_get_options (NMDhcp4Config *config);
54
55 #endif /* __NETWORKMANAGER_DHCP4_CONFIG_H__ */