diff options
Diffstat (limited to 'src/libnm-client-public')
| -rw-r--r-- | src/libnm-client-public/NetworkManager.h | 2 | ||||
| -rw-r--r-- | src/libnm-client-public/meson.build | 1 | ||||
| -rw-r--r-- | src/libnm-client-public/nm-access-point.h | 4 | ||||
| -rw-r--r-- | src/libnm-client-public/nm-autoptr.h | 2 | ||||
| -rw-r--r-- | src/libnm-client-public/nm-device-hsr.h | 56 | ||||
| -rw-r--r-- | src/libnm-client-public/nm-device-ip-tunnel.h | 3 | ||||
| -rw-r--r-- | src/libnm-client-public/nm-ethtool-utils.h | 7 |
7 files changed, 75 insertions, 0 deletions
diff --git a/src/libnm-client-public/NetworkManager.h b/src/libnm-client-public/NetworkManager.h index 61adee29..646431f6 100644 --- a/src/libnm-client-public/NetworkManager.h +++ b/src/libnm-client-public/NetworkManager.h @@ -39,6 +39,7 @@ #include "nm-setting-generic.h" #include "nm-setting-gsm.h" #include "nm-setting-hostname.h" +#include "nm-setting-hsr.h" #include "nm-setting-infiniband.h" #include "nm-setting-ip4-config.h" #include "nm-setting-ip6-config.h" @@ -111,6 +112,7 @@ #include "nm-device-dummy.h" #include "nm-device-ethernet.h" #include "nm-device-generic.h" +#include "nm-device-hsr.h" #include "nm-device-infiniband.h" #include "nm-device-ip-tunnel.h" #include "nm-device-loopback.h" diff --git a/src/libnm-client-public/meson.build b/src/libnm-client-public/meson.build index bac7e457..dccbb11f 100644 --- a/src/libnm-client-public/meson.build +++ b/src/libnm-client-public/meson.build @@ -18,6 +18,7 @@ libnm_client_headers = files( 'nm-device-dummy.h', 'nm-device-ethernet.h', 'nm-device-generic.h', + 'nm-device-hsr.h', 'nm-device-infiniband.h', 'nm-device-ip-tunnel.h', 'nm-device-loopback.h', diff --git a/src/libnm-client-public/nm-access-point.h b/src/libnm-client-public/nm-access-point.h index 5a78e34f..f2cc1a4c 100644 --- a/src/libnm-client-public/nm-access-point.h +++ b/src/libnm-client-public/nm-access-point.h @@ -35,6 +35,7 @@ G_BEGIN_DECLS #define NM_ACCESS_POINT_MAX_BITRATE "max-bitrate" #define NM_ACCESS_POINT_STRENGTH "strength" #define NM_ACCESS_POINT_LAST_SEEN "last-seen" +#define NM_ACCESS_POINT_BANDWIDTH "bandwidth" /* DEPRECATED */ #define NM_ACCESS_POINT_HW_ADDRESS "hw-address" @@ -59,6 +60,9 @@ guint8 nm_access_point_get_strength(NMAccessPoint *ap); NM_AVAILABLE_IN_1_2 int nm_access_point_get_last_seen(NMAccessPoint *ap); +NM_AVAILABLE_IN_1_46 +guint32 nm_access_point_get_bandwidth(NMAccessPoint *ap); + GPtrArray *nm_access_point_filter_connections(NMAccessPoint *ap, const GPtrArray *connections); gboolean nm_access_point_connection_valid(NMAccessPoint *ap, NMConnection *connection); diff --git a/src/libnm-client-public/nm-autoptr.h b/src/libnm-client-public/nm-autoptr.h index fde6cccf..c38f270c 100644 --- a/src/libnm-client-public/nm-autoptr.h +++ b/src/libnm-client-public/nm-autoptr.h @@ -41,6 +41,7 @@ G_DEFINE_AUTOPTR_CLEANUP_FUNC(NMDeviceBt, g_object_unref) G_DEFINE_AUTOPTR_CLEANUP_FUNC(NMDeviceDummy, g_object_unref) G_DEFINE_AUTOPTR_CLEANUP_FUNC(NMDeviceEthernet, g_object_unref) G_DEFINE_AUTOPTR_CLEANUP_FUNC(NMDeviceGeneric, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(NMDeviceHsr, g_object_unref) G_DEFINE_AUTOPTR_CLEANUP_FUNC(NMDeviceIPTunnel, g_object_unref) G_DEFINE_AUTOPTR_CLEANUP_FUNC(NMDeviceInfiniband, g_object_unref) G_DEFINE_AUTOPTR_CLEANUP_FUNC(NMDeviceLoopback, g_object_unref) @@ -80,6 +81,7 @@ G_DEFINE_AUTOPTR_CLEANUP_FUNC(NMSettingEthtool, g_object_unref) G_DEFINE_AUTOPTR_CLEANUP_FUNC(NMSettingGeneric, g_object_unref) G_DEFINE_AUTOPTR_CLEANUP_FUNC(NMSettingGsm, g_object_unref) G_DEFINE_AUTOPTR_CLEANUP_FUNC(NMSettingHostname, g_object_unref) +G_DEFINE_AUTOPTR_CLEANUP_FUNC(NMSettingHsr, g_object_unref) G_DEFINE_AUTOPTR_CLEANUP_FUNC(NMSettingIP4Config, g_object_unref) G_DEFINE_AUTOPTR_CLEANUP_FUNC(NMSettingIP6Config, g_object_unref) G_DEFINE_AUTOPTR_CLEANUP_FUNC(NMSettingIPConfig, g_object_unref) diff --git a/src/libnm-client-public/nm-device-hsr.h b/src/libnm-client-public/nm-device-hsr.h new file mode 100644 index 00000000..102de95c --- /dev/null +++ b/src/libnm-client-public/nm-device-hsr.h @@ -0,0 +1,56 @@ +/* SPDX-License-Identifier: LGPL-2.1-or-later */ +/* + * Copyright (C) 2023 Red Hat, Inc. + */ + +#ifndef __NM_DEVICE_HSR_H__ +#define __NM_DEVICE_HSR_H__ + +#if !defined(__NETWORKMANAGER_H_INSIDE__) && !defined(NETWORKMANAGER_COMPILATION) +#error "Only <NetworkManager.h> can be included directly." +#endif + +#include "nm-device.h" + +G_BEGIN_DECLS + +#define NM_TYPE_DEVICE_HSR (nm_device_hsr_get_type()) +#define NM_DEVICE_HSR(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), NM_TYPE_DEVICE_HSR, NMDeviceHsr)) +#define NM_DEVICE_HSR_CLASS(klass) \ + (G_TYPE_CHECK_CLASS_CAST((klass), NM_TYPE_DEVICE_HSR, NMDeviceHsClass)) +#define NM_IS_DEVICE_HSR(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), NM_TYPE_DEVICE_HSR)) +#define NM_IS_DEVICE_HSR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), NM_TYPE_DEVICE_HSR)) +#define NM_DEVICE_HSR_GET_CLASS(obj) \ + (G_TYPE_INSTANCE_GET_CLASS((obj), NM_TYPE_DEVICE_HSR, NMDeviceHsrClass)) + +#define NM_DEVICE_HSR_PORT1 "port1" +#define NM_DEVICE_HSR_PORT2 "port2" +#define NM_DEVICE_HSR_SUPERVISION_ADDRESS "supervision-address" +#define NM_DEVICE_HSR_MULTICAST_SPEC "multicast-spec" +#define NM_DEVICE_HSR_PRP "prp" + +/** + * NMDeviceHsr: + * + * Since: 1.46 + */ +typedef struct _NMDeviceHsr NMDeviceHsr; +typedef struct _NMDeviceHsrClass NMDeviceHsrClass; + +NM_AVAILABLE_IN_1_46 +GType nm_device_hsr_get_type(void); + +NM_AVAILABLE_IN_1_46 +NMDevice *nm_device_hsr_get_port1(NMDeviceHsr *device); +NM_AVAILABLE_IN_1_46 +NMDevice *nm_device_hsr_get_port2(NMDeviceHsr *device); +NM_AVAILABLE_IN_1_46 +const char *nm_device_hsr_get_supervision_address(NMDeviceHsr *device); +NM_AVAILABLE_IN_1_46 +guint8 nm_device_hsr_get_multicast_spec(NMDeviceHsr *device); +NM_AVAILABLE_IN_1_46 +gboolean nm_device_hsr_get_prp(NMDeviceHsr *device); + +G_END_DECLS + +#endif /* __NM_DEVICE_HSR_H__ */ diff --git a/src/libnm-client-public/nm-device-ip-tunnel.h b/src/libnm-client-public/nm-device-ip-tunnel.h index 4b9b9f5b..c3c3d0f5 100644 --- a/src/libnm-client-public/nm-device-ip-tunnel.h +++ b/src/libnm-client-public/nm-device-ip-tunnel.h @@ -37,6 +37,7 @@ G_BEGIN_DECLS #define NM_DEVICE_IP_TUNNEL_OUTPUT_KEY "output-key" #define NM_DEVICE_IP_TUNNEL_ENCAPSULATION_LIMIT "encapsulation-limit" #define NM_DEVICE_IP_TUNNEL_FLOW_LABEL "flow-label" +#define NM_DEVICE_IP_TUNNEL_FWMARK "fwmark" #define NM_DEVICE_IP_TUNNEL_FLAGS "flags" /** @@ -72,6 +73,8 @@ NM_AVAILABLE_IN_1_2 guint8 nm_device_ip_tunnel_get_encapsulation_limit(NMDeviceIPTunnel *device); NM_AVAILABLE_IN_1_2 guint nm_device_ip_tunnel_get_flow_label(NMDeviceIPTunnel *device); +NM_AVAILABLE_IN_1_46 +guint32 nm_device_ip_tunnel_get_fwmark(NMDeviceIPTunnel *device); NM_AVAILABLE_IN_1_12 NMIPTunnelFlags nm_device_ip_tunnel_get_flags(NMDeviceIPTunnel *device); diff --git a/src/libnm-client-public/nm-ethtool-utils.h b/src/libnm-client-public/nm-ethtool-utils.h index fa9c3071..75fb63c5 100644 --- a/src/libnm-client-public/nm-ethtool-utils.h +++ b/src/libnm-client-public/nm-ethtool-utils.h @@ -104,6 +104,13 @@ G_BEGIN_DECLS #define NM_ETHTOOL_OPTNAME_PAUSE_RX "pause-rx" #define NM_ETHTOOL_OPTNAME_PAUSE_TX "pause-tx" +#define NM_ETHTOOL_OPTNAME_CHANNELS_RX "channels-rx" +#define NM_ETHTOOL_OPTNAME_CHANNELS_TX "channels-tx" +#define NM_ETHTOOL_OPTNAME_CHANNELS_OTHER "channels-other" +#define NM_ETHTOOL_OPTNAME_CHANNELS_COMBINED "channels-combined" + +#define NM_ETHTOOL_OPTNAME_EEE_ENABLED "eee-enabled" + /*****************************************************************************/ G_END_DECLS |