1 | /* SPDX-License-Identifier: LGPL-2.1-or-later */ |
---|---|
2 | /* |
3 | * Copyright (C) 2014 - 2018 Red Hat, Inc. |
4 | */ |
5 | |
6 | #ifndef __NM_TYPES_H__ |
7 | #define __NM_TYPES_H__ |
8 | |
9 | #include <gio/gio.h> |
10 | |
11 | #include "nm-dbus-interface.h" |
12 | #include "nm-connection.h" |
13 | |
14 | typedef struct _NMAccessPoint NMAccessPoint; |
15 | typedef struct _NMActiveConnection NMActiveConnection; |
16 | typedef struct _NMCheckpoint NMCheckpoint; |
17 | typedef struct _NMClient NMClient; |
18 | typedef struct _NMDevice NMDevice; |
19 | typedef struct _NMDevice6Lowpan NMDevice6Lowpan; |
20 | typedef struct _NMDeviceAdsl NMDeviceAdsl; |
21 | typedef struct _NMDeviceBond NMDeviceBond; |
22 | typedef struct _NMDeviceBridge NMDeviceBridge; |
23 | typedef struct _NMDeviceBt NMDeviceBt; |
24 | typedef struct _NMDeviceDummy NMDeviceDummy; |
25 | typedef struct _NMDeviceEthernet NMDeviceEthernet; |
26 | typedef struct _NMDeviceGeneric NMDeviceGeneric; |
27 | typedef struct _NMDeviceIPTunnel NMDeviceIPTunnel; |
28 | typedef struct _NMDeviceInfiniband NMDeviceInfiniband; |
29 | typedef struct _NMDeviceMacsec NMDeviceMacsec; |
30 | typedef struct _NMDeviceMacvlan NMDeviceMacvlan; |
31 | typedef struct _NMDeviceModem NMDeviceModem; |
32 | typedef struct _NMDeviceOlpcMesh NMDeviceOlpcMesh; |
33 | typedef struct _NMDeviceOvsBridge NMDeviceOvsBridge; |
34 | typedef struct _NMDeviceOvsInterface NMDeviceOvsInterface; |
35 | typedef struct _NMDeviceOvsPort NMDeviceOvsPort; |
36 | typedef struct _NMDevicePpp NMDevicePpp; |
37 | typedef struct _NMDeviceTeam NMDeviceTeam; |
38 | typedef struct _NMDeviceTun NMDeviceTun; |
39 | typedef struct _NMDeviceVeth NMDeviceVeth; |
40 | typedef struct _NMDeviceVlan NMDeviceVlan; |
41 | typedef struct _NMDeviceVrf NMDeviceVrf; |
42 | typedef struct _NMDeviceVxlan NMDeviceVxlan; |
43 | typedef struct _NMDeviceWifi NMDeviceWifi; |
44 | typedef struct _NMDeviceWifiP2P NMDeviceWifiP2P; |
45 | typedef struct _NMDeviceWimax NMDeviceWimax; |
46 | typedef struct _NMDeviceWireGuard NMDeviceWireGuard; |
47 | typedef struct _NMDeviceWpan NMDeviceWpan; |
48 | typedef struct _NMDhcpConfig NMDhcpConfig; |
49 | typedef struct _NMIPConfig NMIPConfig; |
50 | typedef struct _NMObject NMObject; |
51 | typedef struct _NMRemoteConnection NMRemoteConnection; |
52 | typedef struct _NMVpnConnection NMVpnConnection; |
53 | typedef struct _NMWifiP2PPeer NMWifiP2PPeer; |
54 | typedef struct _NMWimaxNsp NMWimaxNsp; |
55 | |
56 | #endif /* NM_TYPES_H */ |
57 |