device: renew dhcp leases on awake for software devices
[NetworkManager.git] / libnm-core / nm-utils-private.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 2005 - 2014 Red Hat, Inc.
19  */
20
21 #ifndef __NM_UTILS_PRIVATE_H__
22 #define __NM_UTILS_PRIVATE_H__
23
24 #ifdef __NETWORKMANAGER_TYPES_H__
25 #error "nm-utils-private.h" must not be used outside of libnm-core/. Do you want "nm-core-internal.h"?
26 #endif
27
28 #include "nm-setting-private.h"
29 #include "nm-setting-ip-config.h"
30
31 gboolean    _nm_utils_string_slist_validate (GSList *list,
32                                              const char **valid_values);
33
34 /* D-Bus transform funcs */
35
36 GVariant *  _nm_utils_hwaddr_to_dbus   (const GValue *prop_value);
37 void        _nm_utils_hwaddr_from_dbus (GVariant *dbus_value,
38                                         GValue *prop_value);
39
40 GVariant *  _nm_utils_strdict_to_dbus   (const GValue *prop_value);
41 void        _nm_utils_strdict_from_dbus (GVariant *dbus_value,
42                                          GValue *prop_value);
43
44 GVariant *  _nm_utils_bytes_to_dbus     (const GValue *prop_value);
45 void        _nm_utils_bytes_from_dbus   (GVariant *dbus_value,
46                                          GValue *prop_value);
47
48 char *      _nm_utils_hwaddr_canonical_or_invalid (const char *mac, gssize length);
49
50 #endif