device: renew dhcp leases on awake for software devices
[NetworkManager.git] / libnm-glib / nm-device-bt.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 2008 - 2012 Red Hat, Inc.
19  * Copyright 2008 Novell, Inc.
20  */
21
22 #ifndef NM_DEVICE_BT_H
23 #define NM_DEVICE_BT_H
24
25 #include "NetworkManager.h"
26 #include "nm-device.h"
27
28 G_BEGIN_DECLS
29
30 #define NM_TYPE_DEVICE_BT            (nm_device_bt_get_type ())
31 #define NM_DEVICE_BT(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), NM_TYPE_DEVICE_BT, NMDeviceBt))
32 #define NM_DEVICE_BT_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), NM_TYPE_DEVICE_BT, NMDeviceBtClass))
33 #define NM_IS_DEVICE_BT(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NM_TYPE_DEVICE_BT))
34 #define NM_IS_DEVICE_BT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), NM_TYPE_DEVICE_BT))
35 #define NM_DEVICE_BT_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), NM_TYPE_DEVICE_BT, NMDeviceBtClass))
36
37 /**
38  * NMDeviceBtError:
39  * @NM_DEVICE_BT_ERROR_UNKNOWN: unknown or unclassified error
40  * @NM_DEVICE_BT_ERROR_NOT_BT_CONNECTION: the connection was not of bluetooth type
41  * @NM_DEVICE_BT_ERROR_INVALID_BT_CONNECTION: the bluetooth connection was invalid
42  * @NM_DEVICE_BT_ERROR_INVALID_DEVICE_MAC: the device's MAC was invalid
43  * @NM_DEVICE_BT_ERROR_MAC_MISMATCH: the MACs of the connection and the device mismatched
44  * @NM_DEVICE_BT_ERROR_MISSING_DEVICE_CAPS: the device missed required capabilities
45  */
46 typedef enum {
47         NM_DEVICE_BT_ERROR_UNKNOWN = 0,           /*< nick=UnknownError >*/
48         NM_DEVICE_BT_ERROR_NOT_BT_CONNECTION,     /*< nick=NotBtConnection >*/
49         NM_DEVICE_BT_ERROR_INVALID_BT_CONNECTION, /*< nick=InvalidBtConnection >*/
50         NM_DEVICE_BT_ERROR_INVALID_DEVICE_MAC,    /*< nick=InvalidDeviceMac >*/
51         NM_DEVICE_BT_ERROR_MAC_MISMATCH,          /*< nick=MacMismatch >*/
52         NM_DEVICE_BT_ERROR_MISSING_DEVICE_CAPS,   /*< nick=MissingDeviceCaps >*/
53 } NMDeviceBtError;
54
55 #define NM_DEVICE_BT_ERROR nm_device_bt_error_quark ()
56 GQuark nm_device_bt_error_quark (void);
57
58 #define NM_DEVICE_BT_HW_ADDRESS   "hw-address"
59 #define NM_DEVICE_BT_NAME         "name"
60 #define NM_DEVICE_BT_CAPABILITIES "bt-capabilities"
61
62 typedef struct {
63         NMDevice parent;
64 } NMDeviceBt;
65
66 typedef struct {
67         NMDeviceClass parent;
68
69         /* Padding for future expansion */
70         void (*_reserved1) (void);
71         void (*_reserved2) (void);
72         void (*_reserved3) (void);
73         void (*_reserved4) (void);
74         void (*_reserved5) (void);
75         void (*_reserved6) (void);
76 } NMDeviceBtClass;
77
78 GType nm_device_bt_get_type (void);
79
80 GObject *nm_device_bt_new (DBusGConnection *connection, const char *path);
81
82 const char *nm_device_bt_get_hw_address   (NMDeviceBt *device);
83
84 const char *nm_device_bt_get_name         (NMDeviceBt *device);
85
86 NMBluetoothCapabilities nm_device_bt_get_capabilities (NMDeviceBt *device);
87
88 G_END_DECLS
89
90 #endif /* NM_DEVICE_BT_H */