diff options
Diffstat (limited to 'src/libnm-platform/nm-platform-utils.h')
| -rw-r--r-- | src/libnm-platform/nm-platform-utils.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/libnm-platform/nm-platform-utils.h b/src/libnm-platform/nm-platform-utils.h index 14b09a79..18fc6155 100644 --- a/src/libnm-platform/nm-platform-utils.h +++ b/src/libnm-platform/nm-platform-utils.h @@ -54,10 +54,18 @@ gboolean nmp_utils_ethtool_get_ring(int ifindex, NMEthtoolRingState *ring); gboolean nmp_utils_ethtool_set_ring(int ifindex, const NMEthtoolRingState *ring); +gboolean nmp_utils_ethtool_get_channels(int ifindex, NMEthtoolChannelsState *channels); + +gboolean nmp_utils_ethtool_set_channels(int ifindex, const NMEthtoolChannelsState *channels); + gboolean nmp_utils_ethtool_get_pause(int ifindex, NMEthtoolPauseState *pause); gboolean nmp_utils_ethtool_set_pause(int ifindex, const NMEthtoolPauseState *pause); +gboolean nmp_utils_ethtool_get_eee(int ifindex, NMEthtoolEEEState *eee); + +gboolean nmp_utils_ethtool_set_eee(int ifindex, const NMEthtoolEEEState *eee); + /*****************************************************************************/ gboolean nmp_utils_mii_supports_carrier_detect(int ifindex); |