mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-03 10:08:14 +02:00
libnm-glib: add IpInterface property
This commit is contained in:
parent
763f2f1d01
commit
6ab5a9597a
2 changed files with 36 additions and 0 deletions
|
|
@ -49,6 +49,7 @@ typedef struct {
|
|||
DBusGProxy *proxy;
|
||||
|
||||
char *iface;
|
||||
char *ip_iface;
|
||||
char *udi;
|
||||
char *driver;
|
||||
guint32 capabilities;
|
||||
|
|
@ -84,6 +85,7 @@ enum {
|
|||
PROP_PRODUCT,
|
||||
PROP_VENDOR,
|
||||
PROP_DHCP6_CONFIG,
|
||||
PROP_IP_INTERFACE,
|
||||
|
||||
LAST_PROP
|
||||
};
|
||||
|
|
@ -272,6 +274,7 @@ register_for_property_changed (NMDevice *device)
|
|||
const NMPropertiesChangedInfo property_changed_info[] = {
|
||||
{ NM_DEVICE_UDI, _nm_object_demarshal_generic, &priv->udi },
|
||||
{ NM_DEVICE_INTERFACE, _nm_object_demarshal_generic, &priv->iface },
|
||||
{ NM_DEVICE_IP_INTERFACE, _nm_object_demarshal_generic, &priv->ip_iface },
|
||||
{ NM_DEVICE_DRIVER, _nm_object_demarshal_generic, &priv->driver },
|
||||
{ NM_DEVICE_CAPABILITIES, _nm_object_demarshal_generic, &priv->capabilities },
|
||||
{ NM_DEVICE_MANAGED, _nm_object_demarshal_generic, &priv->managed },
|
||||
|
|
@ -379,6 +382,7 @@ finalize (GObject *object)
|
|||
NMDevicePrivate *priv = NM_DEVICE_GET_PRIVATE (object);
|
||||
|
||||
g_free (priv->iface);
|
||||
g_free (priv->ip_iface);
|
||||
g_free (priv->udi);
|
||||
g_free (priv->driver);
|
||||
g_free (priv->product);
|
||||
|
|
@ -402,6 +406,9 @@ get_property (GObject *object,
|
|||
case PROP_INTERFACE:
|
||||
g_value_set_string (value, nm_device_get_iface (device));
|
||||
break;
|
||||
case PROP_IP_INTERFACE:
|
||||
g_value_set_string (value, nm_device_get_ip_iface (device));
|
||||
break;
|
||||
case PROP_DRIVER:
|
||||
g_value_set_string (value, nm_device_get_driver (device));
|
||||
break;
|
||||
|
|
@ -746,6 +753,33 @@ nm_device_get_iface (NMDevice *device)
|
|||
return priv->iface;
|
||||
}
|
||||
|
||||
/**
|
||||
* nm_device_get_ip_iface:
|
||||
* @device: a #NMDevice
|
||||
*
|
||||
* Gets the IP interface name of the #NMDevice over which IP traffic flows
|
||||
* when the device is in the ACTIVATED state.
|
||||
*
|
||||
* Returns: the IP traffic interface of the device. This is the internal string
|
||||
* used by the device, and must not be modified.
|
||||
**/
|
||||
const char *
|
||||
nm_device_get_ip_iface (NMDevice *device)
|
||||
{
|
||||
NMDevicePrivate *priv;
|
||||
|
||||
g_return_val_if_fail (NM_IS_DEVICE (device), NULL);
|
||||
|
||||
priv = NM_DEVICE_GET_PRIVATE (device);
|
||||
if (!priv->ip_iface) {
|
||||
priv->ip_iface = _nm_object_get_string_property (NM_OBJECT (device),
|
||||
NM_DBUS_INTERFACE_DEVICE,
|
||||
"IpInterface");
|
||||
}
|
||||
|
||||
return priv->ip_iface;
|
||||
}
|
||||
|
||||
/**
|
||||
* nm_device_get_udi:
|
||||
* @device: a #NMDevice
|
||||
|
|
|
|||
|
|
@ -46,6 +46,7 @@ G_BEGIN_DECLS
|
|||
|
||||
#define NM_DEVICE_UDI "udi"
|
||||
#define NM_DEVICE_INTERFACE "interface"
|
||||
#define NM_DEVICE_IP_INTERFACE "ip-interface"
|
||||
#define NM_DEVICE_DRIVER "driver"
|
||||
#define NM_DEVICE_CAPABILITIES "capabilities"
|
||||
#define NM_DEVICE_MANAGED "managed"
|
||||
|
|
@ -85,6 +86,7 @@ GType nm_device_get_type (void);
|
|||
GObject * nm_device_new (DBusGConnection *connection, const char *path);
|
||||
|
||||
const char * nm_device_get_iface (NMDevice *device);
|
||||
const char * nm_device_get_ip_iface (NMDevice *device);
|
||||
const char * nm_device_get_udi (NMDevice *device);
|
||||
const char * nm_device_get_driver (NMDevice *device);
|
||||
guint32 nm_device_get_capabilities (NMDevice *device);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue