device: renew dhcp leases on awake for software devices
[NetworkManager.git] / libnm-glib / nm-device-bond.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 2012 Red Hat, Inc.
19  */
20
21 #ifndef NM_DEVICE_BOND_H
22 #define NM_DEVICE_BOND_H
23
24 #include "nm-device.h"
25
26 G_BEGIN_DECLS
27
28 #define NM_TYPE_DEVICE_BOND            (nm_device_bond_get_type ())
29 #define NM_DEVICE_BOND(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), NM_TYPE_DEVICE_BOND, NMDeviceBond))
30 #define NM_DEVICE_BOND_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), NM_TYPE_DEVICE_BOND, NMDeviceBondClass))
31 #define NM_IS_DEVICE_BOND(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NM_TYPE_DEVICE_BOND))
32 #define NM_IS_DEVICE_BOND_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), NM_TYPE_DEVICE_BOND))
33 #define NM_DEVICE_BOND_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), NM_TYPE_DEVICE_BOND, NMDeviceBondClass))
34
35 /**
36  * NMDeviceBondError:
37  * @NM_DEVICE_BOND_ERROR_UNKNOWN: unknown or unclassified error
38  * @NM_DEVICE_BOND_ERROR_NOT_BOND_CONNECTION: the connection was not of bond type
39  * @NM_DEVICE_BOND_ERROR_INVALID_BOND_CONNECTION: the bond connection was invalid
40  * @NM_DEVICE_BOND_ERROR_INTERFACE_MISMATCH: the interfaces of the connection and the device mismatched
41  */
42 typedef enum {
43         NM_DEVICE_BOND_ERROR_UNKNOWN = 0,             /*< nick=UnknownError >*/
44         NM_DEVICE_BOND_ERROR_NOT_BOND_CONNECTION,     /*< nick=NotBondConnection >*/
45         NM_DEVICE_BOND_ERROR_INVALID_BOND_CONNECTION, /*< nick=InvalidBondConnection >*/
46         NM_DEVICE_BOND_ERROR_INTERFACE_MISMATCH,      /*< nick=InterfaceMismatch >*/
47 } NMDeviceBondError;
48
49 #define NM_DEVICE_BOND_ERROR nm_device_bond_error_quark ()
50 GQuark nm_device_bond_error_quark (void);
51
52 #define NM_DEVICE_BOND_HW_ADDRESS  "hw-address"
53 #define NM_DEVICE_BOND_CARRIER     "carrier"
54 #define NM_DEVICE_BOND_SLAVES      "slaves"
55
56 typedef struct {
57         NMDevice parent;
58 } NMDeviceBond;
59
60 typedef struct {
61         NMDeviceClass parent;
62
63         /* Padding for future expansion */
64         void (*_reserved1) (void);
65         void (*_reserved2) (void);
66         void (*_reserved3) (void);
67         void (*_reserved4) (void);
68         void (*_reserved5) (void);
69         void (*_reserved6) (void);
70 } NMDeviceBondClass;
71
72 GType nm_device_bond_get_type (void);
73
74 GObject *nm_device_bond_new (DBusGConnection *connection, const char *path);
75
76 const char      *nm_device_bond_get_hw_address (NMDeviceBond *device);
77 gboolean         nm_device_bond_get_carrier    (NMDeviceBond *device);
78 const GPtrArray *nm_device_bond_get_slaves     (NMDeviceBond *device);
79
80 G_END_DECLS
81
82 #endif /* NM_DEVICE_BOND_H */