diff options
author | Lubomir Rintel <lkundrak@v3.sk> | 2017-10-02 08:39:09 +0200 |
---|---|---|
committer | Lubomir Rintel <lkundrak@v3.sk> | 2017-10-30 17:40:08 +0100 |
commit | 825120a59503a03b3841a9b12929f4209dc8b4e9 (patch) | |
tree | 1dd51440f4094eb2cc4ba454706934db1d96d422 /libnm | |
parent | 61ae2acde4ce16fb2d0476a374297e1f3f16985b (diff) |
introspection: add o.fd.NM.Device.OvsPort interface
Diffstat (limited to 'libnm')
-rw-r--r-- | libnm/nm-device.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libnm/nm-device.c b/libnm/nm-device.c index 96efbc348..6f972c6fa 100644 --- a/libnm/nm-device.c +++ b/libnm/nm-device.c @@ -262,6 +262,7 @@ coerce_type (NMDeviceType type) case NM_DEVICE_TYPE_BT: case NM_DEVICE_TYPE_OLPC_MESH: case NM_DEVICE_TYPE_OVS_INTERFACE: + case NM_DEVICE_TYPE_OVS_PORT: case NM_DEVICE_TYPE_WIMAX: case NM_DEVICE_TYPE_MODEM: case NM_DEVICE_TYPE_INFINIBAND: @@ -1525,6 +1526,8 @@ get_type_name (NMDevice *device) return _("OLPC Mesh"); case NM_DEVICE_TYPE_OVS_INTERFACE: return _("OpenVSwitch Interface"); + case NM_DEVICE_TYPE_OVS_PORT: + return _("OpenVSwitch Port"); case NM_DEVICE_TYPE_WIMAX: return _("WiMAX"); case NM_DEVICE_TYPE_MODEM: |