device: renew dhcp leases on awake for software devices
[NetworkManager.git] / libnm-glib / nm-device-infiniband.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 2011 - 2012 Red Hat, Inc.
19  */
20
21 #ifndef NM_DEVICE_INFINIBAND_H
22 #define NM_DEVICE_INFINIBAND_H
23
24 #include "nm-device.h"
25
26 G_BEGIN_DECLS
27
28 #define NM_TYPE_DEVICE_INFINIBAND            (nm_device_infiniband_get_type ())
29 #define NM_DEVICE_INFINIBAND(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), NM_TYPE_DEVICE_INFINIBAND, NMDeviceInfiniband))
30 #define NM_DEVICE_INFINIBAND_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), NM_TYPE_DEVICE_INFINIBAND, NMDeviceInfinibandClass))
31 #define NM_IS_DEVICE_INFINIBAND(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NM_TYPE_DEVICE_INFINIBAND))
32 #define NM_IS_DEVICE_INFINIBAND_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), NM_TYPE_DEVICE_INFINIBAND))
33 #define NM_DEVICE_INFINIBAND_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), NM_TYPE_DEVICE_INFINIBAND, NMDeviceInfinibandClass))
34
35 /**
36  * NMDeviceInfinibandError:
37  * @NM_DEVICE_INFINIBAND_ERROR_UNKNOWN: unknown or unclassified error
38  * @NM_DEVICE_INFINIBAND_ERROR_NOT_INFINIBAND_CONNECTION: the connection was not of InfiniBand type
39  * @NM_DEVICE_INFINIBAND_ERROR_INVALID_INFINIBAND_CONNECTION: the InfiniBand connection was invalid
40  * @NM_DEVICE_INFINIBAND_ERROR_INVALID_DEVICE_MAC: the device's MAC was invalid
41  * @NM_DEVICE_INFINIBAND_ERROR_MAC_MISMATCH: the MACs of the connection and the device mismatched
42  */
43 typedef enum {
44         NM_DEVICE_INFINIBAND_ERROR_UNKNOWN = 0,                   /*< nick=UnknownError >*/
45         NM_DEVICE_INFINIBAND_ERROR_NOT_INFINIBAND_CONNECTION,     /*< nick=NotInfinibandConnection >*/
46         NM_DEVICE_INFINIBAND_ERROR_INVALID_INFINIBAND_CONNECTION, /*< nick=InvalidInfinibandConnection >*/
47         NM_DEVICE_INFINIBAND_ERROR_INVALID_DEVICE_MAC,            /*< nick=InvalidDeviceMac >*/
48         NM_DEVICE_INFINIBAND_ERROR_MAC_MISMATCH,                  /*< nick=MacMismatch >*/
49 } NMDeviceInfinibandError;
50
51 #define NM_DEVICE_INFINIBAND_ERROR nm_device_infiniband_error_quark ()
52 GQuark nm_device_infiniband_error_quark (void);
53
54 #define NM_DEVICE_INFINIBAND_HW_ADDRESS  "hw-address"
55 #define NM_DEVICE_INFINIBAND_CARRIER     "carrier"
56
57 typedef struct {
58         NMDevice parent;
59 } NMDeviceInfiniband;
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 } NMDeviceInfinibandClass;
72
73 GType nm_device_infiniband_get_type (void);
74
75 GObject *nm_device_infiniband_new (DBusGConnection *connection, const char *path);
76
77 const char * nm_device_infiniband_get_hw_address (NMDeviceInfiniband *device);
78 gboolean     nm_device_infiniband_get_carrier (NMDeviceInfiniband *device);
79
80 G_END_DECLS
81
82 #endif /* NM_DEVICE_INFINIBAND_H */