device: renew dhcp leases on awake for software devices
[NetworkManager.git] / libnm-glib / nm-device-team.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 2013 Jiri Pirko <jiri@resnulli.us>
19  */
20
21 #ifndef NM_DEVICE_TEAM_H
22 #define NM_DEVICE_TEAM_H
23
24 #include "nm-device.h"
25
26 G_BEGIN_DECLS
27
28 #define NM_TYPE_DEVICE_TEAM            (nm_device_team_get_type ())
29 #define NM_DEVICE_TEAM(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), NM_TYPE_DEVICE_TEAM, NMDeviceTeam))
30 #define NM_DEVICE_TEAM_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), NM_TYPE_DEVICE_TEAM, NMDeviceTeamClass))
31 #define NM_IS_DEVICE_TEAM(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NM_TYPE_DEVICE_TEAM))
32 #define NM_IS_DEVICE_TEAM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), NM_TYPE_DEVICE_TEAM))
33 #define NM_DEVICE_TEAM_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), NM_TYPE_DEVICE_TEAM, NMDeviceTeamClass))
34
35 /**
36  * NMDeviceTeamError:
37  * @NM_DEVICE_TEAM_ERROR_UNKNOWN: unknown or unclassified error
38  * @NM_DEVICE_TEAM_ERROR_NOT_TEAM_CONNECTION: the connection was not of team type
39  * @NM_DEVICE_TEAM_ERROR_INVALID_TEAM_CONNECTION: the team connection was invalid
40  * @NM_DEVICE_TEAM_ERROR_INTERFACE_MISMATCH: the interfaces of the connection and the device mismatched
41  */
42 typedef enum {
43         NM_DEVICE_TEAM_ERROR_UNKNOWN = 0,             /*< nick=UnknownError >*/
44         NM_DEVICE_TEAM_ERROR_NOT_TEAM_CONNECTION,     /*< nick=NotTeamConnection >*/
45         NM_DEVICE_TEAM_ERROR_INVALID_TEAM_CONNECTION, /*< nick=InvalidTeamConnection >*/
46         NM_DEVICE_TEAM_ERROR_INTERFACE_MISMATCH,      /*< nick=InterfaceMismatch >*/
47 } NMDeviceTeamError;
48
49 #define NM_DEVICE_TEAM_ERROR nm_device_team_error_quark ()
50 NM_AVAILABLE_IN_0_9_10
51 GQuark nm_device_team_error_quark (void);
52
53 #define NM_DEVICE_TEAM_HW_ADDRESS  "hw-address"
54 #define NM_DEVICE_TEAM_CARRIER     "carrier"
55 #define NM_DEVICE_TEAM_SLAVES      "slaves"
56
57 typedef struct {
58         NMDevice parent;
59 } NMDeviceTeam;
60
61 typedef struct {
62         NMDeviceClass parent;
63
64         /* Padding for future expansion */
65         void (*_reserved1) (void);
66         void (*_reserved2) (void);
67         void (*_reserved3) (void);
68         void (*_reserved4) (void);
69         void (*_reserved5) (void);
70         void (*_reserved6) (void);
71 } NMDeviceTeamClass;
72
73 NM_AVAILABLE_IN_0_9_10
74 GType nm_device_team_get_type (void);
75
76 NM_AVAILABLE_IN_0_9_10
77 GObject *nm_device_team_new (DBusGConnection *connection, const char *path);
78
79 const char      *nm_device_team_get_hw_address (NMDeviceTeam *device);
80 gboolean         nm_device_team_get_carrier    (NMDeviceTeam *device);
81 const GPtrArray *nm_device_team_get_slaves     (NMDeviceTeam *device);
82
83 G_END_DECLS
84
85 #endif /* NM_DEVICE_TEAM_H */