1 | /* SPDX-License-Identifier: LGPL-2.1-or-later */ |
---|---|
2 | /* |
3 | * Copyright (C) 2014 - 2018 Red Hat, Inc. |
4 | */ |
5 | |
6 | #ifndef __NM_CORE_TYPES_H__ |
7 | #define __NM_CORE_TYPES_H__ |
8 | |
9 | #include <glib-object.h> |
10 | |
11 | #include "nm-version.h" |
12 | #include "nm-dbus-interface.h" |
13 | #include "nm-core-enum-types.h" |
14 | |
15 | typedef struct _NMConnection NMConnection; |
16 | typedef struct _NMSetting NMSetting; |
17 | typedef struct _NMSetting6Lowpan NMSetting6Lowpan; |
18 | typedef struct _NMSetting8021x NMSetting8021x; |
19 | typedef struct _NMSettingAdsl NMSettingAdsl; |
20 | typedef struct _NMSettingBluetooth NMSettingBluetooth; |
21 | typedef struct _NMSettingBond NMSettingBond; |
22 | typedef struct _NMSettingBondPort NMSettingBondPort; |
23 | typedef struct _NMSettingBridge NMSettingBridge; |
24 | typedef struct _NMSettingBridgePort NMSettingBridgePort; |
25 | typedef struct _NMSettingCdma NMSettingCdma; |
26 | typedef struct _NMSettingConnection NMSettingConnection; |
27 | typedef struct _NMSettingDcb NMSettingDcb; |
28 | typedef struct _NMSettingDummy NMSettingDummy; |
29 | typedef struct _NMSettingEthtool NMSettingEthtool; |
30 | typedef struct _NMSettingGeneric NMSettingGeneric; |
31 | typedef struct _NMSettingGsm NMSettingGsm; |
32 | typedef struct _NMSettingHostname NMSettingHostname; |
33 | typedef struct _NMSettingIP4Config NMSettingIP4Config; |
34 | typedef struct _NMSettingIP6Config NMSettingIP6Config; |
35 | typedef struct _NMSettingIPConfig NMSettingIPConfig; |
36 | typedef struct _NMSettingIPTunnel NMSettingIPTunnel; |
37 | typedef struct _NMSettingInfiniband NMSettingInfiniband; |
38 | typedef struct _NMSettingMacsec NMSettingMacsec; |
39 | typedef struct _NMSettingMacvlan NMSettingMacvlan; |
40 | typedef struct _NMSettingMatch NMSettingMatch; |
41 | typedef struct _NMSettingOlpcMesh NMSettingOlpcMesh; |
42 | typedef struct _NMSettingOvsBridge NMSettingOvsBridge; |
43 | typedef struct _NMSettingOvsDpdk NMSettingOvsDpdk; |
44 | typedef struct _NMSettingOvsExternalIDs NMSettingOvsExternalIDs; |
45 | typedef struct _NMSettingOvsInterface NMSettingOvsInterface; |
46 | typedef struct _NMSettingOvsPatch NMSettingOvsPatch; |
47 | typedef struct _NMSettingOvsPort NMSettingOvsPort; |
48 | typedef struct _NMSettingPpp NMSettingPpp; |
49 | typedef struct _NMSettingPppoe NMSettingPppoe; |
50 | typedef struct _NMSettingProxy NMSettingProxy; |
51 | typedef struct _NMSettingSerial NMSettingSerial; |
52 | typedef struct _NMSettingSriov NMSettingSriov; |
53 | typedef struct _NMSettingTCConfig NMSettingTCConfig; |
54 | typedef struct _NMSettingTeam NMSettingTeam; |
55 | typedef struct _NMSettingTeamPort NMSettingTeamPort; |
56 | typedef struct _NMSettingTun NMSettingTun; |
57 | typedef struct _NMSettingUser NMSettingUser; |
58 | typedef struct _NMSettingVeth NMSettingVeth; |
59 | typedef struct _NMSettingVlan NMSettingVlan; |
60 | typedef struct _NMSettingVpn NMSettingVpn; |
61 | typedef struct _NMSettingVrf NMSettingVrf; |
62 | typedef struct _NMSettingVxlan NMSettingVxlan; |
63 | typedef struct _NMSettingWifiP2P NMSettingWifiP2P; |
64 | typedef struct _NMSettingWimax NMSettingWimax; |
65 | typedef struct _NMSettingWired NMSettingWired; |
66 | typedef struct _NMSettingWireGuard NMSettingWireGuard; |
67 | typedef struct _NMSettingWireless NMSettingWireless; |
68 | typedef struct _NMSettingWirelessSecurity NMSettingWirelessSecurity; |
69 | typedef struct _NMSettingWpan NMSettingWpan; |
70 | typedef struct _NMSimpleConnection NMSimpleConnection; |
71 | |
72 | typedef gboolean (*NMUtilsPredicateStr)(const char *str); |
73 | |
74 | #endif /* __NM_CORE_TYPES_H__ */ |
75 |