1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
2  *
3  * Copyright (C) 2011 Richard Hughes <richard@hughsie.com>
4  *
5  * Licensed under the GNU General Public License Version 2
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21 
22 #ifndef __NET_DEVICE_H
23 #define __NET_DEVICE_H
24 
25 #include <glib-object.h>
26 
27 #include <NetworkManager.h>
28 #include "net-object.h"
29 
30 G_BEGIN_DECLS
31 
32 #define NET_TYPE_DEVICE          (net_device_get_type ())
33 #define NET_DEVICE(o)            (G_TYPE_CHECK_INSTANCE_CAST ((o), NET_TYPE_DEVICE, NetDevice))
34 #define NET_DEVICE_CLASS(k)      (G_TYPE_CHECK_CLASS_CAST((k), NET_TYPE_DEVICE, NetDeviceClass))
35 #define NET_IS_DEVICE(o)         (G_TYPE_CHECK_INSTANCE_TYPE ((o), NET_TYPE_DEVICE))
36 #define NET_IS_DEVICE_CLASS(k)   (G_TYPE_CHECK_CLASS_TYPE ((k), NET_TYPE_DEVICE))
37 #define NET_DEVICE_GET_CLASS(o)  (G_TYPE_INSTANCE_GET_CLASS ((o), NET_TYPE_DEVICE, NetDeviceClass))
38 
39 typedef struct _NetDevicePrivate         NetDevicePrivate;
40 typedef struct _NetDevice                NetDevice;
41 typedef struct _NetDeviceClass           NetDeviceClass;
42 
43 struct _NetDevice
44 {
45          NetObject               parent;
46          NetDevicePrivate       *priv;
47 };
48 
49 struct _NetDeviceClass
50 {
51         NetObjectClass               parent_class;
52 
53         NMConnection * (*get_find_connection) (NetDevice *device);
54 };
55 
56 GType            net_device_get_type                    (void);
57 NetDevice       *net_device_new                         (void);
58 NMDevice        *net_device_get_nm_device               (NetDevice      *device);
59 NMConnection    *net_device_get_find_connection         (NetDevice      *device);
60 
61 GSList          *net_device_get_valid_connections       (NetDevice      *device);
62 
63 G_END_DECLS
64 
65 #endif /* __NET_DEVICE_H */
66 
67