From 35779c6675728fa6f0fd0a21cefb904408509c23 Mon Sep 17 00:00:00 2001 From: Sebastien Bacher Date: Mon, 5 Jul 2021 20:35:03 +0200 Subject: New upstream version 1.32.2 --- docs/libnm/html/NMClient.html | 70 +- docs/libnm/html/NMConnection.html | 55 +- docs/libnm/html/NMDevice.html | 231 ++++-- docs/libnm/html/NMSetting.html | 95 +-- docs/libnm/html/NMSetting8021x.html | 1030 ++---------------------- docs/libnm/html/NMSettingAdsl.html | 152 +--- docs/libnm/html/NMSettingBluetooth.html | 66 +- docs/libnm/html/NMSettingBond.html | 48 +- docs/libnm/html/NMSettingBridgePort.html | 111 +-- docs/libnm/html/NMSettingCdma.html | 125 +-- docs/libnm/html/NMSettingConnection.html | 600 +------------- docs/libnm/html/NMSettingDcb.html | 315 +------- docs/libnm/html/NMSettingDummy.html | 26 +- docs/libnm/html/NMSettingEthtool.html | 34 + docs/libnm/html/NMSettingGeneric.html | 26 +- docs/libnm/html/NMSettingGsm.html | 305 +------ docs/libnm/html/NMSettingIP4Config.html | 122 +-- docs/libnm/html/NMSettingIP6Config.html | 180 +---- docs/libnm/html/NMSettingIPConfig.html | 633 +++------------ docs/libnm/html/NMSettingIPTunnel.html | 274 +------ docs/libnm/html/NMSettingInfiniband.html | 127 +-- docs/libnm/html/NMSettingMacsec.html | 194 +---- docs/libnm/html/NMSettingMacvlan.html | 103 +-- docs/libnm/html/NMSettingMatch.html | 8 +- docs/libnm/html/NMSettingOlpcMesh.html | 80 +- docs/libnm/html/NMSettingPpp.html | 345 +------- docs/libnm/html/NMSettingPppoe.html | 125 +-- docs/libnm/html/NMSettingProxy.html | 94 +-- docs/libnm/html/NMSettingSerial.html | 115 +-- docs/libnm/html/NMSettingTeam.html | 314 +------- docs/libnm/html/NMSettingTeamPort.html | 164 +--- docs/libnm/html/NMSettingTun.html | 144 +--- docs/libnm/html/NMSettingVlan.html | 151 +--- docs/libnm/html/NMSettingVpn.html | 139 +--- docs/libnm/html/NMSettingVxlan.html | 324 +------- docs/libnm/html/NMSettingWimax.html | 76 +- docs/libnm/html/NMSettingWireGuard.html | 5 +- docs/libnm/html/NMSettingWired.html | 396 ++------- docs/libnm/html/NMSettingWireless.html | 434 +--------- docs/libnm/html/NMSettingWirelessSecurity.html | 395 +-------- docs/libnm/html/NMSimpleConnection.html | 36 +- docs/libnm/html/api-index-full.html | 814 ++++++++++--------- docs/libnm/html/index.html | 2 +- docs/libnm/html/libnm-nm-dbus-interface.html | 16 + docs/libnm/html/libnm-nm-errors.html | 2 +- docs/libnm/html/libnm-nm-utils.html | 8 +- docs/libnm/html/libnm-nm-version.html | 32 + docs/libnm/html/libnm.devhelp2 | 388 +-------- docs/libnm/html/style.css | 5 + docs/libnm/html/usage.html | 4 +- 50 files changed, 1319 insertions(+), 8219 deletions(-) (limited to 'docs/libnm/html') diff --git a/docs/libnm/html/NMClient.html b/docs/libnm/html/NMClient.html index 7e7c131d..2fbd804a 100644 --- a/docs/libnm/html/NMClient.html +++ b/docs/libnm/html/NMClient.html @@ -1188,10 +1188,35 @@ nm_dns_entry_get_vpn (NMClient * nm_client_new (GCancellable *cancellable, GError **error); -

Creates a new NMClient.

-

Note that this will do blocking D-Bus calls to initialize the -client. You can use nm_client_new_async() if you want to avoid -that.

+

Creates a new NMClient synchronously.

+

Note that this will block until a NMClient instance is fully initialized. +This does nothing beside calling g_initable_new(). You are free to call +g_initable_new() or g_object_new()/g_initable_init() directly for more +control, to set GObject properties or get access to the NMClient instance +while it is still initializing.

+

Using the synchronous initialization creates an NMClient instance +that uses an internal GMainContext. This context is invisible to the +user. This introduces an additional overhead that is payed not +only during object initialization, but for the entire lifetime of +this object. +Also, due to this internal GMainContext, the events are no longer +in sync with other messages from GDBusConnection (but all events +of the NMClient will themselves still be ordered). +For a serious program, you should therefore avoid these problems by +using g_async_initable_init_async() or nm_client_new_async() instead. +The sync initialization is still useful for simple scripts or interactive +testing for example via pygobject.

+

Creating an NMClient instance can only fail for two reasons. First, if you didn't +provide a NM_CLIENT_DBUS_CONNECTION and the call to g_bus_get() +fails. You can avoid that by using g_initable_new() directly and +set a D-Bus connection. +Second, if you cancelled the creation. If you do that, then note +that after the failure there might still be idle actions pending +which keep nm_client_get_main_context() alive. That means, +in that case you must continue iterating the context to avoid +leaks. See nm_client_get_context_busy_watcher().

+

Creating an NMClient instance when NetworkManager is not running +does not cause a failure.

Parameters

@@ -1226,11 +1251,25 @@ that.

nm_client_new_async (GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data); -

Creates a new NMClient and begins asynchronously initializing it. +

Creates a new NMClient asynchronously. callback - will be called when it is done; use -nm_client_new_finish() to get the result. Note that on an error, -the callback can be invoked with two first parameters as NULL.

+ will be called when it is done. Use +nm_client_new_finish() to get the result.

+

This does nothing beside calling g_async_initable_new_async(). You are free to +call g_async_initable_new_async() or g_object_new()/g_async_initable_init_async() +directly for more control, to set GObject properties or get access to the NMClient +instance while it is still initializing.

+

Creating an NMClient instance can only fail for two reasons. First, if you didn't +provide a NM_CLIENT_DBUS_CONNECTION and the call to g_bus_get() +fails. You can avoid that by using g_async_initable_new_async() directly and +set a D-Bus connection. +Second, if you cancelled the creation. If you do that, then note +that after the failure there might still be idle actions pending +which keep nm_client_get_main_context() alive. That means, +in that case you must continue iterating the context to avoid +leaks. See nm_client_get_context_busy_watcher().

+

Creating an NMClient instance when NetworkManager is not running +does not cause a failure.

Parameters

@@ -1416,14 +1455,21 @@ still outstanding and queued in the GMainContext. These outstanding callbacks keep the GMainContext alive. In order to fully release all resources, the user must keep iterating the main context until all these callbacks are handled. Of course, at this point no more actual callbacks will be invoked -for the user, those are all internally cancelled.

+for the user, those are all cancelled internally.

This just leaves one problem: how long does the user need to keep the GMainContext running to ensure everything is cleaned up? The answer is this GObject. Subscribe a weak reference to the returned object and keep iterating the main context until the object got unreferenced.

-

Note that after the NMClient instance gets destroyed, the remaining callbacks -will be invoked right away. That means, the user won't have to iterate the -main context much longer.

+

Note that after the NMClient instance gets destroyed, all outstanding operations +will be cancelled right away. That means, the user needs to iterate the GMainContext +a bit longer, but it is guaranteed that the cleanup happens soon after.

+

The way of using the context-busy-watch, is by registering a weak pointer to +see when it gets destroyed. That means, user code should not take additional +references on this object to not keep it alive longer.

+

If you plan to exit the program after releasing the NMClient instance +you may not need to worry about these "leaks". Also, if you anyway plan to continue +iterating the GMainContext afterwards, then you don't need to care when exactly +NMClient is gone completely.

[transfer none]

Since: 1.22

diff --git a/docs/libnm/html/NMConnection.html b/docs/libnm/html/NMConnection.html index 44e1f9b4..acb7fb2a 100644 --- a/docs/libnm/html/NMConnection.html +++ b/docs/libnm/html/NMConnection.html @@ -1405,7 +1405,7 @@ nm_connection_is_type (const char *type);

A convenience function to check if the given connection is a particular -type (ie wired, Wi-Fi, ppp, etc). Checks the “type” +type (ie wired, Wi-Fi, ppp, etc). Checks the “type” property of the connection and matches that against type .

@@ -2814,8 +2814,8 @@ an NM_VARIANT_TYPE_CONNECTION dictionary.


enum NMConnectionSerializationFlags

-

These flags determine which properties are serialized when calling when -calling nm_connection_to_dbus().

+

These flags determine which properties are serialized when calling +nm_connection_to_dbus().

Members

@@ -2833,24 +2833,65 @@ calling   + + + + + + + + + + + + + + + + + + + + diff --git a/docs/libnm/html/NMDevice.html b/docs/libnm/html/NMDevice.html index c1d5d86f..de4488bf 100644 --- a/docs/libnm/html/NMDevice.html +++ b/docs/libnm/html/NMDevice.html @@ -452,10 +452,10 @@ @@ -463,31 +463,31 @@ void @@ -495,22 +495,22 @@ gboolean - - @@ -652,6 +652,10 @@ + + + +

NM_CONNECTION_SERIALIZE_WITH_NON_SECRET

+

serialize properties that are +not secrets. Since 1.32.

+
 

NM_CONNECTION_SERIALIZE_NO_SECRETS

-

do not include secrets

+

this is a deprecated alias for +NM_CONNECTION_SERIALIZE_WITH_NON_SECRET +.

+
 

NM_CONNECTION_SERIALIZE_WITH_SECRETS

+

serialize all secrets. This flag is +ignored if any of NM_CONNECTION_SERIALIZE_WITH_SECRETS_AGENT_OWNED +, +NM_CONNECTION_SERIALIZE_WITH_SECRETS_SYSTEM_OWNED + or +NM_CONNECTION_SERIALIZE_WITH_SECRETS_NOT_SAVED + is set. Since 1.32.

 

NM_CONNECTION_SERIALIZE_ONLY_SECRETS

-

only serialize secrets

+

a deprecated alias for +NM_CONNECTION_SERIALIZE_WITH_SECRETS +.

 

NM_CONNECTION_SERIALIZE_WITH_SECRETS_AGENT_OWNED

-

if set, only secrets that -are agent owned will be serialized. Since: 1.20.

+

serialize agent-owned +secrets. Since: 1.20.

+
 

NM_CONNECTION_SERIALIZE_WITH_SECRETS_SYSTEM_OWNED

+

serialize system-owned +secrets. Since: 1.32.

+
 

NM_CONNECTION_SERIALIZE_WITH_SECRETS_NOT_SAVED

+

serialize secrets that +are marked as never saved. Since: 1.32.

 
-NMLldpNeighbor * +void -nm_lldp_neighbor_new () +nm_lldp_neighbor_ref ()
-nm_lldp_neighbor_ref () +nm_lldp_neighbor_unref ()
-void +char ** -nm_lldp_neighbor_unref () +nm_lldp_neighbor_get_attr_names ()
-char ** +GVariant * -nm_lldp_neighbor_get_attr_names () +nm_lldp_neighbor_get_attr_value ()
-gboolean +NMLldpNeighbor * -nm_lldp_neighbor_get_attr_string_value () +nm_lldp_neighbor_new ()
-nm_lldp_neighbor_get_attr_uint_value () +nm_lldp_neighbor_get_attr_string_value ()
const GVariantType * + +gboolean -nm_lldp_neighbor_get_attr_type () +nm_lldp_neighbor_get_attr_uint_value ()
-GVariant * +const GVariantType * -nm_lldp_neighbor_get_attr_value () +nm_lldp_neighbor_get_attr_type ()
#define NM_DEVICE_HW_ADDRESS
 NMLldpNeighbor
@@ -1068,7 +1072,7 @@ nm_device_set_autoconnect (

nm_device_set_autoconnect has been deprecated since version 1.22 and should not be used in newly-written code.

Use the async command nm_client_dbus_set_property() on -nm_object_get_path(), NM_DBUS_INTERFACE_DEVICE to set "AutoConnect" property to a "(b)" value. +nm_object_get_path(), NM_DBUS_INTERFACE_DEVICE to set "Autoconnect" property to a "(b)" value. This function is deprecated because it calls a synchronous D-Bus method and modifies the content of the NMClient cache client side.

@@ -2524,23 +2528,11 @@ that can be used on device
-

nm_lldp_neighbor_new ()

-
NMLldpNeighbor *
-nm_lldp_neighbor_new (void);
-

Creates a new NMLldpNeighbor object.

-
-

Returns

-

the new NMLldpNeighbor object.

-

[transfer full]

-
-

Since: 1.2

-
-
-

nm_lldp_neighbor_ref ()

void
 nm_lldp_neighbor_ref (NMLldpNeighbor *neighbor);

Increases the reference count of the object.

+

Since 1.32, ref-counting of NMLldpNeighbor is thread-safe.

Parameters

@@ -2565,6 +2557,7 @@ nm_lldp_neighbor_ref (NMLldpNeighbor *neighbor);

Decreases the reference count of the object. If the reference count reaches zero, the object will be destroyed.

+

Since 1.32, ref-counting of NMLldpNeighbor is thread-safe.

Parameters

@@ -2613,6 +2606,65 @@ nm_lldp_neighbor_get_attr_names (
+

nm_lldp_neighbor_get_attr_value ()

+
GVariant *
+nm_lldp_neighbor_get_attr_value (NMLldpNeighbor *neighbor,
+                                 const char *name);
+

Gets the value (as a GVariant) of attribute with name name + on neighbor +

+
+

Parameters

+
+++++ + + + + + + + + + + + + +

neighbor

the NMLldpNeighbor

 

name

the attribute name

 
+
+
+

Returns

+

the value or NULL if the attribute with name +was +not found.

+

[transfer none]

+
+

Since: 1.18

+
+
+
+

nm_lldp_neighbor_new ()

+
NMLldpNeighbor *
+nm_lldp_neighbor_new (void);
+

Creates a new NMLldpNeighbor object.

+

Note that NMLldpNeighbor has no public API for mutating +an instance. Also, libnm will not internally mutate a +once exposed object. They are guaranteed to be immutable. +Since 1.32, ref-counting is thread-safe.

+

This function is not useful, as there is no public API to +actually modify the (empty) instance.

+
+

Returns

+

the new NMLldpNeighbor object.

+

[transfer full]

+
+

Since: 1.2

+
+
+

nm_lldp_neighbor_get_attr_string_value ()

gboolean
 nm_lldp_neighbor_get_attr_string_value
@@ -2663,7 +2715,7 @@ was found, NMLldpNeighbor *neighbor,
                                       const char *name,
                                       guint *out_value);
-

Gets the uint value of attribute with name name +

Gets the uint32 value of attribute with name name on neighbor

@@ -2695,7 +2747,7 @@ nm_lldp_neighbor_get_attr_uint_value (

Returns

-

TRUE if a uint attribute with name name +

TRUE if a uint32 attribute with name name was found, FALSE otherwise

Since: 1.2

@@ -2736,46 +2788,6 @@ nm_lldp_neighbor_get_attr_type (

Since: 1.2

-
-
-

nm_lldp_neighbor_get_attr_value ()

-
GVariant *
-nm_lldp_neighbor_get_attr_value (NMLldpNeighbor *neighbor,
-                                 const char *name);
-

Gets the value (as a GVariant) of attribute with name name - on neighbor -

-
-

Parameters

-
----- - - - - - - - - - - - - -

neighbor

the NMLldpNeighbor

 

name

the attribute name

 
-
-
-

Returns

-

the value or NULL if the attribute with name -was -not found.

-

[transfer none]

-
-

Since: 1.18

-

Types and Values

@@ -2971,6 +2983,83 @@ not found.

#define NM_DEVICE_HW_ADDRESS            "hw-address"
 
+
+
+

NMLldpNeighbor

+
typedef struct _NMLldpNeighbor NMLldpNeighbor;
+

Supported attributes are:

+
+
-

Properties

-
----- - - - - - -
-char *nameRead
-
-

Types and Values

@@ -278,10 +261,6 @@ - - - - @@ -296,58 +275,6 @@ ╰── NMSettingMacRandomization GFlags╰── NMSettingSecretFlags - GObject - ╰── NMSetting - ├──NMSetting6Lowpan - ├──NMSetting8021x - ├──NMSettingAdsl - ├──NMSettingBluetooth - ├──NMSettingBond - ├──NMSettingBridge - ├──NMSettingBridgePort - ├──NMSettingCdma - ├──NMSettingConnection - ├──NMSettingDcb - ├──NMSettingDummy - ├──NMSettingEthtool - ├──NMSettingGeneric - ├──NMSettingGsm - ├──NMSettingHostname - ├──NMSettingInfiniband - ├──NMSettingIPConfig - ├──NMSettingIPTunnel - ├──NMSettingMacsec - ├──NMSettingMacvlan - ├──NMSettingMatch - ├──NMSettingOlpcMesh - ├──NMSettingOvsBridge - ├──NMSettingOvsDpdk - ├──NMSettingOvsExternalIDs - ├──NMSettingOvsInterface - ├──NMSettingOvsPatch - ├──NMSettingOvsPort - ├──NMSettingPpp - ├──NMSettingPppoe - ├──NMSettingProxy - ├──NMSettingSerial - ├──NMSettingSriov - ├──NMSettingTCConfig - ├──NMSettingTeam - ├──NMSettingTeamPort - ├──NMSettingTun - ├──NMSettingUser - ├──NMSettingVeth - ├──NMSettingVlan - ├──NMSettingVpn - ├──NMSettingVrf - ├──NMSettingVxlan - ├──NMSettingWifiP2P - ├──NMSettingWimax - ├──NMSettingWired - ├──NMSettingWireGuard - ├──NMSettingWireless - ├──NMSettingWirelessSecurity - ╰──NMSettingWpan
@@ -1474,13 +1401,6 @@ overridden by user-controlled defaults configuration, is "never".


-

NMSetting

-
typedef struct _NMSetting NMSetting;
-

The NMSetting struct contains only private data. -It should only be accessed through the functions described below.

-
-
-

enum NMSettingDiffResult

These values indicate the result of a setting difference operation.

@@ -1536,19 +1456,6 @@ if you specify NM_SETTING_COMPARE_FLAG_DIFF_RESULT_W
-
-

Property Details

-
-

The “name” property

-
  “name”                     char *
-

The setting's name, which uniquely identifies the setting within the -connection. Each setting type has a name unique to that type, for -example "ppp" or "802-11-wireless" or "802-3-ethernet".

-

Owner: NMSetting

-

Flags: Read

-

Default value: NULL

-
-
diff --git a/docs/libnm/html/NMSetting8021x.html b/docs/libnm/html/NMSetting8021x.html index 9f3fbf59..c79db83f 100644 --- a/docs/libnm/html/NMSetting8021x.html +++ b/docs/libnm/html/NMSetting8021x.html @@ -16,8 +16,7 @@
@@ -726,284 +725,6 @@
NMSettingMacRandomization
 NMSetting
enum NMSettingDiffResult
Top  |  Description  |  - Object Hierarchy  |  - Properties + Object Hierarchy Home Up
-

Properties

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
GStrvaltsubject-matchesRead / Write
-char *anonymous-identityRead / Write
intauth-timeoutRead / Write
-GBytes *ca-certRead / Write
-char *ca-cert-passwordRead / Write
NMSettingSecretFlagsca-cert-password-flagsRead / Write
-char *ca-pathRead / Write
-GBytes *client-certRead / Write
-char *client-cert-passwordRead / Write
NMSettingSecretFlagsclient-cert-password-flagsRead / Write
-char *domain-matchRead / Write
-char *domain-suffix-matchRead / Write
GStrveapRead / Write
-char *identityRead / Write
gbooleanoptionalRead / Write
-char *pac-fileRead / Write
-char *passwordRead / Write
NMSettingSecretFlagspassword-flagsRead / Write
-GBytes *password-rawRead / Write
NMSettingSecretFlagspassword-raw-flagsRead / Write
guintphase1-auth-flagsRead / Write
-char *phase1-fast-provisioningRead / Write
-char *phase1-peaplabelRead / Write
-char *phase1-peapverRead / Write
GStrvphase2-altsubject-matchesRead / Write
-char *phase2-authRead / Write
-char *phase2-autheapRead / Write
-GBytes *phase2-ca-certRead / Write
-char *phase2-ca-cert-passwordRead / Write
NMSettingSecretFlagsphase2-ca-cert-password-flagsRead / Write
-char *phase2-ca-pathRead / Write
-GBytes *phase2-client-certRead / Write
-char *phase2-client-cert-passwordRead / Write
NMSettingSecretFlagsphase2-client-cert-password-flagsRead / Write
-char *phase2-domain-matchRead / Write
-char *phase2-domain-suffix-matchRead / Write
-GBytes *phase2-private-keyRead / Write
-char *phase2-private-key-passwordRead / Write
NMSettingSecretFlagsphase2-private-key-password-flagsRead / Write
-char *phase2-subject-matchRead / Write
-char *pinRead / Write
NMSettingSecretFlagspin-flagsRead / Write
-GBytes *private-keyRead / Write
-char *private-key-passwordRead / Write
NMSettingSecretFlagsprivate-key-password-flagsRead / Write
-char *subject-matchRead / Write
gbooleansystem-ca-certsRead / Write
-
-

Types and Values

@@ -1223,10 +944,6 @@ - - - -
#define NM_SETTING_802_1X_OPTIONAL
 NMSetting8021x
@@ -1237,9 +954,6 @@ ╰── NMSetting8021xCKScheme GFlags ╰── NMSetting8021xAuthFlags - GObject - ╰── NMSetting - ╰── NMSetting8021x
@@ -1392,7 +1106,7 @@ nm_setting_802_1x_get_eap_method (NMSetting8021x *setting, const char *eap);

Adds an allowed EAP method. The setting is not valid until at least one -EAP method has been added. See “eap” property for a list of +EAP method has been added. See “eap” property for a list of allowed EAP methods.

Parameters

@@ -1545,7 +1259,7 @@ nm_setting_802_1x_get_anonymous_identity (NMSetting8021x *setting);

Returns the anonymous identifier used by some EAP methods (like TTLS) to authenticate the user in the outer unencrypted "phase 1" authentication. The -inner "phase 2" authentication will use the “identity” in +inner "phase 2" authentication will use the “identity” in a secure form, if applicable for that EAP method.

Parameters

@@ -1598,9 +1312,9 @@ nm_setting_802_1x_get_pac_file (

nm_setting_802_1x_get_system_ca_certs ()

gboolean
 nm_setting_802_1x_get_system_ca_certs (NMSetting8021x *setting);
-

Sets the “system-ca-certs” property. The -“ca-path” and “phase2-ca-path” -properties are ignored if the “system-ca-certs” property is +

Sets the “system-ca-certs” property. The +“ca-path” and “phase2-ca-path” +properties are ignored if the “system-ca-certs” property is TRUE, in which case a system-wide CA certificate directory specified at compile time (using the --system-ca-path configure option) is used in place of these properties.

@@ -1632,7 +1346,7 @@ nm_setting_802_1x_get_ca_path (Returns the path of the CA certificate directory if previously set. Systems will often have a directory that contains multiple individual CA certificates which the supplicant can then add to the verification chain. This may be -used in addition to the “ca-cert” property to add more CA +used in addition to the “ca-cert” property to add more CA certificates for verifying the network to client.

Parameters

@@ -1662,7 +1376,7 @@ nm_setting_802_1x_get_phase2_ca_path (“phase2-ca-cert” property +This may be used in addition to the “phase2-ca-cert” property to add more CA certificates for verifying the network to client.

Parameters

@@ -1817,7 +1531,7 @@ nm_setting_802_1x_set_ca_cert (NMSetting8021xCKScheme scheme, NMSetting8021xCKFormat *out_format, GError **error); -

Reads a certificate from disk and sets the “ca-cert” property +

Reads a certificate from disk and sets the “ca-cert” property with the raw certificate data if using the NM_SETTING_802_1X_CK_SCHEME_BLOB scheme, or with the path to the certificate file if using the NM_SETTING_802_1X_CK_SCHEME_PATH scheme.

@@ -1892,7 +1606,7 @@ nm_setting_802_1x_get_ca_cert_password

Returns

the password used to access the CA certificate stored in -“ca-cert” property. Only makes sense if the certificate +“ca-cert” property. Only makes sense if the certificate is stored on a PKCS#11 token that requires a login.

Since: 1.8

@@ -1921,7 +1635,7 @@ nm_setting_802_1x_get_ca_cert_password_flags

Returns

the NMSettingSecretFlags pertaining to the -“ca-cert-password”

+“ca-cert-password”

Since: 1.8

@@ -1947,7 +1661,7 @@ nm_setting_802_1x_get_subject_match (

Returns

-

the “subject-match” property. This is the +

the “subject-match” property. This is the substring to be matched against the subject of the authentication server certificate, or NULL no subject verification is to be performed.

@@ -1960,7 +1674,7 @@ performed.

nm_setting_802_1x_get_num_altsubject_matches (NMSetting8021x *setting);

Returns the number of entries in the -“altsubject-matches” property of this setting.

+“altsubject-matches” property of this setting.

Parameters

@@ -2170,7 +1884,7 @@ nm_setting_802_1x_get_domain_suffix_match

Returns

-

the “domain-suffix-match” property.

+

the “domain-suffix-match” property.

Since: 1.2

@@ -2196,7 +1910,7 @@ nm_setting_802_1x_get_domain_match (

Returns

-

the “domain-match” property.

+

the “domain-match” property.

Since: 1.24

@@ -2330,7 +2044,7 @@ nm_setting_802_1x_set_client_cert (NMSetting8021xCKScheme scheme, NMSetting8021xCKFormat *out_format, GError **error); -

Reads a certificate from disk and sets the “client-cert” +

Reads a certificate from disk and sets the “client-cert” property with the raw certificate data if using the NM_SETTING_802_1X_CK_SCHEME_BLOB scheme, or with the path to the certificate file if using the NM_SETTING_802_1X_CK_SCHEME_PATH scheme.

@@ -2409,7 +2123,7 @@ nm_setting_802_1x_get_client_cert_password

Returns

the password used to access the client certificate stored in -“client-cert” property. Only makes sense if the certificate +“client-cert” property. Only makes sense if the certificate is stored on a PKCS#11 token that requires a login.

Since: 1.8

@@ -2438,7 +2152,7 @@ nm_setting_802_1x_get_client_cert_password_flags

Returns

the NMSettingSecretFlags pertaining to the -“client-cert-password”

+“client-cert-password”

Since: 1.8

@@ -2465,7 +2179,7 @@ nm_setting_802_1x_get_phase1_peapver (

Returns

the "phase 1" PEAP version to be used when authenticating with -EAP-PEAP as contained in the “phase1-peapver” property. Valid +EAP-PEAP as contained in the “phase1-peapver” property. Valid values are NULL (unset), "0" (PEAP version 0), and "1" (PEAP version 1).

@@ -2494,7 +2208,7 @@ nm_setting_802_1x_get_phase1_peaplabel

Returns

whether the "phase 1" PEAP label is new-style or old-style, to be used when authenticating with EAP-PEAP, as contained in the -“phase1-peaplabel” property. Valid values are NULL (unset), +“phase1-peaplabel” property. Valid values are NULL (unset), "0" (use old-style label), and "1" (use new-style label). See the wpa_supplicant documentation for more details.

@@ -2523,7 +2237,7 @@ nm_setting_802_1x_get_phase1_fast_provisioning

Returns

whether "phase 1" PEAP fast provisioning should be used, as specified -by the “phase1-fast-provisioning” property. See the +by the “phase1-fast-provisioning” property. See the wpa_supplicant documentation for more details.

@@ -2550,7 +2264,7 @@ nm_setting_802_1x_get_phase2_auth (

Returns

the "phase 2" non-EAP (ex MD5) allowed authentication method as -specified by the “phase2-auth” property.

+specified by the “phase2-auth” property.


@@ -2576,7 +2290,7 @@ nm_setting_802_1x_get_phase2_autheap (

Returns

the "phase 2" EAP-based (ex TLS) allowed authentication method as -specified by the “phase2-autheap” property.

+specified by the “phase2-autheap” property.


@@ -2717,7 +2431,7 @@ nm_setting_802_1x_set_phase2_ca_cert (NMSetting8021xCKScheme scheme, NMSetting8021xCKFormat *out_format, GError **error); -

Reads a certificate from disk and sets the “phase2-ca-cert” +

Reads a certificate from disk and sets the “phase2-ca-cert” property with the raw certificate data if using the NM_SETTING_802_1X_CK_SCHEME_BLOB scheme, or with the path to the certificate file if using the NM_SETTING_802_1X_CK_SCHEME_PATH scheme.

@@ -2792,7 +2506,7 @@ nm_setting_802_1x_get_phase2_ca_cert_password

Returns

the password used to access the "phase2" CA certificate stored in -“phase2-ca-cert” property. Only makes sense if the certificate +“phase2-ca-cert” property. Only makes sense if the certificate is stored on a PKCS#11 token that requires a login.

Since: 1.8

@@ -2821,7 +2535,7 @@ nm_setting_802_1x_get_phase2_ca_cert_password_flags

Since: 1.8

@@ -2848,7 +2562,7 @@ nm_setting_802_1x_get_phase2_subject_match

Returns

-

the “phase2-subject-match” property. This is +

the “phase2-subject-match” property. This is the substring to be matched against the subject of the "phase 2" authentication server certificate, or NULL no subject verification is to be performed.

@@ -2861,7 +2575,7 @@ is to be performed.

nm_setting_802_1x_get_num_phase2_altsubject_matches (NMSetting8021x *setting);

Returns the number of entries in the -“phase2-altsubject-matches” property of this setting.

+“phase2-altsubject-matches” property of this setting.

Parameters

@@ -3072,7 +2786,7 @@ nm_setting_802_1x_get_phase2_domain_suffix_match

Returns

-

the “phase2-domain-suffix-match” property.

+

the “phase2-domain-suffix-match” property.

Since: 1.2

@@ -3099,7 +2813,7 @@ nm_setting_802_1x_get_phase2_domain_match

Returns

-

the “phase2-domain-match” property.

+

the “phase2-domain-match” property.

Since: 1.24

@@ -3238,7 +2952,7 @@ nm_setting_802_1x_set_phase2_client_cert NMSetting8021xCKScheme scheme, NMSetting8021xCKFormat *out_format, GError **error); -

Reads a certificate from disk and sets the “phase2-client-cert” +

Reads a certificate from disk and sets the “phase2-client-cert” property with the raw certificate data if using the NM_SETTING_802_1X_CK_SCHEME_BLOB scheme, or with the path to the certificate file if using the NM_SETTING_802_1X_CK_SCHEME_PATH scheme.

@@ -3317,7 +3031,7 @@ nm_setting_802_1x_get_phase2_client_cert_password

Returns

the password used to access the "phase2" client certificate stored in -“phase2-client-cert” property. Only makes sense if the certificate +“phase2-client-cert” property. Only makes sense if the certificate is stored on a PKCS#11 token that requires a login.

Since: 1.8

@@ -3346,7 +3060,7 @@ nm_setting_802_1x_get_phase2_client_cert_password_flags

Returns

the NMSettingSecretFlags pertaining to the -“phase2-client-cert-password”

+“phase2-client-cert-password”

Since: 1.8

@@ -3373,7 +3087,7 @@ nm_setting_802_1x_get_password (

Returns

the password used by the authentication method, if any, as specified -by the “password” property

+by the “password” property


@@ -3398,7 +3112,7 @@ nm_setting_802_1x_get_password_flags (

Returns

-

the NMSettingSecretFlags pertaining to the “password”

+

the NMSettingSecretFlags pertaining to the “password”


@@ -3425,7 +3139,7 @@ nm_setting_802_1x_get_password_raw (

Returns

the password used by the authentication method as a UTF-8-encoded array of bytes, as specified by the -“password-raw” property.

+“password-raw” property.

[transfer none]

@@ -3453,7 +3167,7 @@ nm_setting_802_1x_get_password_raw_flags
@@ -3479,7 +3193,7 @@ nm_setting_802_1x_get_pin (

Returns

the PIN used by the authentication method, if any, as specified -by the “pin” property

+by the “pin” property


@@ -3505,7 +3219,7 @@ nm_setting_802_1x_get_pin_flags (

Returns

the NMSettingSecretFlags pertaining to the -“pin”

+“pin”


@@ -3649,14 +3363,14 @@ nm_setting_802_1x_set_private_key (

This function reads a private key from disk and sets the -“private-key” property with the private key file data if using +“private-key” property with the private key file data if using the NM_SETTING_802_1X_CK_SCHEME_BLOB scheme, or with the path to the private key file if using the NM_SETTING_802_1X_CK_SCHEME_PATH scheme.

If password is given, this function attempts to decrypt the private key to verify that password is correct, and if it is, updates the -“private-key-password” property with the given password +“private-key-password” property with the given password . If the decryption is unsuccessful, FALSE is returned, error is set, and no @@ -3747,7 +3461,7 @@ nm_setting_802_1x_get_private_key_password

Returns

the private key password used to decrypt the private key if previously set with nm_setting_802_1x_set_private_key(), or the -“private-key-password” property.

+“private-key-password” property.


@@ -3774,7 +3488,7 @@ nm_setting_802_1x_get_private_key_password_flags
@@ -3801,7 +3515,7 @@ nm_setting_802_1x_get_private_key_format

Returns

the data format of the private key data stored in the -“private-key” property

+“private-key” property


@@ -3947,14 +3661,14 @@ nm_setting_802_1x_set_phase2_private_key when EAP-TLS is used as either the "phase 1" or "phase 2" 802.1x authentication method.

This function reads a private key from disk and sets the -“phase2-private-key” property with the private key file data if +“phase2-private-key” property with the private key file data if using the NM_SETTING_802_1X_CK_SCHEME_BLOB scheme, or with the path to the private key file if using the NM_SETTING_802_1X_CK_SCHEME_PATH scheme.

If password is given, this function attempts to decrypt the private key to verify that password is correct, and if it is, updates the -“phase2-private-key-password” property with the given +“phase2-private-key-password” property with the given password . If the decryption is unsuccessful, FALSE is returned, error is @@ -4046,7 +3760,7 @@ nm_setting_802_1x_get_phase2_private_key_password

Returns

the private key password used to decrypt the private key if previously set with nm_setting_802_1x_set_phase2_private_key() or the -“phase2-private-key-password” property.

+“phase2-private-key-password” property.


@@ -4073,7 +3787,7 @@ nm_setting_802_1x_get_phase2_private_key_password_flags
@@ -4100,7 +3814,7 @@ nm_setting_802_1x_get_phase2_private_key_format

Returns

the data format of the "phase 2" private key data stored in the -“phase2-private-key” property

+“phase2-private-key” property


@@ -4135,7 +3849,7 @@ nm_setting_802_1x_get_phase1_auth_flags

nm_setting_802_1x_get_auth_timeout ()

int
 nm_setting_802_1x_get_auth_timeout (NMSetting8021x *setting);
-

Returns the value contained in the “auth-timeout” property.

+

Returns the value contained in the “auth-timeout” property.

Parameters

@@ -4163,7 +3877,7 @@ global default value.

nm_setting_802_1x_get_optional ()

gboolean
 nm_setting_802_1x_get_optional (NMSetting8021x *setting);
-

Returns the value contained in the “optional” property.

+

Returns the value contained in the “optional” property.

Parameters

@@ -4643,648 +4357,6 @@ type.

#define NM_SETTING_802_1X_OPTIONAL                          "optional"
 
-
-
-

NMSetting8021x

-
typedef struct _NMSetting8021x NMSetting8021x;
-

IEEE 802.1x Authentication Settings

-
- -
-

Property Details

-
-

The “altsubject-matches” property

-
  “altsubject-matches”       GStrv
-

List of strings to be matched against the altSubjectName of the -certificate presented by the authentication server. If the list is empty, -no verification of the server certificate's altSubjectName is performed.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-
-
-
-

The “anonymous-identity” property

-
  “anonymous-identity”       char *
-

Anonymous identity string for EAP authentication methods. Used as the -unencrypted identity with EAP types that support different tunneled -identity like EAP-TTLS.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “auth-timeout” property

-
  “auth-timeout”             int
-

A timeout for the authentication. Zero means the global default; if the -global default is not set, the authentication timeout is 25 seconds.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-

Allowed values: >= 0

-

Default value: 0

-

Since: 1.8

-
-
-
-

The “ca-cert” property

-
  “ca-cert”                  GBytes *
-

Contains the CA certificate if used by the EAP method specified in the -“eap” property.

-

Certificate data is specified using a "scheme"; three are currently -supported: blob, path and pkcs11 URL. When using the blob scheme this property -should be set to the certificate's DER encoded data. When using the path -scheme, this property should be set to the full UTF-8 encoded path of the -certificate, prefixed with the string "file://" and ending with a terminating -NUL byte. -This property can be unset even if the EAP method supports CA certificates, -but this allows man-in-the-middle attacks and is NOT recommended.

-

Note that enabling NMSetting8021x:system-ca-certs will override this -setting to use the built-in path, if the built-in path is not a directory.

-

Setting this property directly is discouraged; use the -nm_setting_802_1x_set_ca_cert() function instead.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-
-
-
-

The “ca-cert-password” property

-
  “ca-cert-password”         char *
-

The password used to access the CA certificate stored in -“ca-cert” property. Only makes sense if the certificate -is stored on a PKCS#11 token that requires a login.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.8

-
-
-
-

The “ca-cert-password-flags” property

-
  “ca-cert-password-flags”   NMSettingSecretFlags
-

Flags indicating how to handle the “ca-cert-password” property.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-

Since: 1.8

-
-
-
-

The “ca-path” property

-
  “ca-path”                  char *
-

UTF-8 encoded path to a directory containing PEM or DER formatted -certificates to be added to the verification chain in addition to the -certificate specified in the “ca-cert” property.

-

If NMSetting8021x:system-ca-certs is enabled and the built-in CA -path is an existing directory, then this setting is ignored.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “client-cert” property

-
  “client-cert”              GBytes *
-

Contains the client certificate if used by the EAP method specified in -the “eap” property.

-

Certificate data is specified using a "scheme"; two are currently -supported: blob and path. When using the blob scheme (which is backwards -compatible with NM 0.7.x) this property should be set to the -certificate's DER encoded data. When using the path scheme, this property -should be set to the full UTF-8 encoded path of the certificate, prefixed -with the string "file://" and ending with a terminating NUL byte.

-

Setting this property directly is discouraged; use the -nm_setting_802_1x_set_client_cert() function instead.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-
-
-
-

The “client-cert-password” property

-
  “client-cert-password”     char *
-

The password used to access the client certificate stored in -“client-cert” property. Only makes sense if the certificate -is stored on a PKCS#11 token that requires a login.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.8

-
-
-
-

The “client-cert-password-flags” property

-
  “client-cert-password-flags” NMSettingSecretFlags
-

Flags indicating how to handle the “client-cert-password” property.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-

Since: 1.8

-
-
-
-

The “domain-match” property

-
  “domain-match”             char *
-

Constraint for server domain name. If set, this list of FQDNs is used as -a match requirement for dNSName element(s) of the certificate presented -by the authentication server. If a matching dNSName is found, this -constraint is met. If no dNSName values are present, this constraint is -matched against SubjectName CN using the same comparison. -Multiple valid FQDNs can be passed as a ";" delimited list.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.24

-
-
-
-

The “domain-suffix-match” property

-
  “domain-suffix-match”      char *
-

Constraint for server domain name. If set, this FQDN is used as a suffix -match requirement for dNSName element(s) of the certificate presented by -the authentication server. If a matching dNSName is found, this -constraint is met. If no dNSName values are present, this constraint is -matched against SubjectName CN using same suffix match comparison. -Since version 1.24, multiple valid FQDNs can be passed as a ";" delimited -list.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.2

-
-
-
-

The “eap” property

-
  “eap”                      GStrv
-

The allowed EAP method to be used when authenticating to the network with -802.1x. Valid methods are: "leap", "md5", "tls", "peap", "ttls", "pwd", -and "fast". Each method requires different configuration using the -properties of this setting; refer to wpa_supplicant documentation for the -allowed combinations.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-
-
-
-

The “identity” property

-
  “identity”                 char *
-

Identity string for EAP authentication methods. Often the user's user or -login name.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “optional” property

-
  “optional”                 gboolean
-

Whether the 802.1X authentication is optional. If TRUE, the activation -will continue even after a timeout or an authentication failure. Setting -the property to TRUE is currently allowed only for Ethernet connections. -If set to FALSE, the activation can continue only after a successful -authentication.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-

Default value: FALSE

-

Since: 1.22

-
-
-
-

The “pac-file” property

-
  “pac-file”                 char *
-

UTF-8 encoded file path containing PAC for EAP-FAST.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “password” property

-
  “password”                 char *
-

UTF-8 encoded password used for EAP authentication methods. If both the -“password” property and the “password-raw” -property are specified, “password” is preferred.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “password-flags” property

-
  “password-flags”           NMSettingSecretFlags
-

Flags indicating how to handle the “password” property.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-
-
-
-

The “password-raw” property

-
  “password-raw”             GBytes *
-

Password used for EAP authentication methods, given as a byte array to -allow passwords in other encodings than UTF-8 to be used. If both the -“password” property and the “password-raw” -property are specified, “password” is preferred.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-
-
-
-

The “password-raw-flags” property

-
  “password-raw-flags”       NMSettingSecretFlags
-

Flags indicating how to handle the “password-raw” property.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-
-
-
-

The “phase1-auth-flags” property

-
  “phase1-auth-flags”        guint
-

Specifies authentication flags to use in "phase 1" outer -authentication using NMSetting8021xAuthFlags options. -The individual TLS versions can be explicitly disabled. If a certain -TLS disable flag is not set, it is up to the supplicant to allow -or forbid it. The TLS options map to tls_disable_tlsv1_x settings. -See the wpa_supplicant documentation for more details.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-

Default value: 0

-

Since: 1.8

-
-
-
-

The “phase1-fast-provisioning” property

-
  “phase1-fast-provisioning” char *
-

Enables or disables in-line provisioning of EAP-FAST credentials when -FAST is specified as the EAP method in the “eap” property. -Recognized values are "0" (disabled), "1" (allow unauthenticated -provisioning), "2" (allow authenticated provisioning), and "3" (allow -both authenticated and unauthenticated provisioning). See the -wpa_supplicant documentation for more details.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “phase1-peaplabel” property

-
  “phase1-peaplabel”         char *
-

Forces use of the new PEAP label during key derivation. Some RADIUS -servers may require forcing the new PEAP label to interoperate with -PEAPv1. Set to "1" to force use of the new PEAP label. See the -wpa_supplicant documentation for more details.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “phase1-peapver” property

-
  “phase1-peapver”           char *
-

Forces which PEAP version is used when PEAP is set as the EAP method in -the “eap” property. When unset, the version reported by -the server will be used. Sometimes when using older RADIUS servers, it -is necessary to force the client to use a particular PEAP version. To do -so, this property may be set to "0" or "1" to force that specific PEAP -version.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “phase2-altsubject-matches” property

-
  “phase2-altsubject-matches” GStrv
-

List of strings to be matched against the altSubjectName of the -certificate presented by the authentication server during the inner -"phase 2" authentication. If the list is empty, no verification of the -server certificate's altSubjectName is performed.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-
-
-
-

The “phase2-auth” property

-
  “phase2-auth”              char *
-

Specifies the allowed "phase 2" inner authentication method when an EAP -method that uses an inner TLS tunnel is specified in the “eap” -property. For TTLS this property selects one of the supported non-EAP -inner methods: "pap", "chap", "mschap", "mschapv2" while -“phase2-autheap” selects an EAP inner method. For PEAP -this selects an inner EAP method, one of: "gtc", "otp", "md5" and "tls". -Each "phase 2" inner method requires specific parameters for successful -authentication; see the wpa_supplicant documentation for more details. -Both “phase2-auth” and “phase2-autheap” cannot -be specified.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “phase2-autheap” property

-
  “phase2-autheap”           char *
-

Specifies the allowed "phase 2" inner EAP-based authentication method -when TTLS is specified in the “eap” property. Recognized -EAP-based "phase 2" methods are "md5", "mschapv2", "otp", "gtc", and -"tls". Each "phase 2" inner method requires specific parameters for -successful authentication; see the wpa_supplicant documentation for -more details.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “phase2-ca-cert” property

-
  “phase2-ca-cert”           GBytes *
-

Contains the "phase 2" CA certificate if used by the EAP method specified -in the “phase2-auth” or “phase2-autheap” -properties.

-

Certificate data is specified using a "scheme"; three are currently -supported: blob, path and pkcs11 URL. When using the blob scheme this property -should be set to the certificate's DER encoded data. When using the path -scheme, this property should be set to the full UTF-8 encoded path of the -certificate, prefixed with the string "file://" and ending with a terminating -NUL byte. -This property can be unset even if the EAP method supports CA certificates, -but this allows man-in-the-middle attacks and is NOT recommended.

-

Note that enabling NMSetting8021x:system-ca-certs will override this -setting to use the built-in path, if the built-in path is not a directory.

-

Setting this property directly is discouraged; use the -nm_setting_802_1x_set_phase2_ca_cert() function instead.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-
-
-
-

The “phase2-ca-cert-password” property

-
  “phase2-ca-cert-password”  char *
-

The password used to access the "phase2" CA certificate stored in -“phase2-ca-cert” property. Only makes sense if the certificate -is stored on a PKCS#11 token that requires a login.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.8

-
-
-
-

The “phase2-ca-cert-password-flags” property

-
  “phase2-ca-cert-password-flags” NMSettingSecretFlags
-

Flags indicating how to handle the “phase2-ca-cert-password” property.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-

Since: 1.8

-
-
-
-

The “phase2-ca-path” property

-
  “phase2-ca-path”           char *
-

UTF-8 encoded path to a directory containing PEM or DER formatted -certificates to be added to the verification chain in addition to the -certificate specified in the “phase2-ca-cert” property.

-

If NMSetting8021x:system-ca-certs is enabled and the built-in CA -path is an existing directory, then this setting is ignored.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “phase2-client-cert” property

-
  “phase2-client-cert”       GBytes *
-

Contains the "phase 2" client certificate if used by the EAP method -specified in the “phase2-auth” or -“phase2-autheap” properties.

-

Certificate data is specified using a "scheme"; two are currently -supported: blob and path. When using the blob scheme (which is backwards -compatible with NM 0.7.x) this property should be set to the -certificate's DER encoded data. When using the path scheme, this property -should be set to the full UTF-8 encoded path of the certificate, prefixed -with the string "file://" and ending with a terminating NUL byte. This -property can be unset even if the EAP method supports CA certificates, -but this allows man-in-the-middle attacks and is NOT recommended.

-

Setting this property directly is discouraged; use the -nm_setting_802_1x_set_phase2_client_cert() function instead.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-
-
-
-

The “phase2-client-cert-password” property

-
  “phase2-client-cert-password” char *
-

The password used to access the "phase2" client certificate stored in -“phase2-client-cert” property. Only makes sense if the certificate -is stored on a PKCS#11 token that requires a login.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.8

-
-
-
-

The “phase2-client-cert-password-flags” property

-
  “phase2-client-cert-password-flags” NMSettingSecretFlags
-

Flags indicating how to handle the “phase2-client-cert-password” property.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-

Since: 1.8

-
-
-
-

The “phase2-domain-match” property

-
  “phase2-domain-match”      char *
-

Constraint for server domain name. If set, this list of FQDNs is used as -a match requirement for dNSName element(s) of the certificate presented -by the authentication server during the inner "phase 2" authentication. -If a matching dNSName is found, this constraint is met. If no dNSName -values are present, this constraint is matched against SubjectName CN -using the same comparison. -Multiple valid FQDNs can be passed as a ";" delimited list.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.24

-
-
-
-

The “phase2-domain-suffix-match” property

-
  “phase2-domain-suffix-match” char *
-

Constraint for server domain name. If set, this FQDN is used as a suffix -match requirement for dNSName element(s) of the certificate presented by -the authentication server during the inner "phase 2" authentication. If -a matching dNSName is found, this constraint is met. If no dNSName -values are present, this constraint is matched against SubjectName CN -using same suffix match comparison. -Since version 1.24, multiple valid FQDNs can be passed as a ";" delimited -list.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.2

-
-
-
-

The “phase2-private-key” property

-
  “phase2-private-key”       GBytes *
-

Contains the "phase 2" inner private key when the -“phase2-auth” or “phase2-autheap” property is -set to "tls".

-

Key data is specified using a "scheme"; two are currently supported: blob -and path. When using the blob scheme and private keys, this property -should be set to the key's encrypted PEM encoded data. When using private -keys with the path scheme, this property should be set to the full UTF-8 -encoded path of the key, prefixed with the string "file://" and ending -with a terminating NUL byte. When using PKCS#12 format private -keys and the blob scheme, this property should be set to the -PKCS#12 data and the “phase2-private-key-password” -property must be set to password used to decrypt the PKCS#12 -certificate and key. When using PKCS#12 files and the path -scheme, this property should be set to the full UTF-8 encoded path of the -key, prefixed with the string "file://" and ending with a terminating -NUL byte, and as with the blob scheme the -“phase2-private-key-password” property must be set to the -password used to decode the PKCS#12 private key and certificate.

-

Setting this property directly is discouraged; use the -nm_setting_802_1x_set_phase2_private_key() function instead.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-
-
-
-

The “phase2-private-key-password” property

-
  “phase2-private-key-password” char *
-

The password used to decrypt the "phase 2" private key specified in the -“phase2-private-key” property when the private key either -uses the path scheme, or is a PKCS#12 format key. Setting this -property directly is not generally necessary except when returning -secrets to NetworkManager; it is generally set automatically when setting -the private key by the nm_setting_802_1x_set_phase2_private_key() -function.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “phase2-private-key-password-flags” property

-
  “phase2-private-key-password-flags” NMSettingSecretFlags
-

Flags indicating how to handle the -“phase2-private-key-password” property.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-
-
-
-

The “phase2-subject-match” property

-
  “phase2-subject-match”     char *
-

Substring to be matched against the subject of the certificate presented -by the authentication server during the inner "phase 2" -authentication. When unset, no verification of the authentication server -certificate's subject is performed. This property provides little security, -if any, and its use is deprecated in favor of -NMSetting8021x:phase2-domain-suffix-match.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “pin” property

-
  “pin”                      char *
-

PIN used for EAP authentication methods.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “pin-flags” property

-
  “pin-flags”                NMSettingSecretFlags
-

Flags indicating how to handle the “pin” property.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-
-
-
-

The “private-key” property

-
  “private-key”              GBytes *
-

Contains the private key when the “eap” property is set to -"tls".

-

Key data is specified using a "scheme"; two are currently supported: blob -and path. When using the blob scheme and private keys, this property -should be set to the key's encrypted PEM encoded data. When using private -keys with the path scheme, this property should be set to the full UTF-8 -encoded path of the key, prefixed with the string "file://" and ending -with a terminating NUL byte. When using PKCS#12 format private -keys and the blob scheme, this property should be set to the -PKCS#12 data and the “private-key-password” -property must be set to password used to decrypt the PKCS#12 -certificate and key. When using PKCS#12 files and the path -scheme, this property should be set to the full UTF-8 encoded path of the -key, prefixed with the string "file://" and ending with a terminating -NUL byte, and as with the blob scheme the "private-key-password" property -must be set to the password used to decode the PKCS#12 private -key and certificate.

-

Setting this property directly is discouraged; use the -nm_setting_802_1x_set_private_key() function instead.

-

WARNING: “private-key” is not a "secret" property, and thus -unencrypted private key data using the BLOB scheme may be readable by -unprivileged users. Private keys should always be encrypted with a -private key password to prevent unauthorized access to unencrypted -private key data.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-
-
-
-

The “private-key-password” property

-
  “private-key-password”     char *
-

The password used to decrypt the private key specified in the -“private-key” property when the private key either uses the -path scheme, or if the private key is a PKCS#12 format key. Setting this -property directly is not generally necessary except when returning -secrets to NetworkManager; it is generally set automatically when setting -the private key by the nm_setting_802_1x_set_private_key() function.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “private-key-password-flags” property

-
  “private-key-password-flags” NMSettingSecretFlags
-

Flags indicating how to handle the “private-key-password” -property.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-
-
-
-

The “subject-match” property

-
  “subject-match”            char *
-

Substring to be matched against the subject of the certificate presented -by the authentication server. When unset, no verification of the -authentication server certificate's subject is performed. This property -provides little security, if any, and its use is deprecated in favor of -NMSetting8021x:domain-suffix-match.

-

Owner: NMSetting8021x

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “system-ca-certs” property

-
  “system-ca-certs”          gboolean
-

When TRUE, overrides the “ca-path” and -“phase2-ca-path” properties using the system CA directory -specified at configure time with the --system-ca-path switch. The -certificates in this directory are added to the verification chain in -addition to any certificates specified by the “ca-cert” and -“phase2-ca-cert” properties. If the path provided with ---system-ca-path is rather a file name (bundle of trusted CA certificates), -it overrides “ca-cert” and “phase2-ca-cert” -properties instead (sets ca_cert/ca_cert2 options for wpa_supplicant).

-

Owner: NMSetting8021x

-

Flags: Read / Write

-

Default value: FALSE

-
@@ -105,57 +103,6 @@
-

Properties

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-char *encapsulationRead / Write
-char *passwordRead / Write
NMSettingSecretFlagspassword-flagsRead / Write
-char *protocolRead / Write
-char *usernameRead / Write
guintvciRead / Write
guintvpiRead / Write
-
-

Types and Values

@@ -215,21 +162,10 @@ - - - -
#define NM_SETTING_ADSL_ENCAPSULATION_LLC
 NMSettingAdsl
-

Object Hierarchy

-
    GObject
-    ╰── NMSetting
-        ╰── NMSettingAdsl
-
-
-

Description

The NMSettingAdsl object is a NMSetting subclass that describes properties of ADSL connections.

@@ -268,7 +204,7 @@ nm_setting_adsl_get_username (

Returns

-

the “username” property of the setting

+

the “username” property of the setting


@@ -293,7 +229,7 @@ nm_setting_adsl_get_password (

Returns

-

the “password” property of the setting

+

the “password” property of the setting


@@ -318,7 +254,7 @@ nm_setting_adsl_get_protocol (

Returns

-

the “protocol” property of the setting

+

the “protocol” property of the setting


@@ -343,7 +279,7 @@ nm_setting_adsl_get_encapsulation (

Returns

-

the “encapsulation” property of the setting

+

the “encapsulation” property of the setting


@@ -368,7 +304,7 @@ nm_setting_adsl_get_vpi (

Returns

-

the “vpi” property of the setting

+

the “vpi” property of the setting


@@ -393,7 +329,7 @@ nm_setting_adsl_get_vci (

Returns

-

the “vci” property of the setting

+

the “vci” property of the setting


@@ -418,7 +354,7 @@ nm_setting_adsl_get_password_flags (

Returns

-

the NMSettingSecretFlags pertaining to the “password”

+

the NMSettingSecretFlags pertaining to the “password”

@@ -501,78 +437,6 @@ nm_setting_adsl_get_password_flags (#define NM_SETTING_ADSL_ENCAPSULATION_LLC "llc" -
-
-

NMSettingAdsl

-
typedef struct _NMSettingAdsl NMSettingAdsl;
-

ADSL Settings

-
- -
-

Property Details

-
-

The “encapsulation” property

-
  “encapsulation”            char *
-

Encapsulation of ADSL connection. Can be "vcmux" or "llc".

-

Owner: NMSettingAdsl

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “password” property

-
  “password”                 char *
-

Password used to authenticate with the ADSL service.

-

Owner: NMSettingAdsl

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “password-flags” property

-
  “password-flags”           NMSettingSecretFlags
-

Flags indicating how to handle the “password” property.

-

Owner: NMSettingAdsl

-

Flags: Read / Write

-
-
-
-

The “protocol” property

-
  “protocol”                 char *
-

ADSL connection protocol. Can be "pppoa", "pppoe" or "ipoatm".

-

Owner: NMSettingAdsl

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “username” property

-
  “username”                 char *
-

Username used to authenticate with the ADSL service.

-

Owner: NMSettingAdsl

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “vci” property

-
  “vci”                      guint
-

VCI of ADSL connection

-

Owner: NMSettingAdsl

-

Flags: Read / Write

-

Allowed values: <= 65536

-

Default value: 0

-
-
-
-

The “vpi” property

-
  “vpi”                      guint
-

VPI of ADSL connection

-

Owner: NMSettingAdsl

-

Flags: Read / Write

-

Allowed values: <= 65536

-

Default value: 0

-
-

Properties

-
----- - - - - - - - - - - - - -
-char *bdaddrRead / Write
-char *typeRead / Write
-
-

Types and Values

@@ -122,21 +96,10 @@ - - - -
#define NM_SETTING_BLUETOOTH_TYPE_NAP
 NMSettingBluetooth
-

Object Hierarchy

-
    GObject
-    ╰── NMSetting
-        ╰── NMSettingBluetooth
-
-
-

Description

The NMSettingBluetooth object is a NMSetting subclass that describes properties necessary for connection to devices that provide network @@ -256,33 +219,6 @@ Access Point).

Connection type describing a Bluetooth NAP (Network Access Point), which accepts PANU clients.

-
-
-

NMSettingBluetooth

-
typedef struct _NMSettingBluetooth NMSettingBluetooth;
-

Bluetooth Settings

-
- -
-

Property Details

-
-

The “bdaddr” property

-
  “bdaddr”                   char *
-

The Bluetooth address of the device.

-

Owner: NMSettingBluetooth

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “type” property

-
  “type”                     char *
-

Either "dun" for Dial-Up Networking connections or "panu" for Personal -Area Networking connections to devices supporting the NAP profile.

-

Owner: NMSettingBluetooth

-

Flags: Read / Write

-

Default value: NULL

-
-

Properties

-
----- - - - - - -
-GHashTable *optionsRead / Write
-
-

Types and Values

@@ -260,21 +242,10 @@ - - - -
#define NM_SETTING_BOND_OPTION_LP_INTERVAL
 NMSettingBond
-

Object Hierarchy

-
    GObject
-    ╰── NMSetting
-        ╰── NMSettingBond
-
-
-

Description

The NMSettingBond object is a NMSetting subclass that describes properties necessary for bond connections.

@@ -602,7 +573,7 @@ nm_setting_bond_get_option_default (

Returns

the value of the bond option if not overridden by an entry in -the “options” property.

+the “options” property.


@@ -817,21 +788,6 @@ to the connection.

#define NM_SETTING_BOND_OPTION_LP_INTERVAL       "lp_interval"
 
-
-
-

NMSettingBond

-
typedef struct _NMSettingBond NMSettingBond;
-

Bonding Settings

-
- -
-

Property Details

-
-

The “options” property

-
  “options”                  GHashTable *
-

Owner: NMSettingBond

-

Flags: Read / Write

-
-

Properties

-
----- - - - - - - - - - - - - - - - - - - - - - - -
gbooleanhairpin-modeRead / Write
guintpath-costRead / Write
guintpriorityRead / Write
-GPtrArray *vlansRead / Write
-
-

Types and Values

@@ -185,21 +150,10 @@ - - - -
#define NM_SETTING_BRIDGE_PORT_VLANS
 NMSettingBridgePort
-

Object Hierarchy

-
    GObject
-    ╰── NMSetting
-        ╰── NMSettingBridgePort
-
-
-

Description

The NMSettingBridgePort object is a NMSetting subclass that describes optional properties that apply to bridge ports.

@@ -239,7 +193,7 @@ nm_setting_bridge_port_get_priority (

Returns

-

the “priority” property of the setting

+

the “priority” property of the setting


@@ -264,7 +218,7 @@ nm_setting_bridge_port_get_path_cost (

Returns

-

the “path-cost” property of the setting

+

the “path-cost” property of the setting


@@ -290,7 +244,7 @@ nm_setting_bridge_port_get_hairpin_mode

Returns

-

the “hairpin-mode” property of the setting

+

the “hairpin-mode” property of the setting


@@ -523,63 +477,6 @@ nm_setting_bridge_port_clear_vlans (#define NM_SETTING_BRIDGE_PORT_VLANS "vlans" -
-
-

NMSettingBridgePort

-
typedef struct _NMSettingBridgePort NMSettingBridgePort;
-

Bridge Port Settings

-
- -
-

Property Details

-
-

The “hairpin-mode” property

-
  “hairpin-mode”             gboolean
-

Enables or disables "hairpin mode" for the port, which allows frames to -be sent back out through the port the frame was received on.

-

Owner: NMSettingBridgePort

-

Flags: Read / Write

-

Default value: FALSE

-
-
-
-

The “path-cost” property

-
  “path-cost”                guint
-

The Spanning Tree Protocol (STP) port cost for destinations via this -port.

-

Owner: NMSettingBridgePort

-

Flags: Read / Write

-

Allowed values: <= 65535

-

Default value: 100

-
-
-
-

The “priority” property

-
  “priority”                 guint
-

The Spanning Tree Protocol (STP) priority of this bridge port.

-

Owner: NMSettingBridgePort

-

Flags: Read / Write

-

Allowed values: <= 63

-

Default value: 32

-
-
-
-

The “vlans” property

-
  “vlans”                    GPtrArray *
-

Array of bridge VLAN objects. In addition to the VLANs -specified here, the port will also have the default-pvid -VLAN configured on the bridge by the bridge.vlan-default-pvid -property.

-

In nmcli the VLAN list can be specified with the following -syntax:

-

$vid pvid [, $vid pvid]...

-

where $vid is either a single id between 1 and 4094 or a -range, represented as a couple of ids separated by a dash.

-

[type GPtrArray(NMBridgeVlan)]

-

Owner: NMSettingBridgePort

-

Flags: Read / Write

-

Since: 1.18

-
-

Properties

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
guintmtuRead / Write
-char *numberRead / Write
-char *passwordRead / Write
NMSettingSecretFlagspassword-flagsRead / Write
-char *usernameRead / Write
-
-

Types and Values

@@ -161,21 +119,10 @@ - - - -
#define NM_SETTING_CDMA_MTU
 NMSettingCdma
-

Object Hierarchy

-
    GObject
-    ╰── NMSetting
-        ╰── NMSettingCdma
-
-
-

Description

The NMSettingCdma object is a NMSetting subclass that describes properties that allow connections to IS-95-based mobile broadband @@ -215,7 +162,7 @@ nm_setting_cdma_get_number (

Returns

-

the “number” property of the setting

+

the “number” property of the setting


@@ -240,7 +187,7 @@ nm_setting_cdma_get_username (

Returns

-

the “username” property of the setting

+

the “username” property of the setting


@@ -265,7 +212,7 @@ nm_setting_cdma_get_password (

Returns

-

the “password” property of the setting

+

the “password” property of the setting


@@ -290,7 +237,7 @@ nm_setting_cdma_get_password_flags (

Returns

-

the NMSettingSecretFlags pertaining to the “password”

+

the NMSettingSecretFlags pertaining to the “password”


@@ -315,7 +262,7 @@ nm_setting_cdma_get_mtu (

Returns

-

the “mtu” property of the setting

+

the “mtu” property of the setting

Since: 1.8

@@ -357,66 +304,6 @@ nm_setting_cdma_get_mtu (#define NM_SETTING_CDMA_MTU "mtu" -
-
-

NMSettingCdma

-
typedef struct _NMSettingCdma NMSettingCdma;
-

CDMA-based Mobile Broadband Settings

-
- -
-

Property Details

-
-

The “mtu” property

-
  “mtu”                      guint
-

If non-zero, only transmit packets of the specified size or smaller, -breaking larger packets up into multiple frames.

-

Owner: NMSettingCdma

-

Flags: Read / Write

-

Default value: 0

-

Since: 1.8

-
-
-
-

The “number” property

-
  “number”                   char *
-

The number to dial to establish the connection to the CDMA-based mobile -broadband network, if any. If not specified, the default number (777) -is used when required.

-

Owner: NMSettingCdma

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “password” property

-
  “password”                 char *
-

The password used to authenticate with the network, if required. Many -providers do not require a password, or accept any password. But if a -password is required, it is specified here.

-

Owner: NMSettingCdma

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “password-flags” property

-
  “password-flags”           NMSettingSecretFlags
-

Flags indicating how to handle the “password” property.

-

Owner: NMSettingCdma

-

Flags: Read / Write

-
-
-
-

The “username” property

-
  “username”                 char *
-

The username used to authenticate with the network, if required. Many -providers do not require a username, or accept any username. But if a -username is required, it is specified here.

-

Owner: NMSettingCdma

-

Flags: Read / Write

-

Default value: NULL

-
-

Properties

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
intauth-retriesRead / Write
gbooleanautoconnectRead / Write
intautoconnect-priorityRead / Write
intautoconnect-retriesRead / Write
NMSettingConnectionAutoconnectSlavesautoconnect-slavesRead / Write
guintgateway-ping-timeoutRead / Write
-char *idRead / Write
-char *interface-nameRead / Write
intlldpRead / Write
intllmnrRead / Write
-char *masterRead / Write
intmdnsRead / Write
NMMeteredmeteredRead / Write
-char *mud-urlRead / Write
intmulti-connectRead / Write
GStrvpermissionsRead / Write
gbooleanread-onlyRead / Write
GStrvsecondariesRead / Write
-char *slave-typeRead / Write
-char *stable-idRead / Write
guint64timestampRead / Write
-char *typeRead / Write
-char *uuidRead / Write
intwait-device-timeoutRead / Write
-char *zoneRead / Write
-
-

Types and Values

@@ -608,10 +461,6 @@ - - - -
enum NMSettingConnectionLlmnr
 NMSettingConnection
@@ -622,9 +471,6 @@ ├── NMSettingConnectionLldp ├── NMSettingConnectionLlmnr ╰── NMSettingConnectionMdns - GObject - ╰── NMSetting - ╰── NMSettingConnection
@@ -651,7 +497,7 @@ nm_setting_connection_new (void

nm_setting_connection_get_id ()

const char *
 nm_setting_connection_get_id (NMSettingConnection *setting);
-

Returns the “id” property of the connection.

+

Returns the “id” property of the connection.

Parameters

@@ -677,7 +523,7 @@ nm_setting_connection_get_id (

nm_setting_connection_get_uuid ()

const char *
 nm_setting_connection_get_uuid (NMSettingConnection *setting);
-

Returns the “uuid” property of the connection.

+

Returns the “uuid” property of the connection.

Parameters

@@ -703,7 +549,7 @@ nm_setting_connection_get_uuid (

nm_setting_connection_get_stable_id ()

const char *
 nm_setting_connection_get_stable_id (NMSettingConnection *setting);
-

Returns the “stable_id” property of the connection.

+

Returns the “stable_id” property of the connection.

Parameters

@@ -731,7 +577,7 @@ nm_setting_connection_get_stable_id (const char * nm_setting_connection_get_interface_name (NMSettingConnection *setting); -

Returns the “interface-name” property of the connection.

+

Returns the “interface-name” property of the connection.

Parameters

@@ -758,7 +604,7 @@ nm_setting_connection_get_interface_name
const char *
 nm_setting_connection_get_connection_type
                                (NMSettingConnection *setting);
-

Returns the “type” property of the connection.

+

Returns the “type” property of the connection.

Parameters

@@ -784,7 +630,7 @@ nm_setting_connection_get_connection_type

nm_setting_connection_get_autoconnect ()

gboolean
 nm_setting_connection_get_autoconnect (NMSettingConnection *setting);
-

Returns the “autoconnect” property of the connection.

+

Returns the “autoconnect” property of the connection.

Parameters

@@ -811,7 +657,7 @@ nm_setting_connection_get_autoconnect (int nm_setting_connection_get_autoconnect_priority (NMSettingConnection *setting); -

Returns the “autoconnect-priority” property of the connection. +

Returns the “autoconnect-priority” property of the connection. The higher number, the higher priority.

Parameters

@@ -839,7 +685,7 @@ The higher number, the higher priority.

int
 nm_setting_connection_get_autoconnect_retries
                                (NMSettingConnection *setting);
-

Returns the “autoconnect-retries” property of the connection. +

Returns the “autoconnect-retries” property of the connection. Zero means infinite, -1 means the global default value.

Parameters

@@ -885,7 +731,7 @@ nm_setting_connection_get_multi_connect

Returns

-

the “multi-connect” property of the connection.

+

the “multi-connect” property of the connection.

Since: 1.14

@@ -894,7 +740,7 @@ nm_setting_connection_get_multi_connect

nm_setting_connection_get_timestamp ()

guint64
 nm_setting_connection_get_timestamp (NMSettingConnection *setting);
-

Returns the “timestamp” property of the connection.

+

Returns the “timestamp” property of the connection.

Parameters

@@ -920,7 +766,7 @@ nm_setting_connection_get_timestamp (

nm_setting_connection_get_read_only ()

gboolean
 nm_setting_connection_get_read_only (NMSettingConnection *setting);
-

Returns the “read-only” property of the connection.

+

Returns the “read-only” property of the connection.

Parameters

@@ -947,7 +793,7 @@ nm_setting_connection_get_read_only (guint32 nm_setting_connection_get_num_permissions (NMSettingConnection *setting); -

Returns the number of entries in the “permissions” +

Returns the number of entries in the “permissions” property of this setting.

Parameters

@@ -978,7 +824,7 @@ nm_setting_connection_get_permission (const char **out_ptype, const char **out_pitem, const char **out_detail); -

Retrieve one of the entries of the “permissions” property +

Retrieve one of the entries of the “permissions” property of this setting.

Parameters

@@ -1009,7 +855,7 @@ unless the entry is invalid, in which case it returns "invalid".

+“permissions” for more detail

@@ -1031,7 +877,7 @@ was invalid

nm_setting_connection_get_zone ()

const char *
 nm_setting_connection_get_zone (NMSettingConnection *setting);
-

Returns the “zone” property of the connection.

+

Returns the “zone” property of the connection.

Parameters

out_pitem

on return, the permission item (formatted according to ptype , see -“permissions” for more detail

 
@@ -1099,7 +945,7 @@ nm_setting_connection_add_permission (pitem must be a username. See -“permissions”: for more details.

+“permissions”: for more details.

Parameters

@@ -1188,7 +1034,7 @@ nm_setting_connection_remove_permission_by_value

Removes the permission from the connection. At this time, only the "user" permission type is supported, and pitem must -be a username. See “permissions”: for more details.

+be a username. See “permissions”: for more details.

Parameters

@@ -1232,7 +1078,7 @@ be a username. See

nm_setting_connection_get_master ()

const char *
 nm_setting_connection_get_master (NMSettingConnection *setting);
-

Returns the “master” property of the connection.

+

Returns the “master” property of the connection.

Parameters

@@ -1295,7 +1141,7 @@ against setting

nm_setting_connection_get_slave_type ()

const char *
 nm_setting_connection_get_slave_type (NMSettingConnection *setting);
-

Returns the “slave-type” property of the connection.

+

Returns the “slave-type” property of the connection.

Parameters

@@ -1322,7 +1168,7 @@ nm_setting_connection_get_slave_type (NMSettingConnectionAutoconnectSlaves nm_setting_connection_get_autoconnect_slaves (NMSettingConnection *setting); -

Returns the “autoconnect-slaves” property of the connection.

+

Returns the “autoconnect-slaves” property of the connection.

Parameters

@@ -1393,7 +1239,9 @@ nm_setting_connection_get_secondary ( - + @@ -1402,7 +1250,9 @@ nm_setting_connection_get_secondary (

Returns

the secondary connection UUID at index idx -

+or +NULL if idx +is the number of secondaries.


@@ -1531,7 +1381,7 @@ nm_setting_connection_get_gateway_ping_timeout

Returns

-

the value contained in the “gateway-ping-timeout” +

the value contained in the “gateway-ping-timeout” property.

@@ -1557,7 +1407,7 @@ nm_setting_connection_get_metered (

Returns

-

the “metered” property of the setting.

+

the “metered” property of the setting.

Since: 1.2

@@ -1566,7 +1416,7 @@ nm_setting_connection_get_metered (

nm_setting_connection_get_lldp ()

NMSettingConnectionLldp
 nm_setting_connection_get_lldp (NMSettingConnection *setting);
-

Returns the “lldp” property of the connection.

+

Returns the “lldp” property of the connection.

Parameters

idx

the zero-based index of the secondary connection UUID entry

the zero-based index of the secondary connection UUID entry. +Access one past the length of secondaries is ok and will return +NULL. Otherwise, it is a user error.

 
@@ -1595,7 +1445,7 @@ enabled for the connection.

int
 nm_setting_connection_get_auth_retries
                                (NMSettingConnection *setting);
-

Returns the value contained in the “auth-retries” property.

+

Returns the value contained in the “auth-retries” property.

Parameters

@@ -1640,7 +1490,7 @@ nm_setting_connection_get_mdns (

Returns

-

the “mdns” property of the setting.

+

the “mdns” property of the setting.

Since: 1.12

@@ -1666,7 +1516,7 @@ nm_setting_connection_get_llmnr (

Returns

-

the “llmnr” property of the setting.

+

the “llmnr” property of the setting.

Since: 1.14

@@ -1703,7 +1553,7 @@ the timeout in milliseconds. -1 is the default.

nm_setting_connection_get_mud_url ()

const char *
 nm_setting_connection_get_mud_url (NMSettingConnection *setting);
-

Returns the value contained in the “mud-url” +

Returns the value contained in the “mud-url” property.

Parameters

@@ -2069,388 +1919,6 @@ master is activated

Since: 1.14

-
-
-

NMSettingConnection

-
typedef struct _NMSettingConnection NMSettingConnection;
-

General Connection Profile Settings

-
- -
-

Property Details

-
-

The “auth-retries” property

-
  “auth-retries”             int
-

The number of retries for the authentication. Zero means to try indefinitely; -1 means -to use a global default. If the global default is not set, the authentication -retries for 3 times before failing the connection.

-

Currently, this only applies to 802-1x authentication.

-

Owner: NMSettingConnection

-

Flags: Read / Write

-

Allowed values: >= -1

-

Default value: -1

-

Since: 1.10

-
-
-
-

The “autoconnect” property

-
  “autoconnect”              gboolean
-

Whether or not the connection should be automatically connected by -NetworkManager when the resources for the connection are available. -TRUE to automatically activate the connection, FALSE to require manual -intervention to activate the connection.

-

Note that autoconnect is not implemented for VPN profiles. See -“secondaries” as an alternative to automatically -connect VPN profiles.

-

Owner: NMSettingConnection

-

Flags: Read / Write

-

Default value: TRUE

-
-
-
-

The “autoconnect-priority” property

-
  “autoconnect-priority”     int
-

The autoconnect priority. If the connection is set to autoconnect, -connections with higher priority will be preferred. Defaults to 0. -The higher number means higher priority.

-

Owner: NMSettingConnection

-

Flags: Read / Write

-

Allowed values: [-999,999]

-

Default value: 0

-
-
-
-

The “autoconnect-retries” property

-
  “autoconnect-retries”      int
-

The number of times a connection should be tried when autoactivating before -giving up. Zero means forever, -1 means the global default (4 times if not -overridden). Setting this to 1 means to try activation only once before -blocking autoconnect. Note that after a timeout, NetworkManager will try -to autoconnect again.

-

Owner: NMSettingConnection

-

Flags: Read / Write

-

Allowed values: >= -1

-

Default value: -1

-
-
-
-

The “autoconnect-slaves” property

-
  “autoconnect-slaves”       NMSettingConnectionAutoconnectSlaves
-

Whether or not slaves of this connection should be automatically brought up -when NetworkManager activates this connection. This only has a real effect -for master connections. The properties “autoconnect”, -“autoconnect-priority” and “autoconnect-retries” -are unrelated to this setting. -The permitted values are: 0: leave slave connections untouched, -1: activate all the slave connections with this connection, -1: default. -If -1 (default) is set, global connection.autoconnect-slaves is read to -determine the real value. If it is default as well, this fallbacks to 0.

-

Owner: NMSettingConnection

-

Flags: Read / Write

-

Default value: NM_SETTING_CONNECTION_AUTOCONNECT_SLAVES_DEFAULT

-

Since: 1.2

-
-
-
-

The “gateway-ping-timeout” property

-
  “gateway-ping-timeout”     guint
-

If greater than zero, delay success of IP addressing until either the -timeout is reached, or an IP gateway replies to a ping.

-

Owner: NMSettingConnection

-

Flags: Read / Write

-

Allowed values: <= 600

-

Default value: 0

-
-
-
-

The “id” property

-
  “id”                       char *
-

A human readable unique identifier for the connection, like "Work Wi-Fi" -or "T-Mobile 3G".

-

Owner: NMSettingConnection

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “interface-name” property

-
  “interface-name”           char *
-

The name of the network interface this connection is bound to. If not -set, then the connection can be attached to any interface of the -appropriate type (subject to restrictions imposed by other settings).

-

For software devices this specifies the name of the created device.

-

For connection types where interface names cannot easily be made -persistent (e.g. mobile broadband or USB Ethernet), this property should -not be used. Setting this property restricts the interfaces a connection -can be used with, and if interface names change or are reordered the -connection may be applied to the wrong interface.

-

Owner: NMSettingConnection

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “lldp” property

-
  “lldp”                     int
-

Whether LLDP is enabled for the connection.

-

Owner: NMSettingConnection

-

Flags: Read / Write

-

Default value: -1

-

Since: 1.2

-
-
-
-

The “llmnr” property

-
  “llmnr”                    int
-

Whether Link-Local Multicast Name Resolution (LLMNR) is enabled -for the connection. LLMNR is a protocol based on the Domain Name -System (DNS) packet format that allows both IPv4 and IPv6 hosts -to perform name resolution for hosts on the same local link.

-

The permitted values are: "yes" (2) register hostname and resolving -for the connection, "no" (0) disable LLMNR for the interface, "resolve" -(1) do not register hostname but allow resolving of LLMNR host names -If unspecified, "default" ultimately depends on the DNS plugin (which -for systemd-resolved currently means "yes").

-

This feature requires a plugin which supports LLMNR. Otherwise, the -setting has no effect. One such plugin is dns-systemd-resolved.

-

Owner: NMSettingConnection

-

Flags: Read / Write

-

Default value: -1

-

Since: 1.14

-
-
-
-

The “master” property

-
  “master”                   char *
-

Interface name of the master device or UUID of the master connection.

-

Owner: NMSettingConnection

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “mdns” property

-
  “mdns”                     int
-

Whether mDNS is enabled for the connection.

-

The permitted values are: "yes" (2) register hostname and resolving -for the connection, "no" (0) disable mDNS for the interface, "resolve" -(1) do not register hostname but allow resolving of mDNS host names -and "default" (-1) to allow lookup of a global default in NetworkManager.conf. -If unspecified, "default" ultimately depends on the DNS plugin (which -for systemd-resolved currently means "no").

-

This feature requires a plugin which supports mDNS. Otherwise, the -setting has no effect. One such plugin is dns-systemd-resolved.

-

Owner: NMSettingConnection

-

Flags: Read / Write

-

Default value: -1

-

Since: 1.12

-
-
-
-

The “metered” property

-
  “metered”                  NMMetered
-

Whether the connection is metered.

-

When updating this property on a currently activated connection, -the change takes effect immediately.

-

Owner: NMSettingConnection

-

Flags: Read / Write

-

Default value: NM_METERED_UNKNOWN

-

Since: 1.2

-
-
-
-

The “mud-url” property

-
  “mud-url”                  char *
-

If configured, set to a Manufacturer Usage Description (MUD) URL that points -to manufacturer-recommended network policies for IoT devices. It is transmitted -as a DHCPv4 or DHCPv6 option. The value must be a valid URL starting with "https://".

-

The special value "none" is allowed to indicate that no MUD URL is used.

-

If the per-profile value is unspecified (the default), a global connection default gets -consulted. If still unspecified, the ultimate default is "none".

-

Owner: NMSettingConnection

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.26

-
-
-
-

The “multi-connect” property

-
  “multi-connect”            int
-

Specifies whether the profile can be active multiple times at a particular -moment. The value is of type NMConnectionMultiConnect.

-

Owner: NMSettingConnection

-

Flags: Read / Write

-

Default value: 0

-

Since: 1.14

-
-
-
-

The “permissions” property

-
  “permissions”              GStrv
-

An array of strings defining what access a given user has to this -connection. If this is NULL or empty, all users are allowed to access -this connection; otherwise users are allowed if and only if they are in -this list. When this is not empty, the connection can be active only when -one of the specified users is logged into an active session. Each entry -is of the form "[type]:[id]:[reserved]"; for example, "user:dcbw:blah".

-

At this time only the "user" [type] is allowed. Any other values are -ignored and reserved for future use. [id] is the username that this -permission refers to, which may not contain the ":" character. Any -[reserved] information present must be ignored and is reserved for future -use. All of [type], [id], and [reserved] must be valid UTF-8.

-

Owner: NMSettingConnection

-

Flags: Read / Write

-
-
-
-

The “read-only” property

-
  “read-only”                gboolean
-

FALSE if the connection can be modified using the provided settings -service's D-Bus interface with the right privileges, or TRUE if the -connection is read-only and cannot be modified.

-

Owner: NMSettingConnection

-

Flags: Read / Write

-

Default value: FALSE

-
-
-
-

The “secondaries” property

-
  “secondaries”              GStrv
-

List of connection UUIDs that should be activated when the base -connection itself is activated. Currently, only VPN connections are -supported.

-

Owner: NMSettingConnection

-

Flags: Read / Write

-
-
-
-

The “slave-type” property

-
  “slave-type”               char *
-

Setting name of the device type of this slave's master connection (eg, -NM_SETTING_BOND_SETTING_NAME), or NULL if this connection is not a -slave.

-

Owner: NMSettingConnection

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “stable-id” property

-
  “stable-id”                char *
-

This represents the identity of the connection used for various purposes. -It allows to configure multiple profiles to share the identity. Also, -the stable-id can contain placeholders that are substituted dynamically and -deterministically depending on the context.

-

The stable-id is used for generating IPv6 stable private addresses -with ipv6.addr-gen-mode=stable-privacy. It is also used to seed the -generated cloned MAC address for ethernet.cloned-mac-address=stable -and wifi.cloned-mac-address=stable. It is also used as DHCP client -identifier with ipv4.dhcp-client-id=stable and to derive the DHCP -DUID with ipv6.dhcp-duid=stable-[llt,ll,uuid].

-

Note that depending on the context where it is used, other parameters are -also seeded into the generation algorithm. For example, a per-host key -is commonly also included, so that different systems end up generating -different IDs. Or with ipv6.addr-gen-mode=stable-privacy, also the device's -name is included, so that different interfaces yield different addresses. -The per-host key is the identity of your machine and stored in /var/lib/NetworkManager/secret-key.

-

The '$' character is treated special to perform dynamic substitutions -at runtime. Currently, supported are "${CONNECTION}", "${DEVICE}", "${MAC}", -"${BOOT}", "${RANDOM}". -These effectively create unique IDs per-connection, per-device, per-boot, -or every time. Note that "${DEVICE}" corresponds to the interface name of the -device and "${MAC}" is the permanent MAC address of the device. -Any unrecognized patterns following '$' are treated verbatim, however -are reserved for future use. You are thus advised to avoid '$' or -escape it as "$$". -For example, set it to "${CONNECTION}-${BOOT}-${DEVICE}" to create a unique id for -this connection that changes with every reboot and differs depending on the -interface where the profile activates.

-

If the value is unset, a global connection default is consulted. If the -value is still unset, the default is similar to "${CONNECTION}" and uses -a unique, fixed ID for the connection.

-

Owner: NMSettingConnection

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.4

-
-
-
-

The “timestamp” property

-
  “timestamp”                guint64
-

The time, in seconds since the Unix Epoch, that the connection was last -_successfully_ fully activated.

-

NetworkManager updates the connection timestamp periodically when the -connection is active to ensure that an active connection has the latest -timestamp. The property is only meant for reading (changes to this -property will not be preserved).

-

Owner: NMSettingConnection

-

Flags: Read / Write

-

Default value: 0

-
-
-
-

The “type” property

-
  “type”                     char *
-

Base type of the connection. For hardware-dependent connections, should -contain the setting name of the hardware-type specific setting (ie, -"802-3-ethernet" or "802-11-wireless" or "bluetooth", etc), and for -non-hardware dependent connections like VPN or otherwise, should contain -the setting name of that setting type (ie, "vpn" or "bridge", etc).

-

Owner: NMSettingConnection

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “uuid” property

-
  “uuid”                     char *
-

A universally unique identifier for the connection, for example generated -with libuuid. It should be assigned when the connection is created, and -never changed as long as the connection still applies to the same -network. For example, it should not be changed when the -“id” property or NMSettingIP4Config changes, but -might need to be re-created when the Wi-Fi SSID, mobile broadband network -provider, or “type” property changes.

-

The UUID must be in the format "2815492f-7e56-435e-b2e9-246bd7cdc664" -(ie, contains only hexadecimal characters and "-"). A suitable UUID may -be generated by nm_utils_uuid_generate() or -nm_utils_uuid_generate_from_string().

-

Owner: NMSettingConnection

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “wait-device-timeout” property

-
  “wait-device-timeout”      int
-

Timeout in milliseconds to wait for device at startup. -During boot, devices may take a while to be detected by the driver. -This property will cause to delay NetworkManager-wait-online.service -and nm-online to give the device a chance to appear. This works by -waiting for the given timeout until a compatible device for the -profile is available and managed.

-

The value 0 means no wait time. The default value is -1, which -currently has the same meaning as no wait time.

-

Owner: NMSettingConnection

-

Flags: Read / Write

-

Allowed values: >= -1

-

Default value: -1

-

Since: 1.20

-
-
-
-

The “zone” property

-
  “zone”                     char *
-

The trust level of a the connection. Free form case-insensitive string -(for example "Home", "Work", "Public"). NULL or unspecified zone means -the connection will be placed in the default zone as defined by the -firewall.

-

When updating this property on a currently activated connection, -the change takes effect immediately.

-

Owner: NMSettingConnection

-

Flags: Read / Write

-

Default value: NULL

-
@@ -220,100 +219,6 @@
Top  |  Description  |  - Object Hierarchy  |  - Properties + Object Hierarchy Home Up
-

Properties

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NMSettingDcbFlagsapp-fcoe-flagsRead / Write
-char *app-fcoe-modeRead / Write
intapp-fcoe-priorityRead / Write
NMSettingDcbFlagsapp-fip-flagsRead / Write
intapp-fip-priorityRead / Write
NMSettingDcbFlagsapp-iscsi-flagsRead / Write
intapp-iscsi-priorityRead / Write
-GArray *priority-bandwidthRead / Write
-GArray *priority-flow-controlRead / Write
NMSettingDcbFlagspriority-flow-control-flagsRead / Write
-GArray *priority-group-bandwidthRead / Write
NMSettingDcbFlagspriority-group-flagsRead / Write
-GArray *priority-group-idRead / Write
-GArray *priority-strict-bandwidthRead / Write
-GArray *priority-traffic-classRead / Write
-
-

Types and Values

@@ -397,10 +302,6 @@ - - - -
#define NM_SETTING_DCB_PRIORITY_TRAFFIC_CLASS
 NMSettingDcb
@@ -408,9 +309,6 @@

Object Hierarchy

    GFlags
     ╰── NMSettingDcbFlags
-    GObject
-    ╰── NMSetting
-        ╰── NMSettingDcb
 
@@ -456,7 +354,7 @@ nm_setting_dcb_get_app_fcoe_flags (

Returns

-

the “app-fcoe-flags” property of the setting

+

the “app-fcoe-flags” property of the setting


@@ -481,7 +379,7 @@ nm_setting_dcb_get_app_fcoe_priority (

Returns

-

the “app-fcoe-priority” property of the setting

+

the “app-fcoe-priority” property of the setting


@@ -506,7 +404,7 @@ nm_setting_dcb_get_app_fcoe_mode (

Returns

-

the “app-fcoe-mode” property of the setting

+

the “app-fcoe-mode” property of the setting


@@ -531,7 +429,7 @@ nm_setting_dcb_get_app_iscsi_flags (

Returns

-

the “app-iscsi-flags” property of the setting

+

the “app-iscsi-flags” property of the setting


@@ -556,7 +454,7 @@ nm_setting_dcb_get_app_iscsi_priority (

Returns

-

the “app-iscsi-priority” property of the setting

+

the “app-iscsi-priority” property of the setting


@@ -581,7 +479,7 @@ nm_setting_dcb_get_app_fip_flags (

Returns

-

the “app-fip-flags” property of the setting

+

the “app-fip-flags” property of the setting


@@ -606,7 +504,7 @@ nm_setting_dcb_get_app_fip_priority (

Returns

-

the “app-fip-priority” property of the setting

+

the “app-fip-priority” property of the setting


@@ -632,7 +530,7 @@ nm_setting_dcb_get_priority_flow_control_flags

Returns

-

the “priority-flow-control-flags” property of the setting

+

the “priority-flow-control-flags” property of the setting


@@ -679,7 +577,7 @@ nm_setting_dcb_set_priority_flow_control (NMSettingDcb *setting, guint user_priority, gboolean enabled); -

These values are only valid when “priority-flow-control” includes +

These values are only valid when “priority-flow-control” includes the NM_SETTING_DCB_FLAG_ENABLE flag.

Parameters

@@ -732,7 +630,7 @@ nm_setting_dcb_get_priority_group_flags

Returns

-

the “priority-group-flags” property of the setting

+

the “priority-group-flags” property of the setting


@@ -767,7 +665,7 @@ nm_setting_dcb_get_priority_group_id (

Returns

the group number user_priority is assigned to. These values are -only valid when “priority-group-flags” includes the +only valid when “priority-group-flags” includes the NM_SETTING_DCB_FLAG_ENABLE flag.

@@ -778,7 +676,7 @@ only valid when NMSettingDcb *setting
, guint user_priority, guint group_id); -

These values are only valid when “priority-group-flags” includes +

These values are only valid when “priority-group-flags” includes the NM_SETTING_DCB_FLAG_ENABLE flag.

Parameters

@@ -843,7 +741,7 @@ nm_setting_dcb_get_priority_group_bandwidth

Returns

the bandwidth percentage assigned to group_id . These values are -only valid when “priority-group-flags” includes the +only valid when “priority-group-flags” includes the NM_SETTING_DCB_FLAG_ENABLE flag.

@@ -855,7 +753,7 @@ nm_setting_dcb_set_priority_group_bandwidth (NMSettingDcb *setting, guint group_id, guint bandwidth_percent); -

These values are only valid when “priority-group-flags” includes +

These values are only valid when “priority-group-flags” includes the NM_SETTING_DCB_FLAG_ENABLE flag.

Parameters

@@ -918,7 +816,7 @@ nm_setting_dcb_get_priority_bandwidth (

Returns

the allowed bandwidth percentage of user_priority in its priority group. -These values are only valid when “priority-group-flags” includes the +These values are only valid when “priority-group-flags” includes the NM_SETTING_DCB_FLAG_ENABLE flag.

@@ -929,7 +827,7 @@ These values are only valid when NMSettingDcb *setting, guint user_priority, guint bandwidth_percent); -

These values are only valid when “priority-group-flags” includes +

These values are only valid when “priority-group-flags” includes the NM_SETTING_DCB_FLAG_ENABLE flag.

Parameters

@@ -995,7 +893,7 @@ nm_setting_dcb_get_priority_strict_bandwidth

TRUE if user_priority may use all of the bandwidth allocated to its assigned group, or FALSE if not. These values are only valid when -“priority-group-flags” includes the NM_SETTING_DCB_FLAG_ENABLE flag.

+“priority-group-flags” includes the NM_SETTING_DCB_FLAG_ENABLE flag.


@@ -1006,7 +904,7 @@ nm_setting_dcb_set_priority_strict_bandwidth (NMSettingDcb *setting, guint user_priority, gboolean strict); -

These values are only valid when “priority-group-flags” includes +

These values are only valid when “priority-group-flags” includes the NM_SETTING_DCB_FLAG_ENABLE flag.

Parameters

@@ -1071,7 +969,7 @@ nm_setting_dcb_get_priority_traffic_class

Returns

the traffic class assigned to user_priority . These values are only -valid when “priority-group-flags” includes the +valid when “priority-group-flags” includes the NM_SETTING_DCB_FLAG_ENABLE flag.

@@ -1242,179 +1140,6 @@ peer configuration advertisements

#define NM_SETTING_DCB_PRIORITY_TRAFFIC_CLASS    "priority-traffic-class"
 
-
-
-

NMSettingDcb

-
typedef struct _NMSettingDcb NMSettingDcb;
-

Data Center Bridging Settings

-
- -
-

Property Details

-
-

The “app-fcoe-flags” property

-
  “app-fcoe-flags”           NMSettingDcbFlags
-

Specifies the NMSettingDcbFlags for the DCB FCoE application. Flags may -be any combination of NM_SETTING_DCB_FLAG_ENABLE, -NM_SETTING_DCB_FLAG_ADVERTISE, and NM_SETTING_DCB_FLAG_WILLING.

-

Owner: NMSettingDcb

-

Flags: Read / Write

-
-
-
-

The “app-fcoe-mode” property

-
  “app-fcoe-mode”            char *
-

The FCoE controller mode; either NM_SETTING_DCB_FCOE_MODE_FABRIC -(default) or NM_SETTING_DCB_FCOE_MODE_VN2VN.

-

Owner: NMSettingDcb

-

Flags: Read / Write

-

Default value: "fabric"

-
-
-
-

The “app-fcoe-priority” property

-
  “app-fcoe-priority”        int
-

The highest User Priority (0 - 7) which FCoE frames should use, or -1 for -default priority. Only used when the “app-fcoe-flags” -property includes the NM_SETTING_DCB_FLAG_ENABLE flag.

-

Owner: NMSettingDcb

-

Flags: Read / Write

-

Allowed values: [-1,7]

-

Default value: -1

-
-
-
-

The “app-fip-flags” property

-
  “app-fip-flags”            NMSettingDcbFlags
-

Specifies the NMSettingDcbFlags for the DCB FIP application. Flags may -be any combination of NM_SETTING_DCB_FLAG_ENABLE, -NM_SETTING_DCB_FLAG_ADVERTISE, and NM_SETTING_DCB_FLAG_WILLING.

-

Owner: NMSettingDcb

-

Flags: Read / Write

-
-
-
-

The “app-fip-priority” property

-
  “app-fip-priority”         int
-

The highest User Priority (0 - 7) which FIP frames should use, or -1 for -default priority. Only used when the “app-fip-flags” -property includes the NM_SETTING_DCB_FLAG_ENABLE flag.

-

Owner: NMSettingDcb

-

Flags: Read / Write

-

Allowed values: [-1,7]

-

Default value: -1

-
-
-
-

The “app-iscsi-flags” property

-
  “app-iscsi-flags”          NMSettingDcbFlags
-

Specifies the NMSettingDcbFlags for the DCB iSCSI application. Flags -may be any combination of NM_SETTING_DCB_FLAG_ENABLE, -NM_SETTING_DCB_FLAG_ADVERTISE, and NM_SETTING_DCB_FLAG_WILLING.

-

Owner: NMSettingDcb

-

Flags: Read / Write

-
-
-
-

The “app-iscsi-priority” property

-
  “app-iscsi-priority”       int
-

The highest User Priority (0 - 7) which iSCSI frames should use, or -1 -for default priority. Only used when the “app-iscsi-flags” -property includes the NM_SETTING_DCB_FLAG_ENABLE flag.

-

Owner: NMSettingDcb

-

Flags: Read / Write

-

Allowed values: [-1,7]

-

Default value: -1

-
-
-
-

The “priority-bandwidth” property

-
  “priority-bandwidth”       GArray *
-

An array of 8 uint values, where the array index corresponds to the User -Priority (0 - 7) and the value indicates the percentage of bandwidth of -the priority's assigned group that the priority may use. The sum of all -percentages for priorities which belong to the same group must total 100 -percents.

-

[type GArray(guint)]

-

Owner: NMSettingDcb

-

Flags: Read / Write

-
-
-
-

The “priority-flow-control” property

-
  “priority-flow-control”    GArray *
-

An array of 8 boolean values, where the array index corresponds to the User -Priority (0 - 7) and the value indicates whether or not the corresponding -priority should transmit priority pause.

-

[type GArray(gboolean)]

-

Owner: NMSettingDcb

-

Flags: Read / Write

-
-
-
-

The “priority-flow-control-flags” property

-
  “priority-flow-control-flags” NMSettingDcbFlags
-

Specifies the NMSettingDcbFlags for DCB Priority Flow Control (PFC). -Flags may be any combination of NM_SETTING_DCB_FLAG_ENABLE, -NM_SETTING_DCB_FLAG_ADVERTISE, and NM_SETTING_DCB_FLAG_WILLING.

-

Owner: NMSettingDcb

-

Flags: Read / Write

-
-
-
-

The “priority-group-bandwidth” property

-
  “priority-group-bandwidth” GArray *
-

An array of 8 uint values, where the array index corresponds to the -Priority Group ID (0 - 7) and the value indicates the percentage of link -bandwidth allocated to that group. Allowed values are 0 - 100, and the -sum of all values must total 100 percents.

-

[type GArray(guint)]

-

Owner: NMSettingDcb

-

Flags: Read / Write

-
-
-
-

The “priority-group-flags” property

-
  “priority-group-flags”     NMSettingDcbFlags
-

Specifies the NMSettingDcbFlags for DCB Priority Groups. Flags may be -any combination of NM_SETTING_DCB_FLAG_ENABLE, -NM_SETTING_DCB_FLAG_ADVERTISE, and NM_SETTING_DCB_FLAG_WILLING.

-

Owner: NMSettingDcb

-

Flags: Read / Write

-
-
-
-

The “priority-group-id” property

-
  “priority-group-id”        GArray *
-

An array of 8 uint values, where the array index corresponds to the User -Priority (0 - 7) and the value indicates the Priority Group ID. Allowed -Priority Group ID values are 0 - 7 or 15 for the unrestricted group.

-

[type GArray(guint)]

-

Owner: NMSettingDcb

-

Flags: Read / Write

-
-
-
-

The “priority-strict-bandwidth” property

-
  “priority-strict-bandwidth” GArray *
-

An array of 8 boolean values, where the array index corresponds to the User -Priority (0 - 7) and the value indicates whether or not the priority may -use all of the bandwidth allocated to its assigned group.

-

[type GArray(gboolean)]

-

Owner: NMSettingDcb

-

Flags: Read / Write

-
-
-
-

The “priority-traffic-class” property

-
  “priority-traffic-class”   GArray *
-

An array of 8 uint values, where the array index corresponds to the User -Priority (0 - 7) and the value indicates the traffic class (0 - 7) to -which the priority is mapped.

-

[type GArray(guint)]

-

Owner: NMSettingDcb

-

Flags: Read / Write

-
-

Object Hierarchy

-
    GObject
-    ╰── NMSetting
-        ╰── NMSettingDummy
-
-
-

Description

The NMSettingDummy object is a NMSetting subclass that describes properties necessary for connection to dummy devices

@@ -102,12 +88,6 @@ nm_setting_dummy_new (void
#define NM_SETTING_DUMMY_SETTING_NAME "dummy"
 
-
-
-

NMSettingDummy

-
typedef struct _NMSettingDummy NMSettingDummy;
-

Dummy Link Settings

-
-

Object Hierarchy

-
    GObject
-    ╰── NMSetting
-        ╰── NMSettingGeneric
-
-
-

Description

The NMSettingGeneric object is a NMSetting subclass that describes optional properties that apply to "generic" devices (ie, devices that @@ -104,12 +90,6 @@ nm_setting_generic_new (void#define NM_SETTING_GENERIC_SETTING_NAME "generic"

-
-
-

NMSettingGeneric

-
typedef struct _NMSettingGeneric NMSettingGeneric;
-

Generic Link Settings

-
-

Properties

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-char *apnRead / Write
gbooleanauto-configRead / Write
-char *device-idRead / Write
gbooleanhome-onlyRead / Write
guintmtuRead / Write
-char *network-idRead / Write
-char *numberRead / Write
-char *passwordRead / Write
NMSettingSecretFlagspassword-flagsRead / Write
-char *pinRead / Write
NMSettingSecretFlagspin-flagsRead / Write
-char *sim-idRead / Write
-char *sim-operator-idRead / Write
-char *usernameRead / Write
-
-

Types and Values

@@ -314,21 +221,10 @@ - - - -
#define NM_SETTING_GSM_NUMBER
 NMSettingGsm
-

Object Hierarchy

-
    GObject
-    ╰── NMSetting
-        ╰── NMSettingGsm
-
-
-

Description

The NMSettingGsm object is a NMSetting subclass that describes properties that allow connections to 3GPP-based mobile broadband @@ -368,7 +264,7 @@ nm_setting_gsm_get_auto_config (

Returns

-

the “auto-config” property of the setting

+

the “auto-config” property of the setting

Since: 1.22

@@ -394,7 +290,7 @@ nm_setting_gsm_get_username (

Returns

-

the “username” property of the setting

+

the “username” property of the setting


@@ -419,7 +315,7 @@ nm_setting_gsm_get_password (

Returns

-

the “password” property of the setting

+

the “password” property of the setting


@@ -444,7 +340,7 @@ nm_setting_gsm_get_apn (

Returns

-

the “apn” property of the setting

+

the “apn” property of the setting


@@ -469,7 +365,7 @@ nm_setting_gsm_get_network_id (

Returns

-

the “network-id” property of the setting

+

the “network-id” property of the setting


@@ -494,7 +390,7 @@ nm_setting_gsm_get_pin (

Returns

-

the “pin” property of the setting

+

the “pin” property of the setting


@@ -519,7 +415,7 @@ nm_setting_gsm_get_home_only (

Returns

-

the “home-only” property of the setting

+

the “home-only” property of the setting


@@ -544,7 +440,7 @@ nm_setting_gsm_get_device_id (

Returns

-

the “device-id” property of the setting

+

the “device-id” property of the setting

Since: 1.2

@@ -570,7 +466,7 @@ nm_setting_gsm_get_sim_id (

Returns

-

the “sim-id” property of the setting

+

the “sim-id” property of the setting

Since: 1.2

@@ -596,7 +492,7 @@ nm_setting_gsm_get_sim_operator_id (

Returns

-

the “sim-operator-id” property of the setting

+

the “sim-operator-id” property of the setting

Since: 1.2

@@ -622,7 +518,7 @@ nm_setting_gsm_get_mtu (

Returns

-

the “mtu” property of the setting

+

the “mtu” property of the setting

Since: 1.8

@@ -652,7 +548,7 @@ nm_setting_gsm_get_number (

Returns

-

the “number” property of the setting

+

the “number” property of the setting


@@ -677,7 +573,7 @@ nm_setting_gsm_get_pin_flags (

Returns

-

the NMSettingSecretFlags pertaining to the “pin”

+

the NMSettingSecretFlags pertaining to the “pin”


@@ -702,7 +598,7 @@ nm_setting_gsm_get_password_flags (

Returns

-

the NMSettingSecretFlags pertaining to the “password”

+

the NMSettingSecretFlags pertaining to the “password”

@@ -797,177 +693,6 @@ nm_setting_gsm_get_password_flags (#define NM_SETTING_GSM_NUMBER "number" -
-
-

NMSettingGsm

-
typedef struct _NMSettingGsm NMSettingGsm;
-

GSM-based Mobile Broadband Settings

-
- -
-

Property Details

-
-

The “apn” property

-
  “apn”                      char *
-

The GPRS Access Point Name specifying the APN used when establishing a -data session with the GSM-based network. The APN often determines how -the user will be billed for their network usage and whether the user has -access to the Internet or just a provider-specific walled-garden, so it -is important to use the correct APN for the user's mobile broadband plan. -The APN may only be composed of the characters a-z, 0-9, ., and - per GSM -03.60 Section 14.9.

-

Owner: NMSettingGsm

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “auto-config” property

-
  “auto-config”              gboolean
-

When TRUE, the settings such as APN, username, or password will -default to values that match the network the modem will register -to in the Mobile Broadband Provider database.

-

Owner: NMSettingGsm

-

Flags: Read / Write

-

Default value: FALSE

-

Since: 1.22

-
-
-
-

The “device-id” property

-
  “device-id”                char *
-

The device unique identifier (as given by the WWAN management service) -which this connection applies to. If given, the connection will only -apply to the specified device.

-

Owner: NMSettingGsm

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.2

-
-
-
-

The “home-only” property

-
  “home-only”                gboolean
-

When TRUE, only connections to the home network will be allowed. -Connections to roaming networks will not be made.

-

Owner: NMSettingGsm

-

Flags: Read / Write

-

Default value: FALSE

-
-
-
-

The “mtu” property

-
  “mtu”                      guint
-

If non-zero, only transmit packets of the specified size or smaller, -breaking larger packets up into multiple frames.

-

Owner: NMSettingGsm

-

Flags: Read / Write

-

Default value: 0

-

Since: 1.8

-
-
-
-

The “network-id” property

-
  “network-id”               char *
-

The Network ID (GSM LAI format, ie MCC-MNC) to force specific network -registration. If the Network ID is specified, NetworkManager will -attempt to force the device to register only on the specified network. -This can be used to ensure that the device does not roam when direct -roaming control of the device is not otherwise possible.

-

Owner: NMSettingGsm

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “number” property

-
  “number”                   char *
-

Legacy setting that used to help establishing PPP data sessions for -GSM-based modems.

-
-

NMSettingGsm:number has been deprecated since version 1.16 and should not be used in newly-written code.

-

User-provided values for this setting are no longer used.

-
-

Owner: NMSettingGsm

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “password” property

-
  “password”                 char *
-

The password used to authenticate with the network, if required. Many -providers do not require a password, or accept any password. But if a -password is required, it is specified here.

-

Owner: NMSettingGsm

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “password-flags” property

-
  “password-flags”           NMSettingSecretFlags
-

Flags indicating how to handle the “password” property.

-

Owner: NMSettingGsm

-

Flags: Read / Write

-
-
-
-

The “pin” property

-
  “pin”                      char *
-

If the SIM is locked with a PIN it must be unlocked before any other -operations are requested. Specify the PIN here to allow operation of the -device.

-

Owner: NMSettingGsm

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “pin-flags” property

-
  “pin-flags”                NMSettingSecretFlags
-

Flags indicating how to handle the “pin” property.

-

Owner: NMSettingGsm

-

Flags: Read / Write

-
-
-
-

The “sim-id” property

-
  “sim-id”                   char *
-

The SIM card unique identifier (as given by the WWAN management service) -which this connection applies to. If given, the connection will apply -to any device also allowed by “device-id” which contains a -SIM card matching the given identifier.

-

Owner: NMSettingGsm

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.2

-
-
-
-

The “sim-operator-id” property

-
  “sim-operator-id”          char *
-

A MCC/MNC string like "310260" or "21601" identifying the specific -mobile network operator which this connection applies to. If given, -the connection will apply to any device also allowed by -“device-id” and “sim-id” which contains a SIM -card provisioned by the given operator.

-

Owner: NMSettingGsm

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.2

-
-
-
-

The “username” property

-
  “username”                 char *
-

The username used to authenticate with the network, if required. Many -providers do not require a username, or accept any username. But if a -username is required, it is specified here.

-

Owner: NMSettingGsm

-

Flags: Read / Write

-

Default value: NULL

-
-

Properties

-
----- - - - - - - - - - - - - - - - - - -
-char *dhcp-client-idRead / Write
-char *dhcp-fqdnRead / Write
-char *dhcp-vendor-class-identifierRead / Write
-
-

Types and Values

@@ -147,28 +115,16 @@ - - - -
#define NM_SETTING_IP4_CONFIG_METHOD_DISABLED
 NMSettingIP4Config
-

Object Hierarchy

-
    GObject
-    ╰── NMSetting
-        ╰── NMSettingIPConfig
-            ╰── NMSettingIP4Config
-
-
-

Description

The NMSettingIP4Config object is a NMSetting subclass that describes properties related to IPv4 addressing, routing, and Domain Name Service.

NMSettingIP4Config has few properties or methods of its own; it inherits almost everything from NMSettingIPConfig.

-

NetworkManager supports 5 values for the “method” property +

NetworkManager supports 5 values for the “method” property for IPv4. If "auto" is specified then the appropriate automatic method (DHCP, PPP, etc) is used for the interface and most other properties can be left unset. If "link-local" is specified, then a link-local address in the @@ -200,7 +156,7 @@ nm_setting_ip4_config_new (voidconst char * nm_setting_ip4_config_get_dhcp_client_id (NMSettingIP4Config *setting); -

Returns the value contained in the “dhcp-client-id” +

Returns the value contained in the “dhcp-client-id” property.

Parameters

@@ -228,7 +184,7 @@ addresses via DHCP.

nm_setting_ip4_config_get_dhcp_fqdn ()

const char *
 nm_setting_ip4_config_get_dhcp_fqdn (NMSettingIP4Config *setting);
-

Returns the value contained in the “dhcp-fqdn” +

Returns the value contained in the “dhcp-fqdn” property.

Parameters

@@ -257,7 +213,7 @@ property.

const char *
 nm_setting_ip4_config_get_dhcp_vendor_class_identifier
                                (NMSettingIP4Config *setting);
-

Returns the value contained in the “dhcp_vendor_class_identifier” +

Returns the value contained in the “dhcp_vendor_class_identifier” property.

Parameters

@@ -350,74 +306,6 @@ through that interface to the default network.

This connection does not use or require IPv4 address and it should be disabled.

-
-
-

NMSettingIP4Config

-
typedef struct _NMSettingIP4Config NMSettingIP4Config;
-

IPv4 Settings

-
-
-
-

Property Details

-
-

The “dhcp-client-id” property

-
  “dhcp-client-id”           char *
-

A string sent to the DHCP server to identify the local machine which the -DHCP server may use to customize the DHCP lease and options. -When the property is a hex string ('aa:bb:cc') it is interpreted as a -binary client ID, in which case the first byte is assumed to be the -'type' field as per RFC 2132 section 9.14 and the remaining bytes may be -an hardware address (e.g. '01:xx:xx:xx:xx:xx:xx' where 1 is the Ethernet -ARP type and the rest is a MAC address). -If the property is not a hex string it is considered as a -non-hardware-address client ID and the 'type' field is set to 0.

-

The special values "mac" and "perm-mac" are supported, which use the -current or permanent MAC address of the device to generate a client identifier -with type ethernet (01). Currently, these options only work for ethernet -type of links.

-

The special value "ipv6-duid" uses the DUID from "ipv6.dhcp-duid" property as -an RFC4361-compliant client identifier. As IAID it uses "ipv4.dhcp-iaid" -and falls back to "ipv6.dhcp-iaid" if unset.

-

The special value "duid" generates a RFC4361-compliant client identifier based -on "ipv4.dhcp-iaid" and uses a DUID generated by hashing /etc/machine-id.

-

The special value "stable" is supported to generate a type 0 client identifier based -on the stable-id (see connection.stable-id) and a per-host key. If you set the -stable-id, you may want to include the "${DEVICE}" or "${MAC}" specifier to get a -per-device key.

-

If unset, a globally configured default is used. If still unset, the default -depends on the DHCP plugin.

-

Owner: NMSettingIP4Config

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “dhcp-fqdn” property

-
  “dhcp-fqdn”                char *
-

If the “dhcp-send-hostname” property is TRUE, then the -specified FQDN will be sent to the DHCP server when acquiring a lease. This -property and “dhcp-hostname” are mutually exclusive and -cannot be set at the same time.

-

Owner: NMSettingIP4Config

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.2

-
-
-
-

The “dhcp-vendor-class-identifier” property

-
  “dhcp-vendor-class-identifier” char *
-

The Vendor Class Identifier DHCP option (60). -Special characters in the data string may be escaped using C-style escapes, -nevertheless this property cannot contain nul bytes. -If the per-profile value is unspecified (the default), -a global connection default gets consulted. -If still unspecified, the DHCP option is not sent to the server.

-

Since 1.28

-

Owner: NMSettingIP4Config

-

Flags: Read / Write

-

Default value: NULL

-
-

Properties

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
intaddr-gen-modeRead / Write
-char *dhcp-duidRead / Write
NMSettingIP6ConfigPrivacyip6-privacyRead / Write
intra-timeoutRead / Write
-char *tokenRead / Write
-
-

Types and Values

@@ -197,10 +157,6 @@ - - - -
enum NMSettingIP6ConfigAddrGenMode
 NMSettingIP6Config
@@ -209,10 +165,6 @@
    GEnum
     ├── NMSettingIP6ConfigAddrGenMode
     ╰── NMSettingIP6ConfigPrivacy
-    GObject
-    ╰── NMSetting
-        ╰── NMSettingIPConfig
-            ╰── NMSettingIP6Config
 
@@ -221,7 +173,7 @@ properties related to IPv6 addressing, routing, and Domain Name Service

NMSettingIP6Config has few properties or methods of its own; it inherits almost everything from NMSettingIPConfig.

-

NetworkManager supports 7 values for the “method” property +

NetworkManager supports 7 values for the “method” property for IPv6. If "auto" is specified then the appropriate automatic method (PPP, router advertisement, etc) is used for the device and most other properties can be left unset. To force the use of DHCP only, specify "dhcp"; this @@ -251,7 +203,7 @@ nm_setting_ip6_config_new (void

nm_setting_ip6_config_get_ip6_privacy ()

NMSettingIP6ConfigPrivacy
 nm_setting_ip6_config_get_ip6_privacy (NMSettingIP6Config *setting);
-

Returns the value contained in the “ip6-privacy” +

Returns the value contained in the “ip6-privacy” property.

Parameters

@@ -279,7 +231,7 @@ property.

NMSettingIP6ConfigAddrGenMode
 nm_setting_ip6_config_get_addr_gen_mode
                                (NMSettingIP6Config *setting);
-

Returns the value contained in the “addr-gen-mode” +

Returns the value contained in the “addr-gen-mode” property.

Parameters

@@ -307,7 +259,7 @@ property.

nm_setting_ip6_config_get_token ()

const char *
 nm_setting_ip6_config_get_token (NMSettingIP6Config *setting);
-

Returns the value contained in the “token” +

Returns the value contained in the “token” property.

Parameters

@@ -335,7 +287,7 @@ property.

nm_setting_ip6_config_get_dhcp_duid ()

const char *
 nm_setting_ip6_config_get_dhcp_duid (NMSettingIP6Config *setting);
-

Returns the value contained in the “dhcp-duid” +

Returns the value contained in the “dhcp-duid” property.

Parameters

@@ -571,126 +523,6 @@ specified by RFC7217.

Since: 1.2

-
-
-

NMSettingIP6Config

-
typedef struct _NMSettingIP6Config NMSettingIP6Config;
-

IPv6 Settings

-
-
-
-

Property Details

-
-

The “addr-gen-mode” property

-
  “addr-gen-mode”            int
-

Configure method for creating the address for use with RFC4862 IPv6 -Stateless Address Autoconfiguration. The permitted values are: -NM_SETTING_IP6_CONFIG_ADDR_GEN_MODE_EUI64 or -NM_SETTING_IP6_CONFIG_ADDR_GEN_MODE_STABLE_PRIVACY.

-

If the property is set to EUI64, the addresses will be generated -using the interface tokens derived from hardware address. This makes -the host part of the address to stay constant, making it possible -to track host's presence when it changes networks. The address changes -when the interface hardware is replaced.

-

The value of stable-privacy enables use of cryptographically -secure hash of a secret host-specific key along with the connection's -stable-id and the network address as specified by RFC7217. -This makes it impossible to use the address track host's presence, -and makes the address stable when the network interface hardware is -replaced.

-

On D-Bus, the absence of an addr-gen-mode setting equals enabling -stable-privacy. For keyfile plugin, the absence of the setting -on disk means EUI64 so that the property doesn't change on upgrade -from older versions.

-

Note that this setting is distinct from the Privacy Extensions as -configured by "ip6-privacy" property and it does not affect the -temporary addresses configured with this option.

-

Owner: NMSettingIP6Config

-

Flags: Read / Write

-

Default value: 1

-

Since: 1.2

-
-
-
-

The “dhcp-duid” property

-
  “dhcp-duid”                char *
-

A string containing the DHCPv6 Unique Identifier (DUID) used by the dhcp -client to identify itself to DHCPv6 servers (RFC 3315). The DUID is carried -in the Client Identifier option. -If the property is a hex string ('aa:bb:cc') it is interpreted as a binary -DUID and filled as an opaque value in the Client Identifier option.

-

The special value "lease" will retrieve the DUID previously used from the -lease file belonging to the connection. If no DUID is found and "dhclient" -is the configured dhcp client, the DUID is searched in the system-wide -dhclient lease file. If still no DUID is found, or another dhcp client is -used, a global and permanent DUID-UUID (RFC 6355) will be generated based -on the machine-id.

-

The special values "llt" and "ll" will generate a DUID of type LLT or LL -(see RFC 3315) based on the current MAC address of the device. In order to -try providing a stable DUID-LLT, the time field will contain a constant -timestamp that is used globally (for all profiles) and persisted to disk.

-

The special values "stable-llt", "stable-ll" and "stable-uuid" will generate -a DUID of the corresponding type, derived from the connection's stable-id and -a per-host unique key. You may want to include the "${DEVICE}" or "${MAC}" specifier -in the stable-id, in case this profile gets activated on multiple devices. -So, the link-layer address of "stable-ll" and "stable-llt" will be a generated -address derived from the stable id. The DUID-LLT time value in the "stable-llt" -option will be picked among a static timespan of three years (the upper bound -of the interval is the same constant timestamp used in "llt").

-

When the property is unset, the global value provided for "ipv6.dhcp-duid" is -used. If no global value is provided, the default "lease" value is assumed.

-

Owner: NMSettingIP6Config

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.12

-
-
-
-

The “ip6-privacy” property

-
  “ip6-privacy”              NMSettingIP6ConfigPrivacy
-

Configure IPv6 Privacy Extensions for SLAAC, described in RFC4941. If -enabled, it makes the kernel generate a temporary IPv6 address in -addition to the public one generated from MAC address via modified -EUI-64. This enhances privacy, but could cause problems in some -applications, on the other hand. The permitted values are: -1: unknown, -0: disabled, 1: enabled (prefer public address), 2: enabled (prefer temporary -addresses).

-

Having a per-connection setting set to "-1" (unknown) means fallback to -global configuration "ipv6.ip6-privacy".

-

If also global configuration is unspecified or set to "-1", fallback to read -"/proc/sys/net/ipv6/conf/default/use_tempaddr".

-

Note that this setting is distinct from the Stable Privacy addresses -that can be enabled with the "addr-gen-mode" property's "stable-privacy" -setting as another way of avoiding host tracking with IPv6 addresses.

-

Owner: NMSettingIP6Config

-

Flags: Read / Write

-

Default value: NM_SETTING_IP6_CONFIG_PRIVACY_UNKNOWN

-
-
-
-

The “ra-timeout” property

-
  “ra-timeout”               int
-

A timeout for waiting Router Advertisements in seconds. If zero (the default), a -globally configured default is used. If still unspecified, the timeout depends on the -sysctl settings of the device.

-

Set to 2147483647 (MAXINT32) for infinity.

-

Owner: NMSettingIP6Config

-

Flags: Read / Write

-

Allowed values: >= 0

-

Default value: 0

-

Since: 1.24

-
-
-
-

The “token” property

-
  “token”                    char *
-

Configure the token for draft-chown-6man-tokenised-ipv6-identifiers-02 -IPv6 tokenized interface identifiers. Useful with eui64 addr-gen-mode.

-

Owner: NMSettingIP6Config

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.4

-
-
-

Properties

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-GPtrArray *addressesRead / Write
intdad-timeoutRead / Write
-char *dhcp-hostnameRead / Write
guintdhcp-hostname-flagsRead / Write
-char *dhcp-iaidRead / Write
GStrvdhcp-reject-serversRead / Write
gbooleandhcp-send-hostnameRead / Write
intdhcp-timeoutRead / Write
GStrvdnsRead / Write
GStrvdns-optionsRead / Write
intdns-priorityRead / Write
GStrvdns-searchRead / Write
-char *gatewayRead / Write
gbooleanignore-auto-dnsRead / Write
gbooleanignore-auto-routesRead / Write
gbooleanmay-failRead / Write
-char *methodRead / Write
gbooleannever-defaultRead / Write
gint64route-metricRead / Write
guintroute-tableRead / Write
-GPtrArray *routesRead / Write
-

Types and Values

@@ -1529,10 +1421,6 @@ addressing, routing, and name service properties

- - - - @@ -1549,11 +1437,6 @@ addressing, routing, and name service properties

├── NMDhcpHostnameFlags ├── NMIPAddressCmpFlags ╰── NMIPRoutingRuleAsStringFlags - GObject - ╰──NMSetting - ╰── NMSettingIPConfig - ├──NMSettingIP4Config - ╰──NMSettingIP6Config
@@ -1819,9 +1702,13 @@ nm_ip_address_dup (

Returns

a copy of address -.

+

+

This API was part of public headers before 1.32.0 but +was erroneously not exported in the ABI. It is thus only +usable since 1.32.0.

[transfer full]

+

Since: 1.32


@@ -2416,9 +2303,13 @@ nm_ip_route_dup (

Returns

a copy of route -.

+

+

This API was part of public headers before 1.32.0 but +was erroneously not exported in the ABI. It is thus only +usable since 1.32.0.

[transfer full]

+

Since: 1.32


@@ -4176,6 +4067,86 @@ unset.


+

nm_ip_routing_rule_get_uid_range ()

+
gboolean
+nm_ip_routing_rule_get_uid_range (const NMIPRoutingRule *self,
+                                  guint32 *out_range_start,
+                                  guint32 *out_range_end);
+
+

Parameters

+
NM_SETTING_DNS_OPTION_TRUST_AD
 NMSettingIPConfig
enum NMDhcpHostnameFlags
+++++ + + + + + + + + + + + + + + + + + +

self

the NMIPRoutingRule instance

 

out_range_start

returns the start of the range +or 0 if the range is not set.

[out][allow-none]

out_range_end

returns the end of the range +or 0 if the range is not set.

[out][allow-none]
+
+
+

Returns

+

TRUE if a uid range is set.

+
+

Since: 1.32. Due to a bug, the symbols of this function

+ +
+
+

nm_ip_routing_rule_set_uid_range ()

+
void
+nm_ip_routing_rule_set_uid_range (NMIPRoutingRule *self,
+                                  guint32 uid_range_start,
+                                  guint32 uid_range_end);
+

For a valid range, start must be less or equal to end. +If set to an invalid range, the range gets unset.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + +

self

the NMIPRoutingRule instance

 

uid_range_start

the uid_range start to set.

 

uid_range_end

the uid_range start to set.

 
+
+

Since: 1.32. Due to a bug, the symbols of this function

+
+
+

nm_ip_routing_rule_cmp ()

int
 nm_ip_routing_rule_cmp (const NMIPRoutingRule *rule,
@@ -4363,7 +4334,7 @@ nm_setting_ip_config_get_method (
 

Returns

-

the “method” property of the setting; see +

the “method” property of the setting; see NMSettingIP4Config and NMSettingIP6Config for details of the methods available with each type.

@@ -5402,7 +5373,7 @@ nm_setting_ip_config_clear_routes (

nm_setting_ip_config_get_route_metric ()

gint64
 nm_setting_ip_config_get_route_metric (NMSettingIPConfig *setting);
-

Returns the value contained in the “route-metric” +

Returns the value contained in the “route-metric” property.

Parameters

@@ -5422,7 +5393,7 @@ property.

Returns

the route metric that is used for routes that don't explicitly -specify a metric. See “route-metric” for more details.

+specify a metric. See “route-metric” for more details.


@@ -5430,7 +5401,7 @@ specify a metric. See

nm_setting_ip_config_get_route_table ()

guint32
 nm_setting_ip_config_get_route_table (NMSettingIPConfig *setting);
-

Returns the value contained in the “route-table” +

Returns the value contained in the “route-table” property.

Parameters

@@ -5614,7 +5585,7 @@ nm_setting_ip_config_clear_routing_rules
gboolean
 nm_setting_ip_config_get_ignore_auto_routes
                                (NMSettingIPConfig *setting);
-

Returns the value contained in the “ignore-auto-routes” +

Returns the value contained in the “ignore-auto-routes” property.

Parameters

@@ -5643,7 +5614,7 @@ ignored.

gboolean
 nm_setting_ip_config_get_ignore_auto_dns
                                (NMSettingIPConfig *setting);
-

Returns the value contained in the “ignore-auto-dns” +

Returns the value contained in the “ignore-auto-dns” property.

Parameters

@@ -5672,7 +5643,7 @@ should be ignored.

const char *
 nm_setting_ip_config_get_dhcp_hostname
                                (NMSettingIPConfig *setting);
-

Returns the value contained in the “dhcp-hostname” +

Returns the value contained in the “dhcp-hostname” property.

Parameters

@@ -5700,7 +5671,7 @@ property.

gboolean
 nm_setting_ip_config_get_dhcp_send_hostname
                                (NMSettingIPConfig *setting);
-

Returns the value contained in the “dhcp-send-hostname” +

Returns the value contained in the “dhcp-send-hostname” property.

Parameters

@@ -5730,7 +5701,7 @@ update DNS information for this machine.

gboolean
 nm_setting_ip_config_get_never_default
                                (NMSettingIPConfig *setting);
-

Returns the value contained in the “never-default” +

Returns the value contained in the “never-default” property.

Parameters

@@ -5758,7 +5729,7 @@ connection

nm_setting_ip_config_get_may_fail ()

gboolean
 nm_setting_ip_config_get_may_fail (NMSettingIPConfig *setting);
-

Returns the value contained in the “may-fail” +

Returns the value contained in the “may-fail” property.

Parameters

@@ -5803,7 +5774,7 @@ nm_setting_ip_config_get_dad_timeout (

Returns

-

the “dad-timeout” property.

+

the “dad-timeout” property.

Since: 1.2

@@ -5812,7 +5783,7 @@ nm_setting_ip_config_get_dad_timeout (

nm_setting_ip_config_get_dhcp_timeout ()

int
 nm_setting_ip_config_get_dhcp_timeout (NMSettingIPConfig *setting);
-

Returns the value contained in the “dhcp-timeout” +

Returns the value contained in the “dhcp-timeout” property.

Parameters

@@ -5841,7 +5812,7 @@ the particular kind of device.

nm_setting_ip_config_get_dhcp_iaid ()

const char *
 nm_setting_ip_config_get_dhcp_iaid (NMSettingIPConfig *setting);
-

Returns the value contained in the “dhcp-iaid” +

Returns the value contained in the “dhcp-iaid” property.

Parameters

@@ -5870,7 +5841,7 @@ property.

NMDhcpHostnameFlags
 nm_setting_ip_config_get_dhcp_hostname_flags
                                (NMSettingIPConfig *setting);
-

Returns the value contained in the “dhcp-hostname-flags” +

Returns the value contained in the “dhcp-hostname-flags” property.

Parameters

@@ -6459,11 +6430,6 @@ rule verfies or fail.


-

NMSettingIPConfig

-
typedef struct _NMSettingIPConfig NMSettingIPConfig;
-
-
-

enum NMDhcpHostnameFlags

NMDhcpHostnameFlags describe flags related to the DHCP hostname and FQDN.

@@ -6533,363 +6499,6 @@ incompatible with any other FQDN flag.

-

Property Details

-
-

The “addresses” property

-
  “addresses”                GPtrArray *
-

Array of IP addresses.

-

[type GPtrArray(NMIPAddress)]

-

Owner: NMSettingIPConfig

-

Flags: Read / Write

-
-
-
-

The “dad-timeout” property

-
  “dad-timeout”              int
-

Timeout in milliseconds used to check for the presence of duplicate IP -addresses on the network. If an address conflict is detected, the -activation will fail. A zero value means that no duplicate address -detection is performed, -1 means the default value (either configuration -ipvx.dad-timeout override or zero). A value greater than zero is a -timeout in milliseconds.

-

The property is currently implemented only for IPv4.

-

Owner: NMSettingIPConfig

-

Flags: Read / Write

-

Allowed values: [-1,30000]

-

Default value: -1

-

Since: 1.2

-
-
-
-

The “dhcp-hostname” property

-
  “dhcp-hostname”            char *
-

If the “dhcp-send-hostname” property is TRUE, then the -specified name will be sent to the DHCP server when acquiring a lease. -This property and “dhcp-fqdn” are mutually exclusive and -cannot be set at the same time.

-

Owner: NMSettingIPConfig

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “dhcp-hostname-flags” property

-
  “dhcp-hostname-flags”      guint
-

Flags for the DHCP hostname and FQDN.

-

Currently, this property only includes flags to control the FQDN flags -set in the DHCP FQDN option. Supported FQDN flags are -NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE, -NM_DHCP_HOSTNAME_FLAG_FQDN_ENCODED and -NM_DHCP_HOSTNAME_FLAG_FQDN_NO_UPDATE. When no FQDN flag is set and -NM_DHCP_HOSTNAME_FLAG_FQDN_CLEAR_FLAGS is set, the DHCP FQDN option will -contain no flag. Otherwise, if no FQDN flag is set and -NM_DHCP_HOSTNAME_FLAG_FQDN_CLEAR_FLAGS is not set, the standard FQDN flags -are set in the request: -NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE, -NM_DHCP_HOSTNAME_FLAG_FQDN_ENCODED for IPv4 and -NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE for IPv6.

-

When this property is set to the default value NM_DHCP_HOSTNAME_FLAG_NONE, -a global default is looked up in NetworkManager configuration. If that value -is unset or also NM_DHCP_HOSTNAME_FLAG_NONE, then the standard FQDN flags -described above are sent in the DHCP requests.

-

Owner: NMSettingIPConfig

-

Flags: Read / Write

-

Default value: 0

-

Since: 1.22

-
-
-
-

The “dhcp-iaid” property

-
  “dhcp-iaid”                char *
-

A string containing the "Identity Association Identifier" (IAID) used -by the DHCP client. The property is a 32-bit decimal value or a -special value among "mac", "perm-mac", "ifname" and "stable". When -set to "mac" (or "perm-mac"), the last 4 bytes of the current (or -permanent) MAC address are used as IAID. When set to "ifname", the -IAID is computed by hashing the interface name. The special value -"stable" can be used to generate an IAID based on the stable-id (see -connection.stable-id), a per-host key and the interface name. When -the property is unset, the value from global configuration is used; -if no global default is set then the IAID is assumed to be -"ifname". Note that at the moment this property is ignored for IPv6 -by dhclient, which always derives the IAID from the MAC address.

-

Owner: NMSettingIPConfig

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.22

-
-
-
-

The “dhcp-reject-servers” property

-
  “dhcp-reject-servers”      GStrv
-

Array of servers from which DHCP offers must be rejected. This property -is useful to avoid getting a lease from misconfigured or rogue servers.

-

For DHCPv4, each element must be an IPv4 address, optionally -followed by a slash and a prefix length (e.g. "192.168.122.0/24").

-

This property is currently not implemented for DHCPv6.

-

Owner: NMSettingIPConfig

-

Flags: Read / Write

-

Since: 1.28

-
-
-
-

The “dhcp-send-hostname” property

-
  “dhcp-send-hostname”       gboolean
-

If TRUE, a hostname is sent to the DHCP server when acquiring a lease. -Some DHCP servers use this hostname to update DNS databases, essentially -providing a static hostname for the computer. If the -“dhcp-hostname” property is NULL and this property is -TRUE, the current persistent hostname of the computer is sent.

-

Owner: NMSettingIPConfig

-

Flags: Read / Write

-

Default value: TRUE

-
-
-
-

The “dhcp-timeout” property

-
  “dhcp-timeout”             int
-

A timeout for a DHCP transaction in seconds. If zero (the default), a -globally configured default is used. If still unspecified, a device specific -timeout is used (usually 45 seconds).

-

Set to 2147483647 (MAXINT32) for infinity.

-

Owner: NMSettingIPConfig

-

Flags: Read / Write

-

Allowed values: >= 0

-

Default value: 0

-
-
-
-

The “dns” property

-
  “dns”                      GStrv
-

Array of IP addresses of DNS servers.

-

Owner: NMSettingIPConfig

-

Flags: Read / Write

-
-
-
-

The “dns-options” property

-
  “dns-options”              GStrv
-

Array of DNS options as described in man 5 resolv.conf.

-

NULL means that the options are unset and left at the default. -In this case NetworkManager will use default options. This is -distinct from an empty list of properties.

-

The currently supported options are "attempts", "debug", "edns0", -"inet6", "ip6-bytestring", "ip6-dotint", "ndots", "no-check-names", -"no-ip6-dotint", "no-reload", "no-tld-query", "rotate", "single-request", -"single-request-reopen", "timeout", "trust-ad", "use-vc".

-

The "trust-ad" setting is only honored if the profile contributes -name servers to resolv.conf, and if all contributing profiles have -"trust-ad" enabled.

-

When using a caching DNS plugin (dnsmasq or systemd-resolved in -NetworkManager.conf) then "edns0" and "trust-ad" are automatically -added.

-

Owner: NMSettingIPConfig

-

Flags: Read / Write

-

Since: 1.2

-
-
-
-

The “dns-priority” property

-
  “dns-priority”             int
-

DNS servers priority.

-

The relative priority for DNS servers specified by this setting. A lower -numerical value is better (higher priority).

-

Negative values have the special effect of excluding other configurations -with a greater numerical priority value; so in presence of at least one negative -priority, only DNS servers from connections with the lowest priority value will be used. -To avoid all DNS leaks, set the priority of the profile that should be used -to the most negative value of all active connections profiles.

-

Zero selects a globally configured default value. If the latter is missing -or zero too, it defaults to 50 for VPNs (including WireGuard) and 100 for -other connections.

-

Note that the priority is to order DNS settings for multiple active -connections. It does not disambiguate multiple DNS servers within the -same connection profile.

-

When multiple devices have configurations with the same priority, VPNs will be -considered first, then devices with the best (lowest metric) default -route and then all other devices.

-

When using dns=default, servers with higher priority will be on top of -resolv.conf. To prioritize a given server over another one within the -same connection, just specify them in the desired order. -Note that commonly the resolver tries name servers in /etc/resolv.conf -in the order listed, proceeding with the next server in the list -on failure. See for example the "rotate" option of the dns-options setting. -If there are any negative DNS priorities, then only name servers from -the devices with that lowest priority will be considered.

-

When using a DNS resolver that supports Conditional Forwarding or -Split DNS (with dns=dnsmasq or dns=systemd-resolved settings), each connection -is used to query domains in its search list. The search domains determine which -name servers to ask, and the DNS priority is used to prioritize -name servers based on the domain. Queries for domains not present in any -search list are routed through connections having the '~.' special wildcard -domain, which is added automatically to connections with the default route -(or can be added manually). When multiple connections specify the same domain, the -one with the best priority (lowest numerical value) wins. If a sub domain -is configured on another interface it will be accepted regardless the priority, -unless parent domain on the other interface has a negative priority, which causes -the sub domain to be shadowed. -With Split DNS one can avoid undesired DNS leaks by properly configuring -DNS priorities and the search domains, so that only name servers of the desired -interface are configured.

-

Owner: NMSettingIPConfig

-

Flags: Read / Write

-

Default value: 0

-

Since: 1.4

-
-
-
-

The “dns-search” property

-
  “dns-search”               GStrv
-

Array of DNS search domains. Domains starting with a tilde ('~') -are considered 'routing' domains and are used only to decide the -interface over which a query must be forwarded; they are not used -to complete unqualified host names.

-

When using a DNS plugin that supports Conditional Forwarding or -Split DNS, then the search domains specify which name servers to -query. This makes the behavior different from running with plain -/etc/resolv.conf. For more information see also the dns-priority setting.

-

Owner: NMSettingIPConfig

-

Flags: Read / Write

-
-
-
-

The “gateway” property

-
  “gateway”                  char *
-

The gateway associated with this configuration. This is only meaningful -if “addresses” is also set.

-

The gateway's main purpose is to control the next hop of the standard default route on the device. -Hence, the gateway property conflicts with “never-default” and will be -automatically dropped if the IP configuration is set to never-default.

-

As an alternative to set the gateway, configure a static default route with /0 as prefix -length.

-

Owner: NMSettingIPConfig

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “ignore-auto-dns” property

-
  “ignore-auto-dns”          gboolean
-

When “method” is set to "auto" and this property to -TRUE, automatically configured name servers and search domains are -ignored and only name servers and search domains specified in the -“dns” and “dns-search” properties, if -any, are used.

-

Owner: NMSettingIPConfig

-

Flags: Read / Write

-

Default value: FALSE

-
-
-
-

The “ignore-auto-routes” property

-
  “ignore-auto-routes”       gboolean
-

When “method” is set to "auto" and this property to -TRUE, automatically configured routes are ignored and only routes -specified in the “routes” property, if any, are used.

-

Owner: NMSettingIPConfig

-

Flags: Read / Write

-

Default value: FALSE

-
-
-
-

The “may-fail” property

-
  “may-fail”                 gboolean
-

If TRUE, allow overall network configuration to proceed even if the -configuration specified by this property times out. Note that at least -one IP configuration must succeed or overall network configuration will -still fail. For example, in IPv6-only networks, setting this property to -TRUE on the NMSettingIP4Config allows the overall network configuration -to succeed if IPv4 configuration fails but IPv6 configuration completes -successfully.

-

Owner: NMSettingIPConfig

-

Flags: Read / Write

-

Default value: TRUE

-
-
-
-

The “method” property

-
  “method”                   char *
-

IP configuration method.

-

NMSettingIP4Config and NMSettingIP6Config both support "disabled", -"auto", "manual", and "link-local". See the subclass-specific -documentation for other values.

-

In general, for the "auto" method, properties such as -“dns” and “routes” specify information -that is added on to the information returned from automatic -configuration. The “ignore-auto-routes” and -“ignore-auto-dns” properties modify this behavior.

-

For methods that imply no upstream network, such as "shared" or -"link-local", these properties must be empty.

-

For IPv4 method "shared", the IP subnet can be configured by adding one -manual IPv4 address or otherwise 10.42.x.0/24 is chosen. Note that the -shared method must be configured on the interface which shares the internet -to a subnet, not on the uplink which is shared.

-

Owner: NMSettingIPConfig

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “never-default” property

-
  “never-default”            gboolean
-

If TRUE, this connection will never be the default connection for this -IP type, meaning it will never be assigned the default route by -NetworkManager.

-

Owner: NMSettingIPConfig

-

Flags: Read / Write

-

Default value: FALSE

-
-
-
-

The “route-metric” property

-
  “route-metric”             gint64
-

The default metric for routes that don't explicitly specify a metric. -The default value -1 means that the metric is chosen automatically -based on the device type. -The metric applies to dynamic routes, manual (static) routes that -don't have an explicit metric setting, address prefix routes, and -the default route. -Note that for IPv6, the kernel accepts zero (0) but coerces it to -1024 (user default). Hence, setting this property to zero effectively -mean setting it to 1024. -For IPv4, zero is a regular value for the metric.

-

Owner: NMSettingIPConfig

-

Flags: Read / Write

-

Allowed values: [-1,4294967295]

-

Default value: -1

-
-
-
-

The “route-table” property

-
  “route-table”              guint
-

Enable policy routing (source routing) and set the routing table used when adding routes.

-

This affects all routes, including device-routes, IPv4LL, DHCP, SLAAC, default-routes -and static routes. But note that static routes can individually overwrite the setting -by explicitly specifying a non-zero routing table.

-

If the table setting is left at zero, it is eligible to be overwritten via global -configuration. If the property is zero even after applying the global configuration -value, policy routing is disabled for the address family of this connection.

-

Policy routing disabled means that NetworkManager will add all routes to the main -table (except static routes that explicitly configure a different table). Additionally, -NetworkManager will not delete any extraneous routes from tables except the main table. -This is to preserve backward compatibility for users who manage routing tables outside -of NetworkManager.

-

Owner: NMSettingIPConfig

-

Flags: Read / Write

-

Default value: 0

-

Since: 1.10

-
-
-
-

The “routes” property

-
  “routes”                   GPtrArray *
-

Array of IP routes.

-

[type GPtrArray(NMIPRoute)]

-

Owner: NMSettingIPConfig

-

Flags: Read / Write

-
-
- diff --git a/docs/libnm/html/NMSettingIPTunnel.html b/docs/libnm/html/NMSettingIPTunnel.html index b81a7a3f..f8671d1c 100644 --- a/docs/libnm/html/NMSettingIPTunnel.html +++ b/docs/libnm/html/NMSettingIPTunnel.html @@ -16,8 +16,7 @@ Top  |  Description  |  - Object Hierarchy  |  - Properties + Object Hierarchy Home Up @@ -152,88 +151,6 @@
-

Properties

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
guintencapsulation-limitRead / Write
guintflagsRead / Write
guintflow-labelRead / Write
-char *input-keyRead / Write
-char *localRead / Write
guintmodeRead / Write
guintmtuRead / Write
-char *output-keyRead / Write
-char *parentRead / Write
gbooleanpath-mtu-discoveryRead / Write
-char *remoteRead / Write
guinttosRead / Write
guintttlRead / Write
-
-

Types and Values

@@ -298,10 +215,6 @@ - - - - @@ -312,9 +225,6 @@

Object Hierarchy

    GFlags
     ╰── NMIPTunnelFlags
-    GObject
-    ╰── NMSetting
-        ╰── NMSettingIPTunnel
 
@@ -339,7 +249,7 @@ nm_setting_ip_tunnel_new (void

nm_setting_ip_tunnel_get_parent ()

const char *
 nm_setting_ip_tunnel_get_parent (NMSettingIPTunnel *setting);
-

Returns the “parent” property of the setting

+

Returns the “parent” property of the setting

Parameters

NM_SETTING_IP_TUNNEL_FLAGS
 NMSettingIPTunnel
enum NMIPTunnelFlags
@@ -366,7 +276,7 @@ nm_setting_ip_tunnel_get_parent (

nm_setting_ip_tunnel_get_mode ()

NMIPTunnelMode
 nm_setting_ip_tunnel_get_mode (NMSettingIPTunnel *setting);
-

Returns the “mode” property of the setting.

+

Returns the “mode” property of the setting.

Parameters

@@ -393,7 +303,7 @@ nm_setting_ip_tunnel_get_mode (

nm_setting_ip_tunnel_get_local ()

const char *
 nm_setting_ip_tunnel_get_local (NMSettingIPTunnel *setting);
-

Returns the “local” property of the setting.

+

Returns the “local” property of the setting.

Parameters

@@ -420,7 +330,7 @@ nm_setting_ip_tunnel_get_local (

nm_setting_ip_tunnel_get_remote ()

const char *
 nm_setting_ip_tunnel_get_remote (NMSettingIPTunnel *setting);
-

Returns the “remote” property of the setting.

+

Returns the “remote” property of the setting.

Parameters

@@ -447,7 +357,7 @@ nm_setting_ip_tunnel_get_remote (

nm_setting_ip_tunnel_get_ttl ()

guint
 nm_setting_ip_tunnel_get_ttl (NMSettingIPTunnel *setting);
-

Returns the “ttl” property of the setting.

+

Returns the “ttl” property of the setting.

Parameters

@@ -474,7 +384,7 @@ nm_setting_ip_tunnel_get_ttl (

nm_setting_ip_tunnel_get_tos ()

guint
 nm_setting_ip_tunnel_get_tos (NMSettingIPTunnel *setting);
-

Returns the “tos” property of the setting.

+

Returns the “tos” property of the setting.

Parameters

@@ -502,7 +412,7 @@ nm_setting_ip_tunnel_get_tos (gboolean nm_setting_ip_tunnel_get_path_mtu_discovery (NMSettingIPTunnel *setting); -

Returns the “path-mtu-discovery” property of the setting.

+

Returns the “path-mtu-discovery” property of the setting.

Parameters

@@ -529,7 +439,7 @@ nm_setting_ip_tunnel_get_path_mtu_discovery

nm_setting_ip_tunnel_get_input_key ()

const char *
 nm_setting_ip_tunnel_get_input_key (NMSettingIPTunnel *setting);
-

Returns the “input-key” property of the setting.

+

Returns the “input-key” property of the setting.

Parameters

@@ -556,7 +466,7 @@ nm_setting_ip_tunnel_get_input_key (

nm_setting_ip_tunnel_get_output_key ()

const char *
 nm_setting_ip_tunnel_get_output_key (NMSettingIPTunnel *setting);
-

Returns the “output-key” property of the setting.

+

Returns the “output-key” property of the setting.

Parameters

@@ -584,7 +494,7 @@ nm_setting_ip_tunnel_get_output_key (guint nm_setting_ip_tunnel_get_encapsulation_limit (NMSettingIPTunnel *setting); -

Returns the “encapsulation-limit” property of the setting.

+

Returns the “encapsulation-limit” property of the setting.

Parameters

@@ -611,7 +521,7 @@ nm_setting_ip_tunnel_get_encapsulation_limit

nm_setting_ip_tunnel_get_flow_label ()

guint
 nm_setting_ip_tunnel_get_flow_label (NMSettingIPTunnel *setting);
-

Returns the “flow-label” property of the setting.

+

Returns the “flow-label” property of the setting.

Parameters

@@ -638,7 +548,7 @@ nm_setting_ip_tunnel_get_flow_label (

nm_setting_ip_tunnel_get_mtu ()

guint
 nm_setting_ip_tunnel_get_mtu (NMSettingIPTunnel *setting);
-

Returns the “mtu” property of the setting.

+

Returns the “mtu” property of the setting.

Parameters

@@ -754,12 +664,6 @@ nm_setting_ip_tunnel_get_flags (
-

NMSettingIPTunnel

-
typedef struct _NMSettingIPTunnel NMSettingIPTunnel;
-

IP Tunneling Settings

-
-
-

enum NMIPTunnelFlags

Members

@@ -810,158 +714,6 @@ nm_setting_ip_tunnel_get_flags (
-
-

Property Details

-
-

The “encapsulation-limit” property

-
  “encapsulation-limit”      guint
-

How many additional levels of encapsulation are permitted to be prepended -to packets. This property applies only to IPv6 tunnels.

-

Owner: NMSettingIPTunnel

-

Flags: Read / Write

-

Allowed values: <= 255

-

Default value: 0

-

Since: 1.2

-
-
-
-

The “flags” property

-
  “flags”                    guint
-

Tunnel flags. Currently, the following values are supported: -NM_IP_TUNNEL_FLAG_IP6_IGN_ENCAP_LIMIT, NM_IP_TUNNEL_FLAG_IP6_USE_ORIG_TCLASS, -NM_IP_TUNNEL_FLAG_IP6_USE_ORIG_FLOWLABEL, NM_IP_TUNNEL_FLAG_IP6_MIP6_DEV, -NM_IP_TUNNEL_FLAG_IP6_RCV_DSCP_COPY, NM_IP_TUNNEL_FLAG_IP6_USE_ORIG_FWMARK. -They are valid only for IPv6 tunnels.

-

Owner: NMSettingIPTunnel

-

Flags: Read / Write

-

Default value: 0

-

Since: 1.12

-
-
-
-

The “flow-label” property

-
  “flow-label”               guint
-

The flow label to assign to tunnel packets. This property applies only to -IPv6 tunnels.

-

Owner: NMSettingIPTunnel

-

Flags: Read / Write

-

Allowed values: <= 1048575

-

Default value: 0

-

Since: 1.2

-
-
-
-

The “input-key” property

-
  “input-key”                char *
-

The key used for tunnel input packets; the property is valid only for -certain tunnel modes (GRE, IP6GRE). If empty, no key is used.

-

Owner: NMSettingIPTunnel

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.2

-
-
-
-

The “local” property

-
  “local”                    char *
-

The local endpoint of the tunnel; the value can be empty, otherwise it -must contain an IPv4 or IPv6 address.

-

Owner: NMSettingIPTunnel

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.2

-
-
-
-

The “mode” property

-
  “mode”                     guint
-

The tunneling mode, for example NM_IP_TUNNEL_MODE_IPIP or -NM_IP_TUNNEL_MODE_GRE.

-

Owner: NMSettingIPTunnel

-

Flags: Read / Write

-

Default value: 0

-

Since: 1.2

-
-
-
-

The “mtu” property

-
  “mtu”                      guint
-

If non-zero, only transmit packets of the specified size or smaller, -breaking larger packets up into multiple fragments.

-

Owner: NMSettingIPTunnel

-

Flags: Read / Write

-

Default value: 0

-

Since: 1.2

-
-
-
-

The “output-key” property

-
  “output-key”               char *
-

The key used for tunnel output packets; the property is valid only for -certain tunnel modes (GRE, IP6GRE). If empty, no key is used.

-

Owner: NMSettingIPTunnel

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.2

-
-
-
-

The “parent” property

-
  “parent”                   char *
-

If given, specifies the parent interface name or parent connection UUID -the new device will be bound to so that tunneled packets will only be -routed via that interface.

-

Owner: NMSettingIPTunnel

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.2

-
-
-
-

The “path-mtu-discovery” property

-
  “path-mtu-discovery”       gboolean
-

Whether to enable Path MTU Discovery on this tunnel.

-

Owner: NMSettingIPTunnel

-

Flags: Read / Write

-

Default value: TRUE

-

Since: 1.2

-
-
-
-

The “remote” property

-
  “remote”                   char *
-

The remote endpoint of the tunnel; the value must contain an IPv4 or IPv6 -address.

-

Owner: NMSettingIPTunnel

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.2

-
-
-
-

The “tos” property

-
  “tos”                      guint
-

The type of service (IPv4) or traffic class (IPv6) field to be set on -tunneled packets.

-

Owner: NMSettingIPTunnel

-

Flags: Read / Write

-

Allowed values: <= 255

-

Default value: 0

-

Since: 1.2

-
-
-
-

The “ttl” property

-
  “ttl”                      guint
-

The TTL to assign to tunneled packets. 0 is a special value meaning that -packets inherit the TTL value.

-

Owner: NMSettingIPTunnel

-

Flags: Read / Write

-

Allowed values: <= 255

-

Default value: 0

-

Since: 1.2

-
-
diff --git a/docs/libnm/html/NMSettingInfiniband.html b/docs/libnm/html/NMSettingInfiniband.html index 576342e1..11bc3df5 100644 --- a/docs/libnm/html/NMSettingInfiniband.html +++ b/docs/libnm/html/NMSettingInfiniband.html @@ -15,9 +15,7 @@
@@ -97,46 +95,6 @@
-

Properties

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-char *mac-addressRead / Write
guintmtuRead / Write
intp-keyRead / Write
-char *parentRead / Write
-char *transport-modeRead / Write
-
-

Types and Values

@@ -168,21 +126,10 @@ - - - -
#define NM_SETTING_INFINIBAND_PARENT
 NMSettingInfiniband
-

Object Hierarchy

-
    GObject
-    ╰── NMSetting
-        ╰── NMSettingInfiniband
-
-
-

Description

The NMSettingInfiniband object is a NMSetting subclass that describes properties necessary for connection to IP-over-InfiniBand networks.

@@ -222,7 +169,7 @@ nm_setting_infiniband_get_mac_address (

Returns

-

the “mac-address” property of the setting

+

the “mac-address” property of the setting


@@ -247,7 +194,7 @@ nm_setting_infiniband_get_mtu (

Returns

-

the “mtu” property of the setting

+

the “mtu” property of the setting


@@ -338,8 +285,8 @@ nm_setting_infiniband_get_parent (const char * nm_setting_infiniband_get_virtual_interface_name (NMSettingInfiniband *setting);
-

Returns the interface name created by combining “parent” -and “p-key”. (If either property is unset, this will +

Returns the interface name created by combining “parent” +and “p-key”. (If either property is unset, this will return NULL.)

Parameters

@@ -399,70 +346,6 @@ return #define NM_SETTING_INFINIBAND_PARENT "parent"
-
-
-

NMSettingInfiniband

-
typedef struct _NMSettingInfiniband NMSettingInfiniband;
-

Infiniband Settings

-
-
-
-

Property Details

-
-

The “mac-address” property

-
  “mac-address”              char *
-

If specified, this connection will only apply to the IPoIB device whose -permanent MAC address matches. This property does not change the MAC -address of the device (i.e. MAC spoofing).

-

Owner: NMSettingInfiniband

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “mtu” property

-
  “mtu”                      guint
-

If non-zero, only transmit packets of the specified size or smaller, -breaking larger packets up into multiple frames.

-

Owner: NMSettingInfiniband

-

Flags: Read / Write

-

Default value: 0

-
-
-
-

The “p-key” property

-
  “p-key”                    int
-

The InfiniBand P_Key to use for this device. A value of -1 means to use -the default P_Key (aka "the P_Key at index 0"). Otherwise, it is a 16-bit -unsigned integer, whose high bit is set if it is a "full membership" -P_Key.

-

Owner: NMSettingInfiniband

-

Flags: Read / Write

-

Allowed values: [-1,65535]

-

Default value: -1

-
-
-
-

The “parent” property

-
  “parent”                   char *
-

The interface name of the parent device of this device. Normally NULL, -but if the “p_key” property is set, then you must -specify the base device by setting either this property or -“mac-address”.

-

Owner: NMSettingInfiniband

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “transport-mode” property

-
  “transport-mode”           char *
-

The IP-over-InfiniBand transport mode. Either "datagram" or -"connected".

-

Owner: NMSettingInfiniband

-

Flags: Read / Write

-

Default value: NULL

-
-

Properties

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
gbooleanencryptRead / Write
-char *mka-cakRead / Write
NMSettingSecretFlagsmka-cak-flagsRead / Write
-char *mka-cknRead / Write
intmodeRead / Write
-char *parentRead / Write
intportRead / Write
gbooleansend-sciRead / Write
intvalidationRead / Write
-
-

Types and Values

@@ -230,10 +169,6 @@ - - - - @@ -257,9 +192,6 @@
    GEnum
     ├── NMSettingMacsecMode
     ╰── NMSettingMacsecValidation
-    GObject
-    ╰── NMSetting
-        ╰── NMSettingMacsec
 
@@ -303,7 +235,7 @@ nm_setting_macsec_get_parent (

Returns

-

the “parent” property of the setting

+

the “parent” property of the setting

Since: 1.6

@@ -329,7 +261,7 @@ nm_setting_macsec_get_mode (

Returns

-

the “mode” property of the setting

+

the “mode” property of the setting

Since: 1.6

@@ -355,7 +287,7 @@ nm_setting_macsec_get_encrypt (

Returns

-

the “encrypt” property of the setting

+

the “encrypt” property of the setting

Since: 1.6

@@ -381,7 +313,7 @@ nm_setting_macsec_get_mka_cak (

Returns

-

the “mka-cak” property of the setting

+

the “mka-cak” property of the setting

Since: 1.6

@@ -407,7 +339,7 @@ nm_setting_macsec_get_mka_cak_flags (

Returns

-

the NMSettingSecretFlags pertaining to the “mka-cak”

+

the NMSettingSecretFlags pertaining to the “mka-cak”

Since: 1.6

@@ -433,7 +365,7 @@ nm_setting_macsec_get_mka_ckn (

Returns

-

the “mka-ckn” property of the setting

+

the “mka-ckn” property of the setting

Since: 1.6

@@ -459,7 +391,7 @@ nm_setting_macsec_get_port (

Returns

-

the “port” property of the setting

+

the “port” property of the setting

Since: 1.6

@@ -485,7 +417,7 @@ nm_setting_macsec_get_validation (

Returns

-

the “validation” property of the setting

+

the “validation” property of the setting

Since: 1.6

@@ -511,7 +443,7 @@ nm_setting_macsec_get_send_sci (

Returns

-

the “send-sci” property of the setting

+

the “send-sci” property of the setting

Since: 1.12

@@ -579,12 +511,6 @@ nm_setting_macsec_get_send_sci (
-

NMSettingMacsec

-
typedef struct _NMSettingMacsec NMSettingMacsec;
-

MACSec Settings

-
-
-

enum NMSettingMacsecMode

NMSettingMacsecMode controls how the CAK (Connectivity Association Key) used in MKA (MACsec Key Agreement) is obtained.

@@ -671,106 +597,6 @@ verify frames are dropped

-
-

Property Details

-
-

The “encrypt” property

-
  “encrypt”                  gboolean
-

Whether the transmitted traffic must be encrypted.

-

Owner: NMSettingMacsec

-

Flags: Read / Write

-

Default value: TRUE

-

Since: 1.6

-
-
-
-

The “mka-cak” property

-
  “mka-cak”                  char *
-

The pre-shared CAK (Connectivity Association Key) for MACsec -Key Agreement.

-

Owner: NMSettingMacsec

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.6

-
-
-
-

The “mka-cak-flags” property

-
  “mka-cak-flags”            NMSettingSecretFlags
-

Flags indicating how to handle the “mka-cak” -property.

-

Owner: NMSettingMacsec

-

Flags: Read / Write

-

Since: 1.6

-
-
-
-

The “mka-ckn” property

-
  “mka-ckn”                  char *
-

The pre-shared CKN (Connectivity-association Key Name) for -MACsec Key Agreement.

-

Owner: NMSettingMacsec

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.6

-
-
-
-

The “mode” property

-
  “mode”                     int
-

Specifies how the CAK (Connectivity Association Key) for MKA (MACsec Key -Agreement) is obtained.

-

Owner: NMSettingMacsec

-

Flags: Read / Write

-

Default value: 0

-

Since: 1.6

-
-
-
-

The “parent” property

-
  “parent”                   char *
-

If given, specifies the parent interface name or parent connection UUID -from which this MACSEC interface should be created. If this property is -not specified, the connection must contain an NMSettingWired setting -with a “mac-address” property.

-

Owner: NMSettingMacsec

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.6

-
-
-
-

The “port” property

-
  “port”                     int
-

The port component of the SCI (Secure Channel Identifier), between 1 and 65534.

-

Owner: NMSettingMacsec

-

Flags: Read / Write

-

Allowed values: [1,65534]

-

Default value: 1

-

Since: 1.6

-
-
-
-

The “send-sci” property

-
  “send-sci”                 gboolean
-

Specifies whether the SCI (Secure Channel Identifier) is included -in every packet.

-

Owner: NMSettingMacsec

-

Flags: Read / Write

-

Default value: TRUE

-

Since: 1.12

-
-
-
-

The “validation” property

-
  “validation”               int
-

Specifies the validation mode for incoming frames.

-

Owner: NMSettingMacsec

-

Flags: Read / Write

-

Default value: 2

-

Since: 1.6

-
-
diff --git a/docs/libnm/html/NMSettingMacvlan.html b/docs/libnm/html/NMSettingMacvlan.html index 86590487..2b084c14 100644 --- a/docs/libnm/html/NMSettingMacvlan.html +++ b/docs/libnm/html/NMSettingMacvlan.html @@ -16,8 +16,7 @@
@@ -84,39 +83,6 @@
NM_SETTING_MACSEC_SEND_SCI
 NMSettingMacsec
enum NMSettingMacsecMode
Top  |  Description  |  - Object Hierarchy  |  - Properties + Object Hierarchy Home Up
-

Properties

-
----- - - - - - - - - - - - - - - - - - - - - - - -
guintmodeRead / Write
-char *parentRead / Write
gbooleanpromiscuousRead / Write
gbooleantapRead / Write
-
-

Types and Values

@@ -145,10 +111,6 @@ - - - - @@ -159,9 +121,6 @@

Object Hierarchy

    GEnum
     ╰── NMSettingMacvlanMode
-    GObject
-    ╰── NMSetting
-        ╰── NMSettingMacvlan
 
@@ -205,7 +164,7 @@ nm_setting_macvlan_get_parent (

Returns

-

the “parent” property of the setting

+

the “parent” property of the setting

Since: 1.2

@@ -231,7 +190,7 @@ nm_setting_macvlan_get_mode (

Returns

-

the “mode” property of the setting

+

the “mode” property of the setting

Since: 1.2

@@ -257,7 +216,7 @@ nm_setting_macvlan_get_promiscuous (

Returns

-

the “promiscuous” property of the setting

+

the “promiscuous” property of the setting

Since: 1.2

@@ -283,7 +242,7 @@ nm_setting_macvlan_get_tap (

Returns

-

the “tap” property of the setting

+

the “tap” property of the setting

Since: 1.2

@@ -321,12 +280,6 @@ nm_setting_macvlan_get_tap ( -

NMSettingMacvlan

-
typedef struct _NMSettingMacvlan NMSettingMacvlan;
-

MAC VLAN Settings

- -
-

enum NMSettingMacvlanMode

Members

@@ -394,52 +347,6 @@ nm_setting_macvlan_get_tap ( -

Property Details

-
-

The “mode” property

-
  “mode”                     guint
-

The macvlan mode, which specifies the communication mechanism between multiple -macvlans on the same lower device.

-

Owner: NMSettingMacvlan

-

Flags: Read / Write

-

Default value: 0

-

Since: 1.2

-
-
-
-

The “parent” property

-
  “parent”                   char *
-

If given, specifies the parent interface name or parent connection UUID -from which this MAC-VLAN interface should be created. If this property is -not specified, the connection must contain an NMSettingWired setting -with a “mac-address” property.

-

Owner: NMSettingMacvlan

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.2

-
-
-
-

The “promiscuous” property

-
  “promiscuous”              gboolean
-

Whether the interface should be put in promiscuous mode.

-

Owner: NMSettingMacvlan

-

Flags: Read / Write

-

Default value: TRUE

-

Since: 1.2

-
-
-
-

The “tap” property

-
  “tap”                      gboolean
-

Whether the interface should be a MACVTAP.

-

Owner: NMSettingMacvlan

-

Flags: Read / Write

-

Default value: FALSE

-

Since: 1.2

-
-
diff --git a/docs/libnm/html/NMSettingMatch.html b/docs/libnm/html/NMSettingMatch.html index 5fe5160d..188bd2c3 100644 --- a/docs/libnm/html/NMSettingMatch.html +++ b/docs/libnm/html/NMSettingMatch.html @@ -314,10 +314,14 @@ nm_setting_match_new (void

Creates a new NMSettingMatch object with default values.

Returns

-

the new empty NMSettingMatch object.

+

the new empty NMSettingMatch object

+

Note that this function was present in header files since version 1.14. +But due to a bug the symbol is only exposed and usable since version 1.32. +As workaround, use g_object_new(NM_TYPE_SETTING_MATCH) which works with all +versions since 1.14.

[transfer full]

-

Since: 1.14

+

Since: 1.32


diff --git a/docs/libnm/html/NMSettingOlpcMesh.html b/docs/libnm/html/NMSettingOlpcMesh.html index a129051a..c20ae085 100644 --- a/docs/libnm/html/NMSettingOlpcMesh.html +++ b/docs/libnm/html/NMSettingOlpcMesh.html @@ -15,9 +15,7 @@
NM_SETTING_MACVLAN_TAP
 NMSettingMacvlan
enum NMSettingMacvlanMode
@@ -76,35 +74,6 @@
-

Properties

-
----- - - - - - - - - - - - - - - - - - -
guintchannelRead / Write
-char *dhcp-anycast-addressRead / Write
-GBytes *ssidRead / Write
-
-

Types and Values

@@ -128,21 +97,10 @@ - - - -
#define NM_SETTING_OLPC_MESH_DHCP_ANYCAST_ADDRESS
 NMSettingOlpcMesh
-

Object Hierarchy

-
    GObject
-    ╰── NMSetting
-        ╰── NMSettingOlpcMesh
-
-
-

Description

The NMSettingOlpcMesh object is a NMSetting subclass that describes properties necessary for connection to OLPC-Mesh devices.

@@ -224,42 +182,6 @@ nm_setting_olpc_mesh_get_dhcp_anycast_address
#define NM_SETTING_OLPC_MESH_DHCP_ANYCAST_ADDRESS "dhcp-anycast-address"
 
-
-
-

NMSettingOlpcMesh

-
typedef struct _NMSettingOlpcMesh NMSettingOlpcMesh;
-

OLPC Wireless Mesh Settings

-
- -
-

Property Details

-
-

The “channel” property

-
  “channel”                  guint
-

Channel on which the mesh network to join is located.

-

Owner: NMSettingOlpcMesh

-

Flags: Read / Write

-

Default value: 0

-
-
-
-

The “dhcp-anycast-address” property

-
  “dhcp-anycast-address”     char *
-

Anycast DHCP MAC address used when requesting an IP address via DHCP. -The specific anycast address used determines which DHCP server class -answers the request.

-

Owner: NMSettingOlpcMesh

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “ssid” property

-
  “ssid”                     GBytes *
-

SSID of the mesh network to join.

-

Owner: NMSettingOlpcMesh

-

Flags: Read / Write

-
-

Properties

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
guintbaudRead / Write
gbooleancrtsctsRead / Write
guintlcp-echo-failureRead / Write
guintlcp-echo-intervalRead / Write
gbooleanmppe-statefulRead / Write
guintmruRead / Write
guintmtuRead / Write
gbooleanno-vj-compRead / Write
gbooleannoauthRead / Write
gbooleannobsdcompRead / Write
gbooleannodeflateRead / Write
gbooleanrefuse-chapRead / Write
gbooleanrefuse-eapRead / Write
gbooleanrefuse-mschapRead / Write
gbooleanrefuse-mschapv2Read / Write
gbooleanrefuse-papRead / Write
gbooleanrequire-mppeRead / Write
gbooleanrequire-mppe-128Read / Write
-
-

Types and Values

@@ -383,21 +279,10 @@ that require PPP to deliver IP capability

- - - -
#define NM_SETTING_PPP_LCP_ECHO_INTERVAL
 NMSettingPpp
-

Object Hierarchy

-
    GObject
-    ╰── NMSetting
-        ╰── NMSettingPpp
-
-
-

Description

The NMSettingPpp object is a NMSetting subclass that describes properties necessary for connection to networks that require PPP transport, like PPPoE @@ -438,7 +323,7 @@ nm_setting_ppp_get_noauth (

Returns

-

the “noauth” property of the setting

+

the “noauth” property of the setting


@@ -463,7 +348,7 @@ nm_setting_ppp_get_refuse_eap (

Returns

-

the “refuse-eap” property of the setting

+

the “refuse-eap” property of the setting


@@ -488,7 +373,7 @@ nm_setting_ppp_get_refuse_pap (

Returns

-

the “refuse-pap” property of the setting

+

the “refuse-pap” property of the setting


@@ -513,7 +398,7 @@ nm_setting_ppp_get_refuse_chap (

Returns

-

the “refuse-chap” property of the setting

+

the “refuse-chap” property of the setting


@@ -538,7 +423,7 @@ nm_setting_ppp_get_refuse_mschap (

Returns

-

the “refuse-mschap” property of the setting

+

the “refuse-mschap” property of the setting


@@ -563,7 +448,7 @@ nm_setting_ppp_get_refuse_mschapv2 (

Returns

-

the “refuse-mschapv2” property of the setting

+

the “refuse-mschapv2” property of the setting


@@ -588,7 +473,7 @@ nm_setting_ppp_get_nobsdcomp (

Returns

-

the “nobsdcomp” property of the setting

+

the “nobsdcomp” property of the setting


@@ -613,7 +498,7 @@ nm_setting_ppp_get_nodeflate (

Returns

-

the “nodeflate” property of the setting

+

the “nodeflate” property of the setting


@@ -638,7 +523,7 @@ nm_setting_ppp_get_no_vj_comp (

Returns

-

the “no-vj-comp” property of the setting

+

the “no-vj-comp” property of the setting


@@ -663,7 +548,7 @@ nm_setting_ppp_get_require_mppe (

Returns

-

the “require-mppe” property of the setting

+

the “require-mppe” property of the setting


@@ -688,7 +573,7 @@ nm_setting_ppp_get_require_mppe_128 (

Returns

-

the “require-mppe-128” property of the setting

+

the “require-mppe-128” property of the setting


@@ -713,7 +598,7 @@ nm_setting_ppp_get_mppe_stateful (

Returns

-

the “mppe-stateful” property of the setting

+

the “mppe-stateful” property of the setting


@@ -738,7 +623,7 @@ nm_setting_ppp_get_crtscts (

Returns

-

the “crtscts” property of the setting

+

the “crtscts” property of the setting


@@ -763,7 +648,7 @@ nm_setting_ppp_get_baud (

Returns

-

the “baud” property of the setting

+

the “baud” property of the setting


@@ -788,7 +673,7 @@ nm_setting_ppp_get_mru (

Returns

-

the “mru” property of the setting

+

the “mru” property of the setting


@@ -813,7 +698,7 @@ nm_setting_ppp_get_mtu (

Returns

-

the “mtu” property of the setting

+

the “mtu” property of the setting


@@ -838,7 +723,7 @@ nm_setting_ppp_get_lcp_echo_failure (

Returns

-

the “lcp-echo-failure” property of the setting

+

the “lcp-echo-failure” property of the setting


@@ -863,7 +748,7 @@ nm_setting_ppp_get_lcp_echo_interval (

Returns

-

the “lcp-echo-interval” property of the setting

+

the “lcp-echo-interval” property of the setting

@@ -982,198 +867,6 @@ nm_setting_ppp_get_lcp_echo_interval (#define NM_SETTING_PPP_LCP_ECHO_INTERVAL "lcp-echo-interval" -
-
-

NMSettingPpp

-
typedef struct _NMSettingPpp NMSettingPpp;
-

Point-to-Point Protocol Settings

-
- -
-

Property Details

-
-

The “baud” property

-
  “baud”                     guint
-

If non-zero, instruct pppd to set the serial port to the specified -baudrate. This value should normally be left as 0 to automatically -choose the speed.

-

Owner: NMSettingPpp

-

Flags: Read / Write

-

Default value: 0

-
-
-
-

The “crtscts” property

-
  “crtscts”                  gboolean
-

If TRUE, specify that pppd should set the serial port to use hardware -flow control with RTS and CTS signals. This value should normally be set -to FALSE.

-

Owner: NMSettingPpp

-

Flags: Read / Write

-

Default value: FALSE

-
-
-
-

The “lcp-echo-failure” property

-
  “lcp-echo-failure”         guint
-

If non-zero, instruct pppd to presume the connection to the peer has -failed if the specified number of LCP echo-requests go unanswered by the -peer. The "lcp-echo-interval" property must also be set to a non-zero -value if this property is used.

-

Owner: NMSettingPpp

-

Flags: Read / Write

-

Default value: 0

-
-
-
-

The “lcp-echo-interval” property

-
  “lcp-echo-interval”        guint
-

If non-zero, instruct pppd to send an LCP echo-request frame to the peer -every n seconds (where n is the specified value). Note that some PPP -peers will respond to echo requests and some will not, and it is not -possible to autodetect this.

-

Owner: NMSettingPpp

-

Flags: Read / Write

-

Default value: 0

-
-
-
-

The “mppe-stateful” property

-
  “mppe-stateful”            gboolean
-

If TRUE, stateful MPPE is used. See pppd documentation for more -information on stateful MPPE.

-

Owner: NMSettingPpp

-

Flags: Read / Write

-

Default value: FALSE

-
-
-
-

The “mru” property

-
  “mru”                      guint
-

If non-zero, instruct pppd to request that the peer send packets no -larger than the specified size. If non-zero, the MRU should be between -128 and 16384.

-

Owner: NMSettingPpp

-

Flags: Read / Write

-

Allowed values: <= 16384

-

Default value: 0

-
-
-
-

The “mtu” property

-
  “mtu”                      guint
-

If non-zero, instruct pppd to send packets no larger than the specified -size.

-

Owner: NMSettingPpp

-

Flags: Read / Write

-

Default value: 0

-
-
-
-

The “no-vj-comp” property

-
  “no-vj-comp”               gboolean
-

If TRUE, Van Jacobsen TCP header compression will not be requested.

-

Owner: NMSettingPpp

-

Flags: Read / Write

-

Default value: FALSE

-
-
-
-

The “noauth” property

-
  “noauth”                   gboolean
-

If TRUE, do not require the other side (usually the PPP server) to -authenticate itself to the client. If FALSE, require authentication -from the remote side. In almost all cases, this should be TRUE.

-

Owner: NMSettingPpp

-

Flags: Read / Write

-

Default value: TRUE

-
-
-
-

The “nobsdcomp” property

-
  “nobsdcomp”                gboolean
-

If TRUE, BSD compression will not be requested.

-

Owner: NMSettingPpp

-

Flags: Read / Write

-

Default value: FALSE

-
-
-
-

The “nodeflate” property

-
  “nodeflate”                gboolean
-

If TRUE, "deflate" compression will not be requested.

-

Owner: NMSettingPpp

-

Flags: Read / Write

-

Default value: FALSE

-
-
-
-

The “refuse-chap” property

-
  “refuse-chap”              gboolean
-

If TRUE, the CHAP authentication method will not be used.

-

Owner: NMSettingPpp

-

Flags: Read / Write

-

Default value: FALSE

-
-
-
-

The “refuse-eap” property

-
  “refuse-eap”               gboolean
-

If TRUE, the EAP authentication method will not be used.

-

Owner: NMSettingPpp

-

Flags: Read / Write

-

Default value: FALSE

-
-
-
-

The “refuse-mschap” property

-
  “refuse-mschap”            gboolean
-

If TRUE, the MSCHAP authentication method will not be used.

-

Owner: NMSettingPpp

-

Flags: Read / Write

-

Default value: FALSE

-
-
-
-

The “refuse-mschapv2” property

-
  “refuse-mschapv2”          gboolean
-

If TRUE, the MSCHAPv2 authentication method will not be used.

-

Owner: NMSettingPpp

-

Flags: Read / Write

-

Default value: FALSE

-
-
-
-

The “refuse-pap” property

-
  “refuse-pap”               gboolean
-

If TRUE, the PAP authentication method will not be used.

-

Owner: NMSettingPpp

-

Flags: Read / Write

-

Default value: FALSE

-
-
-
-

The “require-mppe” property

-
  “require-mppe”             gboolean
-

If TRUE, MPPE (Microsoft Point-to-Point Encryption) will be required for -the PPP session. If either 64-bit or 128-bit MPPE is not available the -session will fail. Note that MPPE is not used on mobile broadband -connections.

-

Owner: NMSettingPpp

-

Flags: Read / Write

-

Default value: FALSE

-
-
-
-

The “require-mppe-128” property

-
  “require-mppe-128”         gboolean
-

If TRUE, 128-bit MPPE (Microsoft Point-to-Point Encryption) will be -required for the PPP session, and the "require-mppe" property must also -be set to TRUE. If 128-bit MPPE is not available the session will fail.

-

Owner: NMSettingPpp

-

Flags: Read / Write

-

Default value: FALSE

-
-

Properties

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-char *parentRead / Write
-char *passwordRead / Write
NMSettingSecretFlagspassword-flagsRead / Write
-char *serviceRead / Write
-char *usernameRead / Write
-
-

Types and Values

@@ -161,21 +118,10 @@ - - - -
#define NM_SETTING_PPPOE_PASSWORD_FLAGS
 NMSettingPppoe
-

Object Hierarchy

-
    GObject
-    ╰── NMSetting
-        ╰── NMSettingPppoe
-
-
-

Description

The NMSettingPppoe object is a NMSetting subclass that describes properties necessary for connection to networks that require PPPoE connections @@ -216,7 +162,7 @@ nm_setting_pppoe_get_parent (

Returns

-

the “parent” property of the setting

+

the “parent” property of the setting

Since: 1.10

@@ -242,7 +188,7 @@ nm_setting_pppoe_get_service (

Returns

-

the “service” property of the setting

+

the “service” property of the setting


@@ -267,7 +213,7 @@ nm_setting_pppoe_get_username (

Returns

-

the “username” property of the setting

+

the “username” property of the setting


@@ -292,7 +238,7 @@ nm_setting_pppoe_get_password (

Returns

-

the “password” property of the setting

+

the “password” property of the setting


@@ -317,7 +263,7 @@ nm_setting_pppoe_get_password_flags (

Returns

-

the NMSettingSecretFlags pertaining to the “password”

+

the NMSettingSecretFlags pertaining to the “password”

@@ -358,65 +304,6 @@ nm_setting_pppoe_get_password_flags (#define NM_SETTING_PPPOE_PASSWORD_FLAGS "password-flags" -
-
-

NMSettingPppoe

-
typedef struct _NMSettingPppoe NMSettingPppoe;
-

PPP-over-Ethernet Settings

-
- -
-

Property Details

-
-

The “parent” property

-
  “parent”                   char *
-

If given, specifies the parent interface name on which this PPPoE -connection should be created. If this property is not specified, -the connection is activated on the interface specified in -“interface-name” of NMSettingConnection.

-

Owner: NMSettingPppoe

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.10

-
-
-
-

The “password” property

-
  “password”                 char *
-

Password used to authenticate with the PPPoE service.

-

Owner: NMSettingPppoe

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “password-flags” property

-
  “password-flags”           NMSettingSecretFlags
-

Flags indicating how to handle the “password” property.

-

Owner: NMSettingPppoe

-

Flags: Read / Write

-
-
-
-

The “service” property

-
  “service”                  char *
-

If specified, instruct PPPoE to only initiate sessions with access -concentrators that provide the specified service. For most providers, -this should be left blank. It is only required if there are multiple -access concentrators or a specific service is known to be required.

-

Owner: NMSettingPppoe

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “username” property

-
  “username”                 char *
-

Username used to authenticate with the PPPoE service.

-

Owner: NMSettingPppoe

-

Flags: Read / Write

-

Default value: NULL

-
-

Properties

-
----- - - - - - - - - - - - - - - - - - - - - - - -
gbooleanbrowser-onlyRead / Write
intmethodRead / Write
-char *pac-scriptRead / Write
-char *pac-urlRead / Write
-
-

Types and Values

@@ -148,10 +113,6 @@ - - - -
#define NM_SETTING_PROXY_PAC_SCRIPT
 NMSettingProxy
@@ -159,16 +120,13 @@

Object Hierarchy

    GEnum
     ╰── NMSettingProxyMethod
-    GObject
-    ╰── NMSetting
-        ╰── NMSettingProxy
 

Description

The NMSettingProxy object is a NMSetting subclass that describes properties related to Proxy settings like PAC URL, PAC script etc.

-

NetworkManager support 2 values for the “method” property for +

NetworkManager support 2 values for the “method” property for proxy. If "auto" is specified then WPAD takes place and the appropriate details are pushed into PacRunner or user can override this URL with a new PAC URL or a PAC script. If "none" is selected then no proxy configuration is given to PacRunner @@ -359,54 +317,6 @@ nm_setting_proxy_get_pac_script (#define NM_SETTING_PROXY_PAC_SCRIPT "pac-script"

-
-
-

NMSettingProxy

-
typedef struct _NMSettingProxy NMSettingProxy;
-

WWW Proxy Settings

-
- -
-

Property Details

-
-

The “browser-only” property

-
  “browser-only”             gboolean
-

Whether the proxy configuration is for browser only.

-

Owner: NMSettingProxy

-

Flags: Read / Write

-

Default value: FALSE

-

Since: 1.6

-
-
-
-

The “method” property

-
  “method”                   int
-

Method for proxy configuration, Default is NM_SETTING_PROXY_METHOD_NONE

-

Owner: NMSettingProxy

-

Flags: Read / Write

-

Default value: 0

-

Since: 1.6

-
-
-
-

The “pac-script” property

-
  “pac-script”               char *
-

PAC script for the connection.

-

Owner: NMSettingProxy

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.6

-
-
-
-

The “pac-url” property

-
  “pac-url”                  char *
-

PAC URL for obtaining PAC file.

-

Owner: NMSettingProxy

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.6

-
-

Properties

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
guintbaudRead / Write
guintbitsRead / Write
NMSettingSerialParityparityRead / Write
guint64send-delayRead / Write
guintstopbitsRead / Write
-
-

Types and Values

@@ -166,10 +128,6 @@ serial communications

- - - -
#define NM_SETTING_SERIAL_SEND_DELAY
 NMSettingSerial
@@ -177,9 +135,6 @@ serial communications

Object Hierarchy

    GEnum
     ╰── NMSettingSerialParity
-    GObject
-    ╰── NMSetting
-        ╰── NMSettingSerial
 
@@ -223,7 +178,7 @@ nm_setting_serial_get_baud (

Returns

-

the “baud” property of the setting

+

the “baud” property of the setting


@@ -248,7 +203,7 @@ nm_setting_serial_get_bits (

Returns

-

the “bits” property of the setting

+

the “bits” property of the setting


@@ -273,7 +228,7 @@ nm_setting_serial_get_parity (

Returns

-

the “parity” property of the setting

+

the “parity” property of the setting


@@ -298,7 +253,7 @@ nm_setting_serial_get_stopbits (

Returns

-

the “stopbits” property of the setting

+

the “stopbits” property of the setting


@@ -323,7 +278,7 @@ nm_setting_serial_get_send_delay (

Returns

-

the “send-delay” property of the setting

+

the “send-delay” property of the setting

@@ -402,64 +357,6 @@ nm_setting_serial_get_send_delay (#define NM_SETTING_SERIAL_SEND_DELAY "send-delay" -
-
-

NMSettingSerial

-
typedef struct _NMSettingSerial NMSettingSerial;
-

Serial Link Settings

-
- -
-

Property Details

-
-

The “baud” property

-
  “baud”                     guint
-

Speed to use for communication over the serial port. Note that this -value usually has no effect for mobile broadband modems as they generally -ignore speed settings and use the highest available speed.

-

Owner: NMSettingSerial

-

Flags: Read / Write

-

Default value: 57600

-
-
-
-

The “bits” property

-
  “bits”                     guint
-

Byte-width of the serial communication. The 8 in "8n1" for example.

-

Owner: NMSettingSerial

-

Flags: Read / Write

-

Allowed values: [5,8]

-

Default value: 8

-
-
-
-

The “parity” property

-
  “parity”                   NMSettingSerialParity
-

Parity setting of the serial port.

-

Owner: NMSettingSerial

-

Flags: Read / Write

-

Default value: NM_SETTING_SERIAL_PARITY_NONE

-
-
-
-

The “send-delay” property

-
  “send-delay”               guint64
-

Time to delay between each byte sent to the modem, in microseconds.

-

Owner: NMSettingSerial

-

Flags: Read / Write

-

Default value: 0

-
-
-
-

The “stopbits” property

-
  “stopbits”                 guint
-

Number of stop bits for communication on the serial port. Either 1 or 2. -The 1 in "8n1" for example.

-

Owner: NMSettingSerial

-

Flags: Read / Write

-

Allowed values: [1,2]

-

Default value: 1

-
-
-

Properties

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-char *configRead / Write
-GPtrArray *link-watchersRead / Write
intmcast-rejoin-countRead / Write
intmcast-rejoin-intervalRead / Write
intnotify-peers-countRead / Write
intnotify-peers-intervalRead / Write
-char *runnerRead / Write
gbooleanrunner-activeRead / Write
-char *runner-agg-select-policyRead / Write
gbooleanrunner-fast-rateRead / Write
-char *runner-hwaddr-policyRead / Write
intrunner-min-portsRead / Write
intrunner-sys-prioRead / Write
-char *runner-tx-balancerRead / Write
intrunner-tx-balancer-intervalRead / Write
GStrvrunner-tx-hashRead / Write
-

Types and Values

@@ -661,10 +562,6 @@ - - - -
#define NM_SETTING_TEAM_RUNNER_AGG_SELECT_POLICY_DEFAULT
 NMSettingTeam
@@ -674,9 +571,6 @@ ╰── NMTeamLinkWatcher GFlags ╰── NMTeamLinkWatcherArpPingFlags - GObject - ╰── NMSetting - ╰── NMSettingTeam
@@ -1308,7 +1202,7 @@ nm_setting_team_get_config (

Returns

-

the “config” property of the setting

+

the “config” property of the setting


@@ -1334,7 +1228,7 @@ nm_setting_team_get_notify_peers_count

Returns

-

the #“notify-peers-count” property of the setting

+

the #“notify-peers-count” property of the setting

Since: 1.12

@@ -1361,7 +1255,7 @@ nm_setting_team_get_notify_peers_interval

Returns

-

the #“notify-peers-interval” property of the setting

+

the #“notify-peers-interval” property of the setting

Since: 1.12

@@ -1388,7 +1282,7 @@ nm_setting_team_get_mcast_rejoin_count

Returns

-

the #“mcast-rejoin-count” property of the setting

+

the #“mcast-rejoin-count” property of the setting

Since: 1.12

@@ -1415,7 +1309,7 @@ nm_setting_team_get_mcast_rejoin_interval

Returns

-

the #“mcast-rejoin-interval” property of the setting

+

the #“mcast-rejoin-interval” property of the setting

Since: 1.12

@@ -1441,7 +1335,7 @@ nm_setting_team_get_runner (

Returns

-

the #“runner” property of the setting

+

the #“runner” property of the setting

Since: 1.12

@@ -1468,7 +1362,7 @@ nm_setting_team_get_runner_hwaddr_policy

Returns

-

the #“runner-hwaddr-policy” property of the setting

+

the #“runner-hwaddr-policy” property of the setting

Since: 1.12

@@ -1495,7 +1389,7 @@ nm_setting_team_get_runner_tx_balancer

Returns

-

the #“runner-tx-balancer” property of the setting

+

the #“runner-tx-balancer” property of the setting

Since: 1.12

@@ -1522,7 +1416,7 @@ nm_setting_team_get_runner_tx_balancer_interval

Returns

-

the #“runner-tx-balancer_interval” property of the setting

+

the #“runner-tx-balancer_interval” property of the setting

Since: 1.12

@@ -1548,7 +1442,7 @@ nm_setting_team_get_runner_active (

Returns

-

the #“runner_active” property of the setting

+

the #“runner_active” property of the setting

Since: 1.12

@@ -1574,7 +1468,7 @@ nm_setting_team_get_runner_fast_rate (

Returns

-

the #“runner-fast-rate” property of the setting

+

the #“runner-fast-rate” property of the setting

Since: 1.12

@@ -1600,7 +1494,7 @@ nm_setting_team_get_runner_sys_prio (

Returns

-

the #“runner-sys-prio” property of the setting

+

the #“runner-sys-prio” property of the setting

Since: 1.12

@@ -1626,7 +1520,7 @@ nm_setting_team_get_runner_min_ports (

Returns

-

the #“runner-min-ports” property of the setting

+

the #“runner-min-ports” property of the setting

Since: 1.12

@@ -1653,7 +1547,7 @@ nm_setting_team_get_runner_agg_select_policy

Returns

-

the #“runner-agg-select-policy” property of the setting

+

the #“runner-agg-select-policy” property of the setting

Since: 1.12

@@ -2307,184 +2201,6 @@ option 'validate_inactive' is enabled (set to true).

NM_SETTING_TEAM_RUNNER_AGG_SELECT_POLICY_DEFAULT

#define             NM_SETTING_TEAM_RUNNER_AGG_SELECT_POLICY_DEFAULT
-
-
-

NMSettingTeam

-
typedef struct _NMSettingTeam NMSettingTeam;
-

Teaming Settings

-
- -
-

Property Details

-
-

The “config” property

-
  “config”                   char *
-

The JSON configuration for the team network interface. The property -should contain raw JSON configuration data suitable for teamd, because -the value is passed directly to teamd. If not specified, the default -configuration is used. See man teamd.conf for the format details.

-

Owner: NMSettingTeam

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “link-watchers” property

-
  “link-watchers”            GPtrArray *
-

Link watchers configuration for the connection: each link watcher is -defined by a dictionary, whose keys depend upon the selected link -watcher. Available link watchers are 'ethtool', 'nsna_ping' and -'arp_ping' and it is specified in the dictionary with the key 'name'. -Available keys are: ethtool: 'delay-up', 'delay-down', 'init-wait'; -nsna_ping: 'init-wait', 'interval', 'missed-max', 'target-host'; -arp_ping: all the ones in nsna_ping and 'source-host', 'validate-active', -'validate-inactive', 'send-always'. See teamd.conf man for more details.

-

[type GPtrArray(NMTeamLinkWatcher)]

-

Owner: NMSettingTeam

-

Flags: Read / Write

-

Since: 1.12

-
-
-
-

The “mcast-rejoin-count” property

-
  “mcast-rejoin-count”       int
-

Corresponds to the teamd mcast_rejoin.count.

-

Owner: NMSettingTeam

-

Flags: Read / Write

-

Default value: -1

-

Since: 1.12

-
-
-
-

The “mcast-rejoin-interval” property

-
  “mcast-rejoin-interval”    int
-

Corresponds to the teamd mcast_rejoin.interval.

-

Owner: NMSettingTeam

-

Flags: Read / Write

-

Default value: -1

-

Since: 1.12

-
-
-
-

The “notify-peers-count” property

-
  “notify-peers-count”       int
-

Corresponds to the teamd notify_peers.count.

-

Owner: NMSettingTeam

-

Flags: Read / Write

-

Default value: -1

-

Since: 1.12

-
-
-
-

The “notify-peers-interval” property

-
  “notify-peers-interval”    int
-

Corresponds to the teamd notify_peers.interval.

-

Owner: NMSettingTeam

-

Flags: Read / Write

-

Default value: -1

-

Since: 1.12

-
-
-
-

The “runner” property

-
  “runner”                   char *
-

Corresponds to the teamd runner.name. -Permitted values are: "roundrobin", "broadcast", "activebackup", -"loadbalance", "lacp", "random".

-

Owner: NMSettingTeam

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.12

-
-
-
-

The “runner-active” property

-
  “runner-active”            gboolean
-

Corresponds to the teamd runner.active.

-

Owner: NMSettingTeam

-

Flags: Read / Write

-

Default value: TRUE

-

Since: 1.12

-
-
-
-

The “runner-agg-select-policy” property

-
  “runner-agg-select-policy” char *
-

Corresponds to the teamd runner.agg_select_policy.

-

Owner: NMSettingTeam

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.12

-
-
-
-

The “runner-fast-rate” property

-
  “runner-fast-rate”         gboolean
-

Corresponds to the teamd runner.fast_rate.

-

Owner: NMSettingTeam

-

Flags: Read / Write

-

Default value: FALSE

-

Since: 1.12

-
-
-
-

The “runner-hwaddr-policy” property

-
  “runner-hwaddr-policy”     char *
-

Corresponds to the teamd runner.hwaddr_policy.

-

Owner: NMSettingTeam

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.12

-
-
-
-

The “runner-min-ports” property

-
  “runner-min-ports”         int
-

Corresponds to the teamd runner.min_ports.

-

Owner: NMSettingTeam

-

Flags: Read / Write

-

Default value: -1

-

Since: 1.12

-
-
-
-

The “runner-sys-prio” property

-
  “runner-sys-prio”          int
-

Corresponds to the teamd runner.sys_prio.

-

Owner: NMSettingTeam

-

Flags: Read / Write

-

Default value: -1

-

Since: 1.12

-
-
-
-

The “runner-tx-balancer” property

-
  “runner-tx-balancer”       char *
-

Corresponds to the teamd runner.tx_balancer.name.

-

Owner: NMSettingTeam

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.12

-
-
-
-

The “runner-tx-balancer-interval” property

-
  “runner-tx-balancer-interval” int
-

Corresponds to the teamd runner.tx_balancer.interval.

-

Owner: NMSettingTeam

-

Flags: Read / Write

-

Default value: -1

-

Since: 1.12

-
-
-
-

The “runner-tx-hash” property

-
  “runner-tx-hash”           GStrv
-

Corresponds to the teamd runner.tx_hash.

-

Owner: NMSettingTeam

-

Flags: Read / Write

-

Since: 1.12

-
-

Properties

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-char *configRead / Write
intlacp-keyRead / Write
intlacp-prioRead / Write
-GPtrArray *link-watchersRead / Write
intprioRead / Write
intqueue-idRead / Write
gbooleanstickyRead / Write
-
-

Types and Values

@@ -244,21 +193,10 @@ - - - -
#define NM_SETTING_TEAM_PORT_LACP_PRIO_DEFAULT
 NMSettingTeamPort
-

Object Hierarchy

-
    GObject
-    ╰── NMSetting
-        ╰── NMSettingTeamPort
-
-
-

Description

The NMSettingTeamPort object is a NMSetting subclass that describes optional properties that apply to team ports.

@@ -298,7 +236,7 @@ nm_setting_team_port_get_config (

Returns

-

the “config” property of the setting

+

the “config” property of the setting


@@ -323,7 +261,7 @@ nm_setting_team_port_get_queue_id (

Returns

-

the “queue_id” property of the setting

+

the “queue_id” property of the setting

Since: 1.12

@@ -349,7 +287,7 @@ nm_setting_team_port_get_prio (

Returns

-

the “prio” property of the setting

+

the “prio” property of the setting

Since: 1.12

@@ -375,7 +313,7 @@ nm_setting_team_port_get_sticky (

Returns

-

the “sticky” property of the setting

+

the “sticky” property of the setting

Since: 1.12

@@ -401,7 +339,7 @@ nm_setting_team_port_get_lacp_prio (

Returns

-

the “lacp-prio” property of the setting

+

the “lacp-prio” property of the setting

Since: 1.12

@@ -427,7 +365,7 @@ nm_setting_team_port_get_lacp_key (

Returns

-

the “lacp-key” property of the setting

+

the “lacp-key” property of the setting

Since: 1.12

@@ -684,94 +622,6 @@ nm_setting_team_port_clear_link_watchers
#define NM_SETTING_TEAM_PORT_LACP_PRIO_DEFAULT 255
 
-
-
-

NMSettingTeamPort

-
typedef struct _NMSettingTeamPort NMSettingTeamPort;
-

Team Port Settings

-
- -
-

Property Details

-
-

The “config” property

-
  “config”                   char *
-

The JSON configuration for the team port. The property should contain raw -JSON configuration data suitable for teamd, because the value is passed -directly to teamd. If not specified, the default configuration is -used. See man teamd.conf for the format details.

-

Owner: NMSettingTeamPort

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “lacp-key” property

-
  “lacp-key”                 int
-

Corresponds to the teamd ports.PORTIFNAME.lacp_key.

-

Owner: NMSettingTeamPort

-

Flags: Read / Write

-

Default value: -1

-

Since: 1.12

-
-
-
-

The “lacp-prio” property

-
  “lacp-prio”                int
-

Corresponds to the teamd ports.PORTIFNAME.lacp_prio.

-

Owner: NMSettingTeamPort

-

Flags: Read / Write

-

Default value: -1

-

Since: 1.12

-
-
-
-

The “link-watchers” property

-
  “link-watchers”            GPtrArray *
-

Link watchers configuration for the connection: each link watcher is -defined by a dictionary, whose keys depend upon the selected link -watcher. Available link watchers are 'ethtool', 'nsna_ping' and -'arp_ping' and it is specified in the dictionary with the key 'name'. -Available keys are: ethtool: 'delay-up', 'delay-down', 'init-wait'; -nsna_ping: 'init-wait', 'interval', 'missed-max', 'target-host'; -arp_ping: all the ones in nsna_ping and 'source-host', 'validate-active', -'validate-inactive', 'send-always'. See teamd.conf man for more details.

-

[type GPtrArray(NMTeamLinkWatcher)]

-

Owner: NMSettingTeamPort

-

Flags: Read / Write

-

Since: 1.12

-
-
-
-

The “prio” property

-
  “prio”                     int
-

Corresponds to the teamd ports.PORTIFNAME.prio.

-

Owner: NMSettingTeamPort

-

Flags: Read / Write

-

Default value: 0

-

Since: 1.12

-
-
-
-

The “queue-id” property

-
  “queue-id”                 int
-

Corresponds to the teamd ports.PORTIFNAME.queue_id. -When set to -1 means the parameter is skipped from the json config.

-

Owner: NMSettingTeamPort

-

Flags: Read / Write

-

Default value: -1

-

Since: 1.12

-
-
-
-

The “sticky” property

-
  “sticky”                   gboolean
-

Corresponds to the teamd ports.PORTIFNAME.sticky.

-

Owner: NMSettingTeamPort

-

Flags: Read / Write

-

Default value: FALSE

-

Since: 1.12

-
-

Properties

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-char *groupRead / Write
guintmodeRead / Write
gbooleanmulti-queueRead / Write
-char *ownerRead / Write
gbooleanpiRead / Write
gbooleanvnet-hdrRead / Write
-
-

Types and Values

@@ -182,10 +137,6 @@ - - - -
enum NMSettingTunMode
 NMSettingTun
@@ -193,9 +144,6 @@

Object Hierarchy

    GEnum
     ╰── NMSettingTunMode
-    GObject
-    ╰── NMSetting
-        ╰── NMSettingTun
 
@@ -239,7 +187,7 @@ nm_setting_tun_get_mode (

Returns

-

the “mode” property of the setting

+

the “mode” property of the setting

Since: 1.2

@@ -265,7 +213,7 @@ nm_setting_tun_get_owner (

Returns

-

the “owner” property of the setting

+

the “owner” property of the setting

Since: 1.2

@@ -291,7 +239,7 @@ nm_setting_tun_get_group (

Returns

-

the “group” property of the setting

+

the “group” property of the setting

Since: 1.2

@@ -317,7 +265,7 @@ nm_setting_tun_get_pi (

Returns

-

the “pi” property of the setting

+

the “pi” property of the setting

Since: 1.2

@@ -343,7 +291,7 @@ nm_setting_tun_get_vnet_hdr (

Returns

-

the “vnet_hdr” property of the setting

+

the “vnet_hdr” property of the setting

Since: 1.2

@@ -369,7 +317,7 @@ nm_setting_tun_get_multi_queue (

Returns

-

the “multi-queue” property of the setting

+

the “multi-queue” property of the setting

Since: 1.2

@@ -455,84 +403,6 @@ nm_setting_tun_get_multi_queue ( -
-
-

NMSettingTun

-
typedef struct _NMSettingTun NMSettingTun;
-

Tunnel Settings

-
- -
-

Property Details

-
-

The “group” property

-
  “group”                    char *
-

The group ID which will own the device. If set to NULL everyone -will be able to use the device.

-

Owner: NMSettingTun

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.2

-
-
-
-

The “mode” property

-
  “mode”                     guint
-

The operating mode of the virtual device. Allowed values are -NM_SETTING_TUN_MODE_TUN to create a layer 3 device and -NM_SETTING_TUN_MODE_TAP to create an Ethernet-like layer 2 -one.

-

Owner: NMSettingTun

-

Flags: Read / Write

-

Default value: 1

-

Since: 1.2

-
-
-
-

The “multi-queue” property

-
  “multi-queue”              gboolean
-

If the property is set to TRUE, the interface will support -multiple file descriptors (queues) to parallelize packet -sending or receiving. Otherwise, the interface will only -support a single queue.

-

Owner: NMSettingTun

-

Flags: Read / Write

-

Default value: FALSE

-

Since: 1.2

-
-
-
-

The “owner” property

-
  “owner”                    char *
-

The user ID which will own the device. If set to NULL everyone -will be able to use the device.

-

Owner: NMSettingTun

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.2

-
-
-
-

The “pi” property

-
  “pi”                       gboolean
-

If TRUE the interface will prepend a 4 byte header describing the -physical interface to the packets.

-

Owner: NMSettingTun

-

Flags: Read / Write

-

Default value: FALSE

-

Since: 1.2

-
-
-
-

The “vnet-hdr” property

-
  “vnet-hdr”                 gboolean
-

If TRUE the IFF_VNET_HDR the tunnel packets will include a virtio -network header.

-

Owner: NMSettingTun

-

Flags: Read / Write

-

Default value: FALSE

-

Since: 1.2

-
-

Properties

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
GStrvegress-priority-mapRead / Write
NMVlanFlagsflagsRead / Write
guintidRead / Write
GStrvingress-priority-mapRead / Write
-char *parentRead / Write
-
-

Types and Values

@@ -210,10 +171,6 @@ - - - - @@ -234,9 +191,6 @@ ╰── NMVlanPriorityMap GFlags╰── NMVlanFlags - GObject - ╰──NMSetting - ╰── NMSettingVlan
@@ -279,7 +233,7 @@ nm_setting_vlan_get_parent (

Returns

-

the “parent” property of the setting

+

the “parent” property of the setting


@@ -304,7 +258,7 @@ nm_setting_vlan_get_id (

Returns

-

the “id” property of the setting

+

the “id” property of the setting


@@ -329,7 +283,7 @@ nm_setting_vlan_get_flags (

Returns

-

the “flags” property of the setting

+

the “flags” property of the setting


@@ -339,7 +293,7 @@ nm_setting_vlan_get_flags (NMSettingVlan *setting, NMVlanPriorityMap map);

Returns the number of entries in the -“ingress_priority_map” or “egress_priority_map” +“ingress_priority_map” or “egress_priority_map” properties of this setting.

Parameters

@@ -377,8 +331,8 @@ nm_setting_vlan_get_priority (guint32 idx, guint32 *out_from, guint32 *out_to); -

Retrieve one of the entries of the “ingress_priority_map” -or “egress_priority_map” properties of this setting.

+

Retrieve one of the entries of the “ingress_priority_map” +or “egress_priority_map” properties of this setting.

Parameters

NM_SETTING_VLAN_EGRESS_PRIORITY_MAP
 NMSettingVlan
enum NMVlanPriorityMap
@@ -430,8 +384,8 @@ nm_setting_vlan_add_priority (NMVlanPriorityMap map, guint32 from, guint32 to); -

Adds a priority mapping to the “ingress_priority_map” or -“egress_priority_map” properties of the setting. If from +

Adds a priority mapping to the “ingress_priority_map” or +“egress_priority_map” properties of the setting. If from is already in the given priority map, this function will overwrite the existing entry with the new to @@ -494,7 +448,7 @@ nm_setting_vlan_remove_priority (guint32 idx);

Removes the priority map at index idx from the -“ingress_priority_map” or “egress_priority_map” +“ingress_priority_map” or “egress_priority_map” properties.

Parameters

@@ -535,8 +489,8 @@ nm_setting_vlan_remove_priority_by_value guint32 to);

Removes the priority map form :to - from the “ingress_priority_map” -or “egress_priority_map” (according to map + from the “ingress_priority_map” +or “egress_priority_map” (according to map argument) properties.

@@ -587,8 +541,8 @@ nm_setting_vlan_remove_priority_str_by_value NMVlanPriorityMap map, const char *str);

Removes the priority map str - from the “ingress_priority_map” -or “egress_priority_map” (according to map + from the “ingress_priority_map” +or “egress_priority_map” (according to map argument) properties.

@@ -629,8 +583,8 @@ properties.

void
 nm_setting_vlan_clear_priorities (NMSettingVlan *setting,
                                   NMVlanPriorityMap map);
-

Clear all the entries from “ingress_priority_map” or -“egress_priority_map” properties.

+

Clear all the entries from “ingress_priority_map” or +“egress_priority_map” properties.

Parameters

@@ -661,8 +615,8 @@ nm_setting_vlan_clear_priorities (NMSettingVlan *setting, NMVlanPriorityMap map, const char *str); -

Adds a priority map entry into either the “ingress_priority_map” -or the “egress_priority_map” properties. The priority map maps +

Adds a priority map entry into either the “ingress_priority_map” +or the “egress_priority_map” properties. The priority map maps the Linux SKB priorities to 802.1p priorities.

Parameters

@@ -738,12 +692,6 @@ is not a valid mapping.


-

NMSettingVlan

-
typedef struct _NMSettingVlan NMSettingVlan;
-

VLAN Settings

-
-
-

enum NMVlanPriorityMap

A selector for traffic priority maps; these map Linux SKB priorities to 802.1p priorities used in VLANs.

@@ -830,69 +778,6 @@ itself with its switch

#define             NM_VLAN_FLAGS_ALL
-
-

Property Details

-
-

The “egress-priority-map” property

-
  “egress-priority-map”      GStrv
-

For outgoing packets, a list of mappings from Linux SKB priorities to -802.1p priorities. The mapping is given in the format "from:to" where -both "from" and "to" are unsigned integers, ie "7:3".

-

Owner: NMSettingVlan

-

Flags: Read / Write

-
-
-
-

The “flags” property

-
  “flags”                    NMVlanFlags
-

One or more flags which control the behavior and features of the VLAN -interface. Flags include NM_VLAN_FLAG_REORDER_HEADERS (reordering of -output packet headers), NM_VLAN_FLAG_GVRP (use of the GVRP protocol), -and NM_VLAN_FLAG_LOOSE_BINDING (loose binding of the interface to its -master device's operating state). NM_VLAN_FLAG_MVRP (use of the MVRP -protocol).

-

The default value of this property is NM_VLAN_FLAG_REORDER_HEADERS, -but it used to be 0. To preserve backward compatibility, the default-value -in the D-Bus API continues to be 0 and a missing property on D-Bus -is still considered as 0.

-

Owner: NMSettingVlan

-

Flags: Read / Write

-

Default value: NM_VLAN_FLAG_REORDER_HEADERS

-
-
-
-

The “id” property

-
  “id”                       guint
-

The VLAN identifier that the interface created by this connection should -be assigned. The valid range is from 0 to 4094, without the reserved id 4095.

-

Owner: NMSettingVlan

-

Flags: Read / Write

-

Allowed values: <= 4095

-

Default value: 0

-
-
-
-

The “ingress-priority-map” property

-
  “ingress-priority-map”     GStrv
-

For incoming packets, a list of mappings from 802.1p priorities to Linux -SKB priorities. The mapping is given in the format "from:to" where both -"from" and "to" are unsigned integers, ie "7:3".

-

Owner: NMSettingVlan

-

Flags: Read / Write

-
-
-
-

The “parent” property

-
  “parent”                   char *
-

If given, specifies the parent interface name or parent connection UUID -from which this VLAN interface should be created. If this property is -not specified, the connection must contain an NMSettingWired setting -with a “mac-address” property.

-

Owner: NMSettingVlan

-

Flags: Read / Write

-

Default value: NULL

-
-
diff --git a/docs/libnm/html/NMSettingVpn.html b/docs/libnm/html/NMSettingVpn.html index 7891c7a7..b7d49ee4 100644 --- a/docs/libnm/html/NMSettingVpn.html +++ b/docs/libnm/html/NMSettingVpn.html @@ -15,9 +15,7 @@
@@ -183,52 +181,6 @@
-

Properties

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-GHashTable *dataRead / Write
gbooleanpersistentRead / Write
-GHashTable *secretsRead / Write
-char *service-typeRead / Write
guinttimeoutRead / Write
-char *user-nameRead / Write
-
-

Types and Values

@@ -264,21 +216,10 @@ - - - -
#define NM_SETTING_VPN_TIMEOUT
 NMSettingVpn
-

Object Hierarchy

-
    GObject
-    ╰── NMSetting
-        ╰── NMSettingVpn
-
-
-

Description

The NMSettingVpn object is a NMSetting subclass that describes properties necessary for connection to Virtual Private Networks. NetworkManager uses @@ -386,7 +327,7 @@ nm_setting_vpn_get_user_name (

Returns

-

the “user-name” property of the setting

+

the “user-name” property of the setting


@@ -411,7 +352,7 @@ nm_setting_vpn_get_persistent (

Returns

-

the “persistent” property of the setting

+

the “persistent” property of the setting


@@ -881,7 +822,7 @@ nm_setting_vpn_get_timeout (

Returns

-

the “timeout” property of the setting

+

the “timeout” property of the setting

Since: 1.2

@@ -929,78 +870,6 @@ nm_setting_vpn_get_timeout (#define NM_SETTING_VPN_TIMEOUT "timeout" -
-
-

NMSettingVpn

-
typedef struct _NMSettingVpn NMSettingVpn;
-

VPN Settings

-
- -
-

Property Details

-
-

The “data” property

-
  “data”                     GHashTable *
-

Owner: NMSettingVpn

-

Flags: Read / Write

-
-
-
-

The “persistent” property

-
  “persistent”               gboolean
-

If the VPN service supports persistence, and this property is TRUE, -the VPN will attempt to stay connected across link changes and outages, -until explicitly disconnected.

-

Owner: NMSettingVpn

-

Flags: Read / Write

-

Default value: FALSE

-
-
-
-

The “secrets” property

-
  “secrets”                  GHashTable *
-

Owner: NMSettingVpn

-

Flags: Read / Write

-
-
-
-

The “service-type” property

-
  “service-type”             char *
-

D-Bus service name of the VPN plugin that this setting uses to connect to -its network. i.e. org.freedesktop.NetworkManager.vpnc for the vpnc -plugin.

-

Owner: NMSettingVpn

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “timeout” property

-
  “timeout”                  guint
-

Timeout for the VPN service to establish the connection. Some services -may take quite a long time to connect. -Value of 0 means a default timeout, which is 60 seconds (unless overridden -by vpn.timeout in configuration file). Values greater than zero mean -timeout in seconds.

-

Owner: NMSettingVpn

-

Flags: Read / Write

-

Default value: 0

-

Since: 1.2

-
-
-
-

The “user-name” property

-
  “user-name”                char *
-

If the VPN connection requires a user name for authentication, that name -should be provided here. If the connection is available to more than one -user, and the VPN requires each user to supply a different name, then -leave this property empty. If this property is empty, NetworkManager -will automatically supply the username of the user which requested the -VPN connection.

-

Owner: NMSettingVpn

-

Flags: Read / Write

-

Default value: NULL

-
-

Properties

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
guintageingRead / Write
guintdestination-portRead / Write
guintidRead / Write
gbooleanl2-missRead / Write
gbooleanl3-missRead / Write
gbooleanlearningRead / Write
guintlimitRead / Write
-char *localRead / Write
-char *parentRead / Write
gbooleanproxyRead / Write
-char *remoteRead / Write
gbooleanrscRead / Write
guintsource-port-maxRead / Write
guintsource-port-minRead / Write
guinttosRead / Write
guintttlRead / Write
-
-

Types and Values

@@ -348,21 +251,10 @@ - - - -
#define NM_SETTING_VXLAN_L3_MISS
 NMSettingVxlan
-

Object Hierarchy

-
    GObject
-    ╰── NMSetting
-        ╰── NMSettingVxlan
-
-
-

Description

The NMSettingVxlan object is a NMSetting subclass that describes properties necessary for connection to VXLAN interfaces.

@@ -403,7 +295,7 @@ nm_setting_vxlan_get_parent (

Returns

-

the “parent” property of the setting

+

the “parent” property of the setting

Since: 1.2

@@ -429,7 +321,7 @@ nm_setting_vxlan_get_id (

Returns

-

the “id” property of the setting

+

the “id” property of the setting

Since: 1.2

@@ -455,7 +347,7 @@ nm_setting_vxlan_get_local (

Returns

-

the “local” property of the setting

+

the “local” property of the setting

Since: 1.2

@@ -481,7 +373,7 @@ nm_setting_vxlan_get_remote (

Returns

-

the “remote” property of the setting

+

the “remote” property of the setting

Since: 1.2

@@ -507,7 +399,7 @@ nm_setting_vxlan_get_source_port_min (

Returns

-

the “source-port-min” property of the setting

+

the “source-port-min” property of the setting

Since: 1.2

@@ -533,7 +425,7 @@ nm_setting_vxlan_get_source_port_max (

Returns

-

the “source-port-max” property of the setting

+

the “source-port-max” property of the setting

Since: 1.2

@@ -559,7 +451,7 @@ nm_setting_vxlan_get_destination_port (

Returns

-

the “destination-port” property of the setting

+

the “destination-port” property of the setting

Since: 1.2

@@ -585,7 +477,7 @@ nm_setting_vxlan_get_tos (

Returns

-

the “tos” property of the setting

+

the “tos” property of the setting

Since: 1.2

@@ -611,7 +503,7 @@ nm_setting_vxlan_get_ttl (

Returns

-

the “ttl” property of the setting

+

the “ttl” property of the setting

Since: 1.2

@@ -637,7 +529,7 @@ nm_setting_vxlan_get_ageing (

Returns

-

the “ageing” property of the setting

+

the “ageing” property of the setting

Since: 1.2

@@ -663,7 +555,7 @@ nm_setting_vxlan_get_limit (

Returns

-

the “limit” property of the setting

+

the “limit” property of the setting

Since: 1.2

@@ -689,7 +581,7 @@ nm_setting_vxlan_get_proxy (

Returns

-

the “proxy” property of the setting

+

the “proxy” property of the setting

Since: 1.2

@@ -715,7 +607,7 @@ nm_setting_vxlan_get_learning (

Returns

-

the “learning” property of the setting

+

the “learning” property of the setting

Since: 1.2

@@ -741,7 +633,7 @@ nm_setting_vxlan_get_rsc (

Returns

-

the “rsc” property of the setting

+

the “rsc” property of the setting

Since: 1.2

@@ -767,7 +659,7 @@ nm_setting_vxlan_get_l2_miss (

Returns

-

the “l2_miss” property of the setting

+

the “l2_miss” property of the setting

Since: 1.2

@@ -793,7 +685,7 @@ nm_setting_vxlan_get_l3_miss (

Returns

-

the “l3_miss” property of the setting

+

the “l3_miss” property of the setting

Since: 1.2

@@ -901,188 +793,6 @@ nm_setting_vxlan_get_l3_miss (#define NM_SETTING_VXLAN_L3_MISS "l3-miss" -
-
-

NMSettingVxlan

-
typedef struct _NMSettingVxlan NMSettingVxlan;
-

VXLAN Settings

-
- -
-

Property Details

-
-

The “ageing” property

-
  “ageing”                   guint
-

Specifies the lifetime in seconds of FDB entries learnt by the kernel.

-

Owner: NMSettingVxlan

-

Flags: Read / Write

-

Default value: 300

-

Since: 1.2

-
-
-
-

The “destination-port” property

-
  “destination-port”         guint
-

Specifies the UDP destination port to communicate to the remote VXLAN -tunnel endpoint.

-

Owner: NMSettingVxlan

-

Flags: Read / Write

-

Allowed values: <= 65535

-

Default value: 8472

-

Since: 1.2

-
-
-
-

The “id” property

-
  “id”                       guint
-

Specifies the VXLAN Network Identifier (or VXLAN Segment Identifier) to -use.

-

Owner: NMSettingVxlan

-

Flags: Read / Write

-

Allowed values: <= 16777215

-

Default value: 0

-

Since: 1.2

-
-
-
-

The “l2-miss” property

-
  “l2-miss”                  gboolean
-

Specifies whether netlink LL ADDR miss notifications are generated.

-

Owner: NMSettingVxlan

-

Flags: Read / Write

-

Default value: FALSE

-

Since: 1.2

-
-
-
-

The “l3-miss” property

-
  “l3-miss”                  gboolean
-

Specifies whether netlink IP ADDR miss notifications are generated.

-

Owner: NMSettingVxlan

-

Flags: Read / Write

-

Default value: FALSE

-

Since: 1.2

-
-
-
-

The “learning” property

-
  “learning”                 gboolean
-

Specifies whether unknown source link layer addresses and IP addresses -are entered into the VXLAN device forwarding database.

-

Owner: NMSettingVxlan

-

Flags: Read / Write

-

Default value: TRUE

-

Since: 1.2

-
-
-
-

The “limit” property

-
  “limit”                    guint
-

Specifies the maximum number of FDB entries. A value of zero means that -the kernel will store unlimited entries.

-

Owner: NMSettingVxlan

-

Flags: Read / Write

-

Default value: 0

-

Since: 1.2

-
-
-
-

The “local” property

-
  “local”                    char *
-

If given, specifies the source IP address to use in outgoing packets.

-

Owner: NMSettingVxlan

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.2

-
-
-
-

The “parent” property

-
  “parent”                   char *
-

If given, specifies the parent interface name or parent connection UUID.

-

Owner: NMSettingVxlan

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.2

-
-
-
-

The “proxy” property

-
  “proxy”                    gboolean
-

Specifies whether ARP proxy is turned on.

-

Owner: NMSettingVxlan

-

Flags: Read / Write

-

Default value: FALSE

-

Since: 1.2

-
-
-
-

The “remote” property

-
  “remote”                   char *
-

Specifies the unicast destination IP address to use in outgoing packets -when the destination link layer address is not known in the VXLAN device -forwarding database, or the multicast IP address to join.

-

Owner: NMSettingVxlan

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.2

-
-
-
-

The “rsc” property

-
  “rsc”                      gboolean
-

Specifies whether route short circuit is turned on.

-

Owner: NMSettingVxlan

-

Flags: Read / Write

-

Default value: FALSE

-

Since: 1.2

-
-
-
-

The “source-port-max” property

-
  “source-port-max”          guint
-

Specifies the maximum UDP source port to communicate to the remote VXLAN -tunnel endpoint.

-

Owner: NMSettingVxlan

-

Flags: Read / Write

-

Allowed values: <= 65535

-

Default value: 0

-

Since: 1.2

-
-
-
-

The “source-port-min” property

-
  “source-port-min”          guint
-

Specifies the minimum UDP source port to communicate to the remote VXLAN -tunnel endpoint.

-

Owner: NMSettingVxlan

-

Flags: Read / Write

-

Allowed values: <= 65535

-

Default value: 0

-

Since: 1.2

-
-
-
-

The “tos” property

-
  “tos”                      guint
-

Specifies the TOS value to use in outgoing packets.

-

Owner: NMSettingVxlan

-

Flags: Read / Write

-

Allowed values: <= 255

-

Default value: 0

-

Since: 1.2

-
-
-
-

The “ttl” property

-
  “ttl”                      guint
-

Specifies the time-to-live value to use in outgoing packets.

-

Owner: NMSettingVxlan

-

Flags: Read / Write

-

Allowed values: <= 255

-

Default value: 0

-

Since: 1.2

-
-

Properties

-
----- - - - - - - - - - - - - -
-char *mac-addressRead / Write
-char *network-nameRead / Write
-
-

Types and Values

@@ -110,21 +84,10 @@ - - - -
#define NM_SETTING_WIMAX_MAC_ADDRESS
 NMSettingWimax
-

Object Hierarchy

-
    GObject
-    ╰── NMSetting
-        ╰── NMSettingWimax
-
-
-

Description

The NMSettingWimax object is a NMSetting subclass that describes properties necessary for connection to 802.16e Mobile WiMAX networks.

@@ -230,43 +193,6 @@ to.

#define NM_SETTING_WIMAX_MAC_ADDRESS  "mac-address"
 
-
-
-

NMSettingWimax

-
typedef struct _NMSettingWimax NMSettingWimax;
-

WiMax Settings

-
- -
-

Property Details

-
-

The “mac-address” property

-
  “mac-address”              char *
-

If specified, this connection will only apply to the WiMAX device whose -MAC address matches. This property does not change the MAC address of the -device (known as MAC spoofing).

-
-

NMSettingWimax:mac-address has been deprecated since version 1.2 and should not be used in newly-written code.

-

WiMAX is no longer supported.

-
-

Owner: NMSettingWimax

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “network-name” property

-
  “network-name”             char *
-

Network Service Provider (NSP) name of the WiMAX network this connection -should use.

-
-

NMSettingWimax:network-name has been deprecated since version 1.2 and should not be used in newly-written code.

-

WiMAX is no longer supported.

-
-

Owner: NMSettingWimax

-

Flags: Read / Write

-

Default value: NULL

-
-

Properties

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
gbooleanauto-negotiateRead / Write
-char *cloned-mac-addressRead / Write
-char *duplexRead / Write
-char *generate-mac-address-maskRead / Write
-char *mac-addressRead / Write
GStrvmac-address-blacklistRead / Write
guintmtuRead / Write
-char *portRead / Write
-char *s390-nettypeRead / Write
-GHashTable *s390-optionsRead / Write
GStrvs390-subchannelsRead / Write
guintspeedRead / Write
guintwake-on-lanRead / Write
-char *wake-on-lan-passwordRead / Write
-
-

Types and Values

@@ -413,9 +330,6 @@

Object Hierarchy

    GFlags
     ╰── NMSettingWiredWakeOnLan
-    GObject
-    ╰── NMSetting
-        ╰── NMSettingWired
 
@@ -458,7 +372,7 @@ nm_setting_wired_get_port (

Returns

-

the “port” property of the setting

+

the “port” property of the setting


@@ -483,7 +397,7 @@ nm_setting_wired_get_speed (

Returns

-

the “speed” property of the setting

+

the “speed” property of the setting


@@ -508,7 +422,7 @@ nm_setting_wired_get_duplex (

Returns

-

the “duplex” property of the setting

+

the “duplex” property of the setting


@@ -533,7 +447,7 @@ nm_setting_wired_get_auto_negotiate (

Returns

-

the “auto-negotiate” property of the setting

+

the “auto-negotiate” property of the setting


@@ -558,7 +472,7 @@ nm_setting_wired_get_mac_address (

Returns

-

the “mac-address” property of the setting

+

the “mac-address” property of the setting


@@ -584,11 +498,38 @@ nm_setting_wired_get_cloned_mac_address

Returns

-

the “cloned-mac-address” property of the setting

+

the “cloned-mac-address” property of the setting


+

nm_setting_wired_get_accept_all_mac_addresses ()

+
NMTernary
+nm_setting_wired_get_accept_all_mac_addresses
+                               (NMSettingWired *setting);
+
+

Parameters

+
+++++ + + + + + +

setting

the NMSettingWired

 
+
+
+

Returns

+

the “accept-all-mac-addresses” property of the setting

+
+

Since: 1.32

+
+
+

nm_setting_wired_get_generate_mac_address_mask ()

const char *
 nm_setting_wired_get_generate_mac_address_mask
@@ -610,7 +551,7 @@ nm_setting_wired_get_generate_mac_address_mask
 

Returns

-

the “generate-mac-address-mask” property of the setting

+

the “generate-mac-address-mask” property of the setting

Since: 1.4

@@ -637,7 +578,7 @@ nm_setting_wired_get_mac_address_blacklist

Returns

-

the “mac-address-blacklist” property of the setting

+

the “mac-address-blacklist” property of the setting


@@ -709,7 +650,7 @@ at index idx nm_setting_wired_add_mac_blacklist_item (NMSettingWired *setting, const char *mac); -

Adds a new MAC address to the “mac-address-blacklist” property.

+

Adds a new MAC address to the “mac-address-blacklist” property.

Parameters

@@ -852,7 +793,7 @@ nm_setting_wired_get_mtu (

Returns

-

the “mtu” property of the setting

+

the “mtu” property of the setting


@@ -977,14 +918,14 @@ such as during option iteration.

- + - +

out_key

on return, the key name of the s390 specific option; this value is owned by the setting and should not be modified.

[out][transfer none][allow-none][out][transfer none]

out_value

on return, the value of the key of the s390 specific option; this value is owned by the setting and should not be modified.

[out][transfer none][allow-none][out][transfer none]
@@ -1041,10 +982,10 @@ setting; the value is owned by the setting and must not be modified

nm_setting_wired_add_s390_option (NMSettingWired *setting, const char *key, const char *value); -

Add an option to the table. The option is compared to an internal list -of allowed options. Key names may contain only alphanumeric characters -(ie [a-zA-Z0-9]). Adding a new key replaces any existing key/value pair that -may already exist.

+

Add an option to the table. If the key already exists, the value gets +replaced.

+

Before 1.32, the function would assert that the key is valid. Since then, +an invalid key gets silently added but renders the profile as invalid.

Parameters

@@ -1074,8 +1015,7 @@ may already exist.

Returns

-

TRUE if the option was valid and was added to the internal option -list, FALSE if it was not.

+

since 1.32 this always returns TRUE.


@@ -1213,7 +1153,7 @@ nm_setting_wired_get_wake_on_lan_password

enum NMSettingWiredWakeOnLan

-

Options for “wake-on-lan”. Note that not all options +

Options for “wake-on-lan”. Note that not all options are supported by all devices.

Members

@@ -1397,227 +1337,9 @@ incompatible with other flags


-

NMSettingWired

-
typedef struct _NMSettingWired NMSettingWired;
-

Wired Ethernet Settings

-
-
-
-

Property Details

-
-

The “auto-negotiate” property

-
  “auto-negotiate”           gboolean
-

When TRUE, enforce auto-negotiation of speed and duplex mode. -If "speed" and "duplex" properties are both specified, only that -single mode will be advertised and accepted during the link -auto-negotiation process: this works only for BASE-T 802.3 specifications -and is useful for enforcing gigabits modes, as in these cases link -negotiation is mandatory. -When FALSE, "speed" and "duplex" properties should be both set or -link configuration will be skipped.

-

Owner: NMSettingWired

-

Flags: Read / Write

-

Default value: FALSE

-
-
-
-

The “cloned-mac-address” property

-
  “cloned-mac-address”       char *
-

If specified, request that the device use this MAC address instead. -This is known as MAC cloning or spoofing.

-

Beside explicitly specifying a MAC address, the special values "preserve", "permanent", -"random" and "stable" are supported. -"preserve" means not to touch the MAC address on activation. -"permanent" means to use the permanent hardware address if the device -has one (otherwise this is treated as "preserve"). -"random" creates a random MAC address on each connect. -"stable" creates a hashed MAC address based on connection.stable-id and a -machine dependent key.

-

If unspecified, the value can be overwritten via global defaults, see manual -of NetworkManager.conf. If still unspecified, it defaults to "preserve" -(older versions of NetworkManager may use a different default value).

-

On D-Bus, this field is expressed as "assigned-mac-address" or the deprecated -"cloned-mac-address".

-

Owner: NMSettingWired

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “duplex” property

-
  “duplex”                   char *
-

When a value is set, either "half" or "full", configures the device -to use the specified duplex mode. If "auto-negotiate" is "yes" the -specified duplex mode will be the only one advertised during link -negotiation: this works only for BASE-T 802.3 specifications and is -useful for enforcing gigabits modes, as in these cases link negotiation -is mandatory. -If the value is unset (the default), the link configuration will be -either skipped (if "auto-negotiate" is "no", the default) or will -be auto-negotiated (if "auto-negotiate" is "yes") and the local device -will advertise all the supported duplex modes. -Must be set together with the "speed" property if specified. -Before specifying a duplex mode be sure your device supports it.

-

Owner: NMSettingWired

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “generate-mac-address-mask” property

-
  “generate-mac-address-mask” char *
-

With “cloned-mac-address” setting "random" or "stable", -by default all bits of the MAC address are scrambled and a locally-administered, -unicast MAC address is created. This property allows to specify that certain bits -are fixed. Note that the least significant bit of the first MAC address will -always be unset to create a unicast MAC address.

-

If the property is NULL, it is eligible to be overwritten by a default -connection setting. If the value is still NULL or an empty string, the -default is to create a locally-administered, unicast MAC address.

-

If the value contains one MAC address, this address is used as mask. The set -bits of the mask are to be filled with the current MAC address of the device, -while the unset bits are subject to randomization. -Setting "FE:FF:FF:00:00:00" means to preserve the OUI of the current MAC address -and only randomize the lower 3 bytes using the "random" or "stable" algorithm.

-

If the value contains one additional MAC address after the mask, -this address is used instead of the current MAC address to fill the bits -that shall not be randomized. For example, a value of -"FE:FF:FF:00:00:00 68:F7:28:00:00:00" will set the OUI of the MAC address -to 68:F7:28, while the lower bits are randomized. A value of -"02:00:00:00:00:00 00:00:00:00:00:00" will create a fully scrambled -globally-administered, burned-in MAC address.

-

If the value contains more than one additional MAC addresses, one of -them is chosen randomly. For example, "02:00:00:00:00:00 00:00:00:00:00:00 02:00:00:00:00:00" -will create a fully scrambled MAC address, randomly locally or globally -administered.

-

Owner: NMSettingWired

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “mac-address” property

-
  “mac-address”              char *
-

If specified, this connection will only apply to the Ethernet device -whose permanent MAC address matches. This property does not change the -MAC address of the device (i.e. MAC spoofing).

-

Owner: NMSettingWired

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “mac-address-blacklist” property

-
  “mac-address-blacklist”    GStrv
-

If specified, this connection will never apply to the Ethernet device -whose permanent MAC address matches an address in the list. Each MAC -address is in the standard hex-digits-and-colons notation -(00:11:22:33:44:55).

-

Owner: NMSettingWired

-

Flags: Read / Write

-
-
-
-

The “mtu” property

-
  “mtu”                      guint
-

If non-zero, only transmit packets of the specified size or smaller, -breaking larger packets up into multiple Ethernet frames.

-

Owner: NMSettingWired

-

Flags: Read / Write

-

Default value: 0

-
-
-
-

The “port” property

-
  “port”                     char *
-

Specific port type to use if the device supports multiple -attachment methods. One of "tp" (Twisted Pair), "aui" (Attachment Unit -Interface), "bnc" (Thin Ethernet) or "mii" (Media Independent Interface). -If the device supports only one port type, this setting is ignored.

-

Owner: NMSettingWired

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “s390-nettype” property

-
  “s390-nettype”             char *
-

s390 network device type; one of "qeth", "lcs", or "ctc", representing -the different types of virtual network devices available on s390 systems.

-

Owner: NMSettingWired

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “s390-options” property

-
  “s390-options”             GHashTable *
-

Owner: NMSettingWired

-

Flags: Read / Write

-
-
-
-

The “s390-subchannels” property

-
  “s390-subchannels”         GStrv
-

Identifies specific subchannels that this network device uses for -communication with z/VM or s390 host. Like the -“mac-address” property for non-z/VM devices, this property -can be used to ensure this connection only applies to the network device -that uses these subchannels. The list should contain exactly 3 strings, -and each string may only be composed of hexadecimal characters and the -period (.) character.

-

Owner: NMSettingWired

-

Flags: Read / Write

-
-
-
-

The “speed” property

-
  “speed”                    guint
-

When a value greater than 0 is set, configures the device to use -the specified speed. If "auto-negotiate" is "yes" the specified -speed will be the only one advertised during link negotiation: -this works only for BASE-T 802.3 specifications and is useful for -enforcing gigabit speeds, as in this case link negotiation is -mandatory. -If the value is unset (0, the default), the link configuration will be -either skipped (if "auto-negotiate" is "no", the default) or will -be auto-negotiated (if "auto-negotiate" is "yes") and the local device -will advertise all the supported speeds. -In Mbit/s, ie 100 == 100Mbit/s. -Must be set together with the "duplex" property when non-zero. -Before specifying a speed value be sure your device supports it.

-

Owner: NMSettingWired

-

Flags: Read / Write

-

Default value: 0

-
-
-
-

The “wake-on-lan” property

-
  “wake-on-lan”              guint
-

The NMSettingWiredWakeOnLan options to enable. Not all devices support all options. -May be any combination of NM_SETTING_WIRED_WAKE_ON_LAN_PHY, -NM_SETTING_WIRED_WAKE_ON_LAN_UNICAST, NM_SETTING_WIRED_WAKE_ON_LAN_MULTICAST, -NM_SETTING_WIRED_WAKE_ON_LAN_BROADCAST, NM_SETTING_WIRED_WAKE_ON_LAN_ARP, -NM_SETTING_WIRED_WAKE_ON_LAN_MAGIC or the special values -NM_SETTING_WIRED_WAKE_ON_LAN_DEFAULT (to use global settings) and -NM_SETTING_WIRED_WAKE_ON_LAN_IGNORE (to disable management of Wake-on-LAN in -NetworkManager).

-

Owner: NMSettingWired

-

Flags: Read / Write

-

Default value: 1

-

Since: 1.2

-
-
-
-

The “wake-on-lan-password” property

-
  “wake-on-lan-password”     char *
-

If specified, the password used with magic-packet-based -Wake-on-LAN, represented as an Ethernet MAC address. If NULL, -no password will be required.

-

Owner: NMSettingWired

-

Flags: Read / Write

-

Default value: NULL

-

Since: 1.2

+

NM_SETTING_WIRED_ACCEPT_ALL_MAC_ADDRESSES

+
#define NM_SETTING_WIRED_ACCEPT_ALL_MAC_ADDRESSES  "accept-all-mac-addresses"
+
diff --git a/docs/libnm/html/NMSettingWireless.html b/docs/libnm/html/NMSettingWireless.html index 25462c13..b97a0b50 100644 --- a/docs/libnm/html/NMSettingWireless.html +++ b/docs/libnm/html/NMSettingWireless.html @@ -16,8 +16,7 @@ @@ -260,115 +259,6 @@
Top  |  Description  |  - Object Hierarchy  |  - Properties + Object Hierarchy Home Up
-

Properties

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NMTernaryap-isolationRead / Write
-char *bandRead / Write
-char *bssidRead / Write
guintchannelRead / Write
-char *cloned-mac-addressRead / Write
-char *generate-mac-address-maskRead / Write
gbooleanhiddenRead / Write
-char *mac-addressRead / Write
GStrvmac-address-blacklistRead / Write
guintmac-address-randomizationRead / Write
-char *modeRead / Write
guintmtuRead / Write
guintpowersaveRead / Write
guintrateRead / Write
GStrvseen-bssidsRead / Write
-GBytes *ssidRead / Write
guinttx-powerRead / Write
guintwake-on-wlanRead / Write
-
-

Types and Values

@@ -476,10 +366,6 @@ - - - -
enum NMSettingWirelessPowersave
 NMSettingWireless
@@ -489,9 +375,6 @@ ╰── NMSettingWirelessPowersave GFlags ╰── NMSettingWirelessWakeOnWLan - GObject - ╰── NMSetting - ╰── NMSettingWireless
@@ -534,7 +417,7 @@ nm_setting_wireless_get_ssid (

Returns

-

the “ssid” property of the setting.

+

the “ssid” property of the setting.

[transfer none]

@@ -560,7 +443,7 @@ nm_setting_wireless_get_mode (

Returns

-

the “mode” property of the setting

+

the “mode” property of the setting


@@ -585,7 +468,7 @@ nm_setting_wireless_get_band (

Returns

-

the “band” property of the setting

+

the “band” property of the setting


@@ -610,7 +493,7 @@ nm_setting_wireless_get_channel (

Returns

-

the “channel” property of the setting

+

the “channel” property of the setting


@@ -635,7 +518,7 @@ nm_setting_wireless_get_bssid (

Returns

-

the “bssid” property of the setting

+

the “bssid” property of the setting


@@ -660,7 +543,7 @@ nm_setting_wireless_get_rate (

Returns

-

the “rate” property of the setting

+

the “rate” property of the setting


@@ -685,7 +568,7 @@ nm_setting_wireless_get_tx_power (

Returns

-

the “tx-power” property of the setting

+

the “tx-power” property of the setting


@@ -710,7 +593,7 @@ nm_setting_wireless_get_mac_address (

Returns

-

the “mac-address” property of the setting

+

the “mac-address” property of the setting


@@ -736,7 +619,7 @@ nm_setting_wireless_get_cloned_mac_address

Returns

-

the “cloned-mac-address” property of the setting

+

the “cloned-mac-address” property of the setting


@@ -762,7 +645,7 @@ nm_setting_wireless_get_generate_mac_address_mask

Returns

-

the “generate-mac-address-mask” property of the setting

+

the “generate-mac-address-mask” property of the setting

Since: 1.4

@@ -789,7 +672,7 @@ nm_setting_wireless_get_mac_address_blacklist

Returns

-

the “mac-address-blacklist” property of the setting

+

the “mac-address-blacklist” property of the setting


@@ -861,7 +744,7 @@ at index idx nm_setting_wireless_add_mac_blacklist_item (NMSettingWireless *setting, const char *mac); -

Adds a new MAC address to the “mac-address-blacklist” property.

+

Adds a new MAC address to the “mac-address-blacklist” property.

Parameters

@@ -1004,7 +887,7 @@ nm_setting_wireless_get_mtu (

Returns

-

the “mtu” property of the setting

+

the “mtu” property of the setting


@@ -1029,7 +912,7 @@ nm_setting_wireless_get_hidden (

Returns

-

the “hidden” property of the setting

+

the “hidden” property of the setting


@@ -1054,7 +937,7 @@ nm_setting_wireless_get_powersave (

Returns

-

the “powersave” property of the setting

+

the “powersave” property of the setting

Since: 1.2

@@ -1081,7 +964,7 @@ nm_setting_wireless_get_mac_address_randomization

Returns

-

the “mac-address-randomization” property of the +

the “mac-address-randomization” property of the setting

Since: 1.2

@@ -1300,7 +1183,7 @@ nm_setting_wireless_get_ap_isolation (

Returns

-

the “ap-isolation” property of the setting

+

the “ap-isolation” property of the setting

Since: 1.28

@@ -1315,7 +1198,7 @@ nm_setting_wireless_get_ap_isolation (

enum NMSettingWirelessWakeOnWLan

-

Options for “wake-on-wlan”. Note that not all options +

Options for “wake-on-wlan”. Note that not all options are supported by all devices.

Members

@@ -1619,285 +1502,6 @@ for this connection.

-
-
-

NMSettingWireless

-
typedef struct _NMSettingWireless NMSettingWireless;
-

Wi-Fi Settings

-
- -
-

Property Details

-
-

The “ap-isolation” property

-
  “ap-isolation”             NMTernary
-

Configures AP isolation, which prevents communication between -wireless devices connected to this AP. This property can be set -to a value different from NM_TERNARY_DEFAULT only when the -interface is configured in AP mode.

-

If set to NM_TERNARY_TRUE, devices are not able to communicate -with each other. This increases security because it protects -devices against attacks from other clients in the network. At -the same time, it prevents devices to access resources on the -same wireless networks as file shares, printers, etc.

-

If set to NM_TERNARY_FALSE, devices can talk to each other.

-

When set to NM_TERNARY_DEFAULT, the global default is used; in -case the global default is unspecified it is assumed to be -NM_TERNARY_FALSE.

-

Owner: NMSettingWireless

-

Flags: Read / Write

-

Default value: NM_TERNARY_DEFAULT

-

Since: 1.28

-
-
-
-

The “band” property

-
  “band”                     char *
-

802.11 frequency band of the network. One of "a" for 5GHz 802.11a or -"bg" for 2.4GHz 802.11. This will lock associations to the Wi-Fi network -to the specific band, i.e. if "a" is specified, the device will not -associate with the same network in the 2.4GHz band even if the network's -settings are compatible. This setting depends on specific driver -capability and may not work with all drivers.

-

Owner: NMSettingWireless

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “bssid” property

-
  “bssid”                    char *
-

If specified, directs the device to only associate with the given access -point. This capability is highly driver dependent and not supported by -all devices. Note: this property does not control the BSSID used when -creating an Ad-Hoc network and is unlikely to in the future.

-

Owner: NMSettingWireless

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “channel” property

-
  “channel”                  guint
-

Wireless channel to use for the Wi-Fi connection. The device will only -join (or create for Ad-Hoc networks) a Wi-Fi network on the specified -channel. Because channel numbers overlap between bands, this property -also requires the "band" property to be set.

-

Owner: NMSettingWireless

-

Flags: Read / Write

-

Default value: 0

-
-
-
-

The “cloned-mac-address” property

-
  “cloned-mac-address”       char *
-

If specified, request that the device use this MAC address instead. -This is known as MAC cloning or spoofing.

-

Beside explicitly specifying a MAC address, the special values "preserve", "permanent", -"random" and "stable" are supported. -"preserve" means not to touch the MAC address on activation. -"permanent" means to use the permanent hardware address of the device. -"random" creates a random MAC address on each connect. -"stable" creates a hashed MAC address based on connection.stable-id and a -machine dependent key.

-

If unspecified, the value can be overwritten via global defaults, see manual -of NetworkManager.conf. If still unspecified, it defaults to "preserve" -(older versions of NetworkManager may use a different default value).

-

On D-Bus, this field is expressed as "assigned-mac-address" or the deprecated -"cloned-mac-address".

-

Owner: NMSettingWireless

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “generate-mac-address-mask” property

-
  “generate-mac-address-mask” char *
-

With “cloned-mac-address” setting "random" or "stable", -by default all bits of the MAC address are scrambled and a locally-administered, -unicast MAC address is created. This property allows to specify that certain bits -are fixed. Note that the least significant bit of the first MAC address will -always be unset to create a unicast MAC address.

-

If the property is NULL, it is eligible to be overwritten by a default -connection setting. If the value is still NULL or an empty string, the -default is to create a locally-administered, unicast MAC address.

-

If the value contains one MAC address, this address is used as mask. The set -bits of the mask are to be filled with the current MAC address of the device, -while the unset bits are subject to randomization. -Setting "FE:FF:FF:00:00:00" means to preserve the OUI of the current MAC address -and only randomize the lower 3 bytes using the "random" or "stable" algorithm.

-

If the value contains one additional MAC address after the mask, -this address is used instead of the current MAC address to fill the bits -that shall not be randomized. For example, a value of -"FE:FF:FF:00:00:00 68:F7:28:00:00:00" will set the OUI of the MAC address -to 68:F7:28, while the lower bits are randomized. A value of -"02:00:00:00:00:00 00:00:00:00:00:00" will create a fully scrambled -globally-administered, burned-in MAC address.

-

If the value contains more than one additional MAC addresses, one of -them is chosen randomly. For example, "02:00:00:00:00:00 00:00:00:00:00:00 02:00:00:00:00:00" -will create a fully scrambled MAC address, randomly locally or globally -administered.

-

Owner: NMSettingWireless

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “hidden” property

-
  “hidden”                   gboolean
-

If TRUE, indicates that the network is a non-broadcasting network that -hides its SSID. This works both in infrastructure and AP mode.

-

In infrastructure mode, various workarounds are used for a more reliable -discovery of hidden networks, such as probe-scanning the SSID. However, -these workarounds expose inherent insecurities with hidden SSID networks, -and thus hidden SSID networks should be used with caution.

-

In AP mode, the created network does not broadcast its SSID.

-

Note that marking the network as hidden may be a privacy issue for you -(in infrastructure mode) or client stations (in AP mode), as the explicit -probe-scans are distinctly recognizable on the air.

-

Owner: NMSettingWireless

-

Flags: Read / Write

-

Default value: FALSE

-
-
-
-

The “mac-address” property

-
  “mac-address”              char *
-

If specified, this connection will only apply to the Wi-Fi device whose -permanent MAC address matches. This property does not change the MAC -address of the device (i.e. MAC spoofing).

-

Owner: NMSettingWireless

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “mac-address-blacklist” property

-
  “mac-address-blacklist”    GStrv
-

A list of permanent MAC addresses of Wi-Fi devices to which this -connection should never apply. Each MAC address should be given in the -standard hex-digits-and-colons notation (eg "00:11:22:33:44:55").

-

Owner: NMSettingWireless

-

Flags: Read / Write

-
-
-
-

The “mac-address-randomization” property

-
  “mac-address-randomization” guint
-

One of NM_SETTING_MAC_RANDOMIZATION_DEFAULT (never randomize unless -the user has set a global default to randomize and the supplicant -supports randomization), NM_SETTING_MAC_RANDOMIZATION_NEVER (never -randomize the MAC address), or NM_SETTING_MAC_RANDOMIZATION_ALWAYS -(always randomize the MAC address). This property is deprecated for -'cloned-mac-address'.

-
-

NMSettingWireless:mac-address-randomization has been deprecated since version 1.4 and should not be used in newly-written code.

-

Deprecated by NMSettingWireless:cloned-mac-address property.

-
-

Owner: NMSettingWireless

-

Flags: Read / Write

-

Default value: 0

-

Since: 1.2

-
-
-
-

The “mode” property

-
  “mode”                     char *
-

Wi-Fi network mode; one of "infrastructure", "mesh", "adhoc" or "ap". If blank, -infrastructure is assumed.

-

Owner: NMSettingWireless

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “mtu” property

-
  “mtu”                      guint
-

If non-zero, only transmit packets of the specified size or smaller, -breaking larger packets up into multiple Ethernet frames.

-

Owner: NMSettingWireless

-

Flags: Read / Write

-

Default value: 0

-
-
-
-

The “powersave” property

-
  “powersave”                guint
-

One of NM_SETTING_WIRELESS_POWERSAVE_DISABLE (disable Wi-Fi power -saving), NM_SETTING_WIRELESS_POWERSAVE_ENABLE (enable Wi-Fi power -saving), NM_SETTING_WIRELESS_POWERSAVE_IGNORE (don't touch currently -configure setting) or NM_SETTING_WIRELESS_POWERSAVE_DEFAULT (use the -globally configured value). All other values are reserved.

-

Owner: NMSettingWireless

-

Flags: Read / Write

-

Default value: 0

-

Since: 1.2

-
-
-
-

The “rate” property

-
  “rate”                     guint
-

If non-zero, directs the device to only use the specified bitrate for -communication with the access point. Units are in Kb/s, ie 5500 = 5.5 -Mbit/s. This property is highly driver dependent and not all devices -support setting a static bitrate.

-

Owner: NMSettingWireless

-

Flags: Read / Write

-

Default value: 0

-
-
-
-

The “seen-bssids” property

-
  “seen-bssids”              GStrv
-

A list of BSSIDs (each BSSID formatted as a MAC address like -"00:11:22:33:44:55") that have been detected as part of the Wi-Fi -network. NetworkManager internally tracks previously seen BSSIDs. The -property is only meant for reading and reflects the BSSID list of -NetworkManager. The changes you make to this property will not be -preserved.

-

Owner: NMSettingWireless

-

Flags: Read / Write

-
-
-
-

The “ssid” property

-
  “ssid”                     GBytes *
-

SSID of the Wi-Fi network. Must be specified.

-

Owner: NMSettingWireless

-

Flags: Read / Write

-
-
-
-

The “tx-power” property

-
  “tx-power”                 guint
-

If non-zero, directs the device to use the specified transmit power. -Units are dBm. This property is highly driver dependent and not all -devices support setting a static transmit power.

-

Owner: NMSettingWireless

-

Flags: Read / Write

-

Default value: 0

-
-
-
-

The “wake-on-wlan” property

-
  “wake-on-wlan”             guint
-

The NMSettingWirelessWakeOnWLan options to enable. Not all devices support all options. -May be any combination of NM_SETTING_WIRELESS_WAKE_ON_WLAN_ANY, -NM_SETTING_WIRELESS_WAKE_ON_WLAN_DISCONNECT, -NM_SETTING_WIRELESS_WAKE_ON_WLAN_MAGIC, -NM_SETTING_WIRELESS_WAKE_ON_WLAN_GTK_REKEY_FAILURE, -NM_SETTING_WIRELESS_WAKE_ON_WLAN_EAP_IDENTITY_REQUEST, -NM_SETTING_WIRELESS_WAKE_ON_WLAN_4WAY_HANDSHAKE, -NM_SETTING_WIRELESS_WAKE_ON_WLAN_RFKILL_RELEASE, -NM_SETTING_WIRELESS_WAKE_ON_WLAN_TCP or the special values -NM_SETTING_WIRELESS_WAKE_ON_WLAN_DEFAULT (to use global settings) and -NM_SETTING_WIRELESS_WAKE_ON_WLAN_IGNORE (to disable management of Wake-on-LAN in -NetworkManager).

-

Owner: NMSettingWireless

-

Flags: Read / Write

-

Default value: 1

-

Since: 1.12

-
-

Properties

-
----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-char *auth-algRead / Write
intfilsRead / Write
GStrvgroupRead / Write
-char *key-mgmtRead / Write
-char *leap-passwordRead / Write
NMSettingSecretFlagsleap-password-flagsRead / Write
-char *leap-usernameRead / Write
GStrvpairwiseRead / Write
intpmfRead / Write
GStrvprotoRead / Write
-char *pskRead / Write
NMSettingSecretFlagspsk-flagsRead / Write
NMSettingSecretFlagswep-key-flagsRead / Write
NMWepKeyTypewep-key-typeRead / Write
-char *wep-key0Read / Write
-char *wep-key1Read / Write
-char *wep-key2Read / Write
-char *wep-key3Read / Write
guintwep-tx-keyidxRead / Write
guintwps-methodRead / Write
-
-

Types and Values

@@ -537,10 +415,6 @@ use WEP, LEAP, WPA or WPA2/RSN security

- - - -
#define NM_SETTING_WIRELESS_SECURITY_FILS
 NMSettingWirelessSecurity
@@ -552,9 +426,6 @@ use WEP, LEAP, WPA or WPA2/RSN security

╰── NMWepKeyType GFlags ╰── NMSettingWirelessSecurityWpsMethod - GObject - ╰── NMSetting - ╰── NMSettingWirelessSecurity
@@ -608,7 +479,7 @@ nm_setting_wireless_security_get_key_mgmt

Returns

-

the “key-mgmt” property of the setting

+

the “key-mgmt” property of the setting


@@ -1222,7 +1093,7 @@ nm_setting_wireless_security_get_psk (

Returns

-

the “psk” property of the setting

+

the “psk” property of the setting


@@ -1249,7 +1120,7 @@ nm_setting_wireless_security_get_psk_flags

Returns

the NMSettingSecretFlags pertaining to the -“psk”

+“psk”


@@ -1275,7 +1146,7 @@ nm_setting_wireless_security_get_leap_username

Returns

-

the “leap-username” property of the setting

+

the “leap-username” property of the setting


@@ -1301,7 +1172,7 @@ nm_setting_wireless_security_get_leap_password

Returns

-

the “leap-password” property of the setting

+

the “leap-password” property of the setting


@@ -1328,7 +1199,7 @@ nm_setting_wireless_security_get_leap_password_flags
@@ -1396,7 +1267,7 @@ nm_setting_wireless_security_set_wep_key

key

the WEP key as a string, in either hexadecimal, ASCII, or passphrase -form as determined by the value of the “wep-key-type” +form as determined by the value of the “wep-key-type” property.

  @@ -1427,7 +1298,7 @@ nm_setting_wireless_security_get_wep_tx_keyidx

Returns

-

the “wep-tx-keyidx” property of the setting

+

the “wep-tx-keyidx” property of the setting


@@ -1453,7 +1324,7 @@ nm_setting_wireless_security_get_auth_alg

Returns

-

the “auth-alg” property of the setting

+

the “auth-alg” property of the setting


@@ -1505,7 +1376,7 @@ nm_setting_wireless_security_get_wep_key_type

Returns

-

the “wep-key-type” property of the setting

+

the “wep-key-type” property of the setting


@@ -1531,7 +1402,7 @@ nm_setting_wireless_security_get_wps_method

Returns

-

the “wps-method” property of the setting

+

the “wps-method” property of the setting

Since: 1.10

@@ -1898,248 +1769,6 @@ although, with the same numeric values.

#define NM_SETTING_WIRELESS_SECURITY_FILS                "fils"
 
-
-
-

NMSettingWirelessSecurity

-
typedef struct _NMSettingWirelessSecurity NMSettingWirelessSecurity;
-

Wi-Fi Security Settings

-
- -
-

Property Details

-
-

The “auth-alg” property

-
  “auth-alg”                 char *
-

When WEP is used (ie, key-mgmt = "none" or "ieee8021x") indicate the -802.11 authentication algorithm required by the AP here. One of "open" -for Open System, "shared" for Shared Key, or "leap" for Cisco LEAP. When -using Cisco LEAP (ie, key-mgmt = "ieee8021x" and auth-alg = "leap") the -"leap-username" and "leap-password" properties must be specified.

-

Owner: NMSettingWirelessSecurity

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “fils” property

-
  “fils”                     int
-

Indicates whether Fast Initial Link Setup (802.11ai) must be enabled for -the connection. One of NM_SETTING_WIRELESS_SECURITY_FILS_DEFAULT (use -global default value), NM_SETTING_WIRELESS_SECURITY_FILS_DISABLE -(disable FILS), NM_SETTING_WIRELESS_SECURITY_FILS_OPTIONAL (enable FILS -if the supplicant and the access point support it) or -NM_SETTING_WIRELESS_SECURITY_FILS_REQUIRED (enable FILS and fail if not -supported). When set to NM_SETTING_WIRELESS_SECURITY_FILS_DEFAULT and -no global default is set, FILS will be optionally enabled.

-

Owner: NMSettingWirelessSecurity

-

Flags: Read / Write

-

Default value: 0

-

Since: 1.12

-
-
-
-

The “group” property

-
  “group”                    GStrv
-

A list of group/broadcast encryption algorithms which prevents -connections to Wi-Fi networks that do not utilize one of the algorithms -in the list. For maximum compatibility leave this property empty. Each -list element may be one of "wep40", "wep104", "tkip", or "ccmp".

-

Owner: NMSettingWirelessSecurity

-

Flags: Read / Write

-
-
-
-

The “key-mgmt” property

-
  “key-mgmt”                 char *
-

Key management used for the connection. One of "none" (WEP), -"ieee8021x" (Dynamic WEP), "wpa-psk" (infrastructure WPA-PSK), "sae" -(SAE), "owe" (Opportunistic Wireless Encryption), "wpa-eap" -(WPA-Enterprise) or "wpa-eap-suite-b-192" (WPA3-Enterprise Suite B). -This property must be set for any Wi-Fi connection that uses security.

-

Owner: NMSettingWirelessSecurity

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “leap-password” property

-
  “leap-password”            char *
-

The login password for legacy LEAP connections (ie, key-mgmt = -"ieee8021x" and auth-alg = "leap").

-

Owner: NMSettingWirelessSecurity

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “leap-password-flags” property

-
  “leap-password-flags”      NMSettingSecretFlags
-

Flags indicating how to handle the -“leap-password” property.

-

Owner: NMSettingWirelessSecurity

-

Flags: Read / Write

-
-
-
-

The “leap-username” property

-
  “leap-username”            char *
-

The login username for legacy LEAP connections (ie, key-mgmt = -"ieee8021x" and auth-alg = "leap").

-

Owner: NMSettingWirelessSecurity

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “pairwise” property

-
  “pairwise”                 GStrv
-

A list of pairwise encryption algorithms which prevents connections to -Wi-Fi networks that do not utilize one of the algorithms in the list. -For maximum compatibility leave this property empty. Each list element -may be one of "tkip" or "ccmp".

-

Owner: NMSettingWirelessSecurity

-

Flags: Read / Write

-
-
-
-

The “pmf” property

-
  “pmf”                      int
-

Indicates whether Protected Management Frames (802.11w) must be enabled -for the connection. One of NM_SETTING_WIRELESS_SECURITY_PMF_DEFAULT -(use global default value), NM_SETTING_WIRELESS_SECURITY_PMF_DISABLE -(disable PMF), NM_SETTING_WIRELESS_SECURITY_PMF_OPTIONAL (enable PMF if -the supplicant and the access point support it) or -NM_SETTING_WIRELESS_SECURITY_PMF_REQUIRED (enable PMF and fail if not -supported). When set to NM_SETTING_WIRELESS_SECURITY_PMF_DEFAULT and no -global default is set, PMF will be optionally enabled.

-

Owner: NMSettingWirelessSecurity

-

Flags: Read / Write

-

Default value: 0

-

Since: 1.10

-
-
-
-

The “proto” property

-
  “proto”                    GStrv
-

List of strings specifying the allowed WPA protocol versions to use. -Each element may be one "wpa" (allow WPA) or "rsn" (allow WPA2/RSN). If -not specified, both WPA and RSN connections are allowed.

-

Owner: NMSettingWirelessSecurity

-

Flags: Read / Write

-
-
-
-

The “psk” property

-
  “psk”                      char *
-

Pre-Shared-Key for WPA networks. For WPA-PSK, it's either an ASCII -passphrase of 8 to 63 characters that is (as specified in the 802.11i -standard) hashed to derive the actual key, or the key in form of 64 -hexadecimal character. The WPA3-Personal networks use a passphrase -of any length for SAE authentication.

-

Owner: NMSettingWirelessSecurity

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “psk-flags” property

-
  “psk-flags”                NMSettingSecretFlags
-

Flags indicating how to handle the “psk” -property.

-

Owner: NMSettingWirelessSecurity

-

Flags: Read / Write

-
-
-
-

The “wep-key-flags” property

-
  “wep-key-flags”            NMSettingSecretFlags
-

Flags indicating how to handle the “wep-key0”, -“wep-key1”, “wep-key2”, -and “wep-key3” properties.

-

Owner: NMSettingWirelessSecurity

-

Flags: Read / Write

-
-
-
-

The “wep-key-type” property

-
  “wep-key-type”             NMWepKeyType
-

Controls the interpretation of WEP keys. Allowed values are -NM_WEP_KEY_TYPE_KEY, in which case the key is either a 10- or -26-character hexadecimal string, or a 5- or 13-character ASCII password; -or NM_WEP_KEY_TYPE_PASSPHRASE, in which case the passphrase is provided -as a string and will be hashed using the de-facto MD5 method to derive -the actual WEP key.

-

Owner: NMSettingWirelessSecurity

-

Flags: Read / Write

-

Default value: NM_WEP_KEY_TYPE_UNKNOWN

-
-
-
-

The “wep-key0” property

-
  “wep-key0”                 char *
-

Index 0 WEP key. This is the WEP key used in most networks. See the -"wep-key-type" property for a description of how this key is interpreted.

-

Owner: NMSettingWirelessSecurity

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “wep-key1” property

-
  “wep-key1”                 char *
-

Index 1 WEP key. This WEP index is not used by most networks. See the -"wep-key-type" property for a description of how this key is interpreted.

-

Owner: NMSettingWirelessSecurity

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “wep-key2” property

-
  “wep-key2”                 char *
-

Index 2 WEP key. This WEP index is not used by most networks. See the -"wep-key-type" property for a description of how this key is interpreted.

-

Owner: NMSettingWirelessSecurity

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “wep-key3” property

-
  “wep-key3”                 char *
-

Index 3 WEP key. This WEP index is not used by most networks. See the -"wep-key-type" property for a description of how this key is interpreted.

-

Owner: NMSettingWirelessSecurity

-

Flags: Read / Write

-

Default value: NULL

-
-
-
-

The “wep-tx-keyidx” property

-
  “wep-tx-keyidx”            guint
-

When static WEP is used (ie, key-mgmt = "none") and a non-default WEP key -index is used by the AP, put that WEP key index here. Valid values are 0 -(default key) through 3. Note that some consumer access points (like the -Linksys WRT54G) number the keys 1 - 4.

-

Owner: NMSettingWirelessSecurity

-

Flags: Read / Write

-

Allowed values: <= 3

-

Default value: 0

-
-
-
-

The “wps-method” property

-
  “wps-method”               guint
-

Flags indicating which mode of WPS is to be used if any.

-

There's little point in changing the default setting as NetworkManager will -automatically determine whether it's feasible to start WPS enrollment from -the Access Point capabilities.

-

WPS can be disabled by setting this property to a value of 1.

-

Owner: NMSettingWirelessSecurity

-

Flags: Read / Write

-

Default value: 0

-

Since: 1.10

-
-

Types and Values

-
---- - - - - -
 NMSimpleConnection
-
-
-

Object Hierarchy

-
    GObject
-    ╰── NMSimpleConnection
-
-
-
-

Implemented Interfaces

-

-NMSimpleConnection implements - NMConnection.

-
-

Description

An NMSimpleConnection does not directly represent a D-Bus-exported connection, but might be used in the process of creating a new one.

@@ -179,13 +152,6 @@ and properties as the source -

Types and Values

-
-

NMSimpleConnection

-
typedef struct _NMSimpleConnection NMSimpleConnection;
-
-
diff --git a/docs/libnm/html/api-index-full.html b/docs/libnm/html/api-index-full.html index 0a6143bb..c6dc5e6d 100644 --- a/docs/libnm/html/api-index-full.html +++ b/docs/libnm/html/api-index-full.html @@ -1341,6 +1341,10 @@ NMLInitData, struct in
+NMLldpNeighbor, struct in NMDevice +
+
+
nml_cleanup_context_busy_watcher_on_idle, function in NMIPConfig
@@ -1561,18 +1565,6 @@ NML_NMCLIENT_LOG_W, macro in NMMetered, enum in nm-dbus-interface
@@ -1673,7 +1665,7 @@ NMRemoteConnection:visible, object property in NMDeviceOvs
-NMSetting, struct in NMSetting +NMSetting, struct in NMSettingOvs
@@ -1685,195 +1677,195 @@ NMSetting6Lowpan:parent, object property in NMSettingOvs
-NMSetting8021x, struct in NMSetting8021x +NMSetting8021x, struct in NMSettingOvs
-NMSetting8021x:altsubject-matches, object property in NMSetting8021x +NMSetting8021x:altsubject-matches, object property in NMSettingOvs
-NMSetting8021x:anonymous-identity, object property in NMSetting8021x +NMSetting8021x:anonymous-identity, object property in NMSettingOvs
-NMSetting8021x:auth-timeout, object property in NMSetting8021x +NMSetting8021x:auth-timeout, object property in NMSettingOvs
-NMSetting8021x:ca-cert, object property in NMSetting8021x +NMSetting8021x:ca-cert, object property in NMSettingOvs
-NMSetting8021x:ca-cert-password, object property in NMSetting8021x +NMSetting8021x:ca-cert-password, object property in NMSettingOvs
-NMSetting8021x:ca-cert-password-flags, object property in NMSetting8021x +NMSetting8021x:ca-cert-password-flags, object property in NMSettingOvs
-NMSetting8021x:ca-path, object property in NMSetting8021x +NMSetting8021x:ca-path, object property in NMSettingOvs
-NMSetting8021x:client-cert, object property in NMSetting8021x +NMSetting8021x:client-cert, object property in NMSettingOvs
-NMSetting8021x:client-cert-password, object property in NMSetting8021x +NMSetting8021x:client-cert-password, object property in NMSettingOvs
-NMSetting8021x:client-cert-password-flags, object property in NMSetting8021x +NMSetting8021x:client-cert-password-flags, object property in NMSettingOvs
-NMSetting8021x:domain-match, object property in NMSetting8021x +NMSetting8021x:domain-match, object property in NMSettingOvs
-NMSetting8021x:domain-suffix-match, object property in NMSetting8021x +NMSetting8021x:domain-suffix-match, object property in NMSettingOvs
-NMSetting8021x:eap, object property in NMSetting8021x +NMSetting8021x:eap, object property in NMSettingOvs
-NMSetting8021x:identity, object property in NMSetting8021x +NMSetting8021x:identity, object property in NMSettingOvs
-NMSetting8021x:optional, object property in NMSetting8021x +NMSetting8021x:optional, object property in NMSettingOvs
-NMSetting8021x:pac-file, object property in NMSetting8021x +NMSetting8021x:pac-file, object property in NMSettingOvs
-NMSetting8021x:password, object property in NMSetting8021x +NMSetting8021x:password, object property in NMSettingOvs
-NMSetting8021x:password-flags, object property in NMSetting8021x +NMSetting8021x:password-flags, object property in NMSettingOvs
-NMSetting8021x:password-raw, object property in NMSetting8021x +NMSetting8021x:password-raw, object property in NMSettingOvs
-NMSetting8021x:password-raw-flags, object property in NMSetting8021x +NMSetting8021x:password-raw-flags, object property in NMSettingOvs
-NMSetting8021x:phase1-auth-flags, object property in NMSetting8021x +NMSetting8021x:phase1-auth-flags, object property in NMSettingOvs
-NMSetting8021x:phase1-fast-provisioning, object property in NMSetting8021x +NMSetting8021x:phase1-fast-provisioning, object property in NMSettingOvs
-NMSetting8021x:phase1-peaplabel, object property in NMSetting8021x +NMSetting8021x:phase1-peaplabel, object property in NMSettingOvs
-NMSetting8021x:phase1-peapver, object property in NMSetting8021x +NMSetting8021x:phase1-peapver, object property in NMSettingOvs
-NMSetting8021x:phase2-altsubject-matches, object property in NMSetting8021x +NMSetting8021x:phase2-altsubject-matches, object property in NMSettingOvs
-NMSetting8021x:phase2-auth, object property in NMSetting8021x +NMSetting8021x:phase2-auth, object property in NMSettingOvs
-NMSetting8021x:phase2-autheap, object property in NMSetting8021x +NMSetting8021x:phase2-autheap, object property in NMSettingOvs
-NMSetting8021x:phase2-ca-cert, object property in NMSetting8021x +NMSetting8021x:phase2-ca-cert, object property in NMSettingOvs
-NMSetting8021x:phase2-ca-cert-password, object property in NMSetting8021x +NMSetting8021x:phase2-ca-cert-password, object property in NMSettingOvs
-NMSetting8021x:phase2-ca-cert-password-flags, object property in NMSetting8021x +NMSetting8021x:phase2-ca-cert-password-flags, object property in NMSettingOvs
-NMSetting8021x:phase2-ca-path, object property in NMSetting8021x +NMSetting8021x:phase2-ca-path, object property in NMSettingOvs
-NMSetting8021x:phase2-client-cert, object property in NMSetting8021x +NMSetting8021x:phase2-client-cert, object property in NMSettingOvs
-NMSetting8021x:phase2-client-cert-password, object property in NMSetting8021x +NMSetting8021x:phase2-client-cert-password, object property in NMSettingOvs
-NMSetting8021x:phase2-client-cert-password-flags, object property in NMSetting8021x +NMSetting8021x:phase2-client-cert-password-flags, object property in NMSettingOvs
-NMSetting8021x:phase2-domain-match, object property in NMSetting8021x +NMSetting8021x:phase2-domain-match, object property in NMSettingOvs
-NMSetting8021x:phase2-domain-suffix-match, object property in NMSetting8021x +NMSetting8021x:phase2-domain-suffix-match, object property in NMSettingOvs
-NMSetting8021x:phase2-private-key, object property in NMSetting8021x +NMSetting8021x:phase2-private-key, object property in NMSettingOvs
-NMSetting8021x:phase2-private-key-password, object property in NMSetting8021x +NMSetting8021x:phase2-private-key-password, object property in NMSettingOvs
-NMSetting8021x:phase2-private-key-password-flags, object property in NMSetting8021x +NMSetting8021x:phase2-private-key-password-flags, object property in NMSettingOvs
-NMSetting8021x:phase2-subject-match, object property in NMSetting8021x +NMSetting8021x:phase2-subject-match, object property in NMSettingOvs
-NMSetting8021x:pin, object property in NMSetting8021x +NMSetting8021x:pin, object property in NMSettingOvs
-NMSetting8021x:pin-flags, object property in NMSetting8021x +NMSetting8021x:pin-flags, object property in NMSettingOvs
-NMSetting8021x:private-key, object property in NMSetting8021x +NMSetting8021x:private-key, object property in NMSettingOvs
-NMSetting8021x:private-key-password, object property in NMSetting8021x +NMSetting8021x:private-key-password, object property in NMSettingOvs
-NMSetting8021x:private-key-password-flags, object property in NMSetting8021x +NMSetting8021x:private-key-password-flags, object property in NMSettingOvs
-NMSetting8021x:subject-match, object property in NMSetting8021x +NMSetting8021x:subject-match, object property in NMSettingOvs
-NMSetting8021x:system-ca-certs, object property in NMSetting8021x +NMSetting8021x:system-ca-certs, object property in NMSettingOvs
@@ -1889,67 +1881,59 @@ NMSetting6Lowpan:parent, object property in NMSettingOvs
-NMSetting8021xSchemeType, enum in nm-meta-setting-base-impl -
-
-
-NMSetting8021xSchemeVtable, struct in nm-meta-setting-base-impl -
-
-
-NMSetting:name, object property in NMSetting +NMSetting:name, object property in NMSettingOvs
-NMSettingAdsl, struct in NMSettingAdsl +NMSettingAdsl, struct in NMSettingOvs
-NMSettingAdsl:encapsulation, object property in NMSettingAdsl +NMSettingAdsl:encapsulation, object property in NMSettingOvs
-NMSettingAdsl:password, object property in NMSettingAdsl +NMSettingAdsl:password, object property in NMSettingOvs
-NMSettingAdsl:password-flags, object property in NMSettingAdsl +NMSettingAdsl:password-flags, object property in NMSettingOvs
-NMSettingAdsl:protocol, object property in NMSettingAdsl +NMSettingAdsl:protocol, object property in NMSettingOvs
-NMSettingAdsl:username, object property in NMSettingAdsl +NMSettingAdsl:username, object property in NMSettingOvs
-NMSettingAdsl:vci, object property in NMSettingAdsl +NMSettingAdsl:vci, object property in NMSettingOvs
-NMSettingAdsl:vpi, object property in NMSettingAdsl +NMSettingAdsl:vpi, object property in NMSettingOvs
-NMSettingBluetooth, struct in NMSettingBluetooth +NMSettingBluetooth, struct in NMSettingOvs
-NMSettingBluetooth:bdaddr, object property in NMSettingBluetooth +NMSettingBluetooth:bdaddr, object property in NMSettingOvs
-NMSettingBluetooth:type, object property in NMSettingBluetooth +NMSettingBluetooth:type, object property in NMSettingOvs
-NMSettingBond, struct in NMSettingBond +NMSettingBond, struct in NMSettingOvs
-NMSettingBond:options, object property in NMSettingBond +NMSettingBond:options, object property in NMSettingOvs
@@ -2065,47 +2049,47 @@ NMSettingBridge:vlans, object property in NMSettingOvs
-NMSettingBridgePort, struct in NMSettingBridgePort +NMSettingBridgePort, struct in NMSettingOvs
-NMSettingBridgePort:hairpin-mode, object property in NMSettingBridgePort +NMSettingBridgePort:hairpin-mode, object property in NMSettingOvs
-NMSettingBridgePort:path-cost, object property in NMSettingBridgePort +NMSettingBridgePort:path-cost, object property in NMSettingOvs
-NMSettingBridgePort:priority, object property in NMSettingBridgePort +NMSettingBridgePort:priority, object property in NMSettingOvs
-NMSettingBridgePort:vlans, object property in NMSettingBridgePort +NMSettingBridgePort:vlans, object property in NMSettingOvs
-NMSettingCdma, struct in NMSettingCdma +NMSettingCdma, struct in NMSettingOvs
-NMSettingCdma:mtu, object property in NMSettingCdma +NMSettingCdma:mtu, object property in NMSettingOvs
-NMSettingCdma:number, object property in NMSettingCdma +NMSettingCdma:number, object property in NMSettingOvs
-NMSettingCdma:password, object property in NMSettingCdma +NMSettingCdma:password, object property in NMSettingOvs
-NMSettingCdma:password-flags, object property in NMSettingCdma +NMSettingCdma:password-flags, object property in NMSettingOvs
-NMSettingCdma:username, object property in NMSettingCdma +NMSettingCdma:username, object property in NMSettingOvs
@@ -2117,107 +2101,107 @@ NMSettingBridge:vlans, object property in NMSettingOvs
-NMSettingConnection, struct in NMSettingConnection +NMSettingConnection, struct in NMSettingOvs
-NMSettingConnection:auth-retries, object property in NMSettingConnection +NMSettingConnection:auth-retries, object property in NMSettingOvs
-NMSettingConnection:autoconnect, object property in NMSettingConnection +NMSettingConnection:autoconnect, object property in NMSettingOvs
-NMSettingConnection:autoconnect-priority, object property in NMSettingConnection +NMSettingConnection:autoconnect-priority, object property in NMSettingOvs
-NMSettingConnection:autoconnect-retries, object property in NMSettingConnection +NMSettingConnection:autoconnect-retries, object property in NMSettingOvs
-NMSettingConnection:autoconnect-slaves, object property in NMSettingConnection +NMSettingConnection:autoconnect-slaves, object property in NMSettingOvs
-NMSettingConnection:gateway-ping-timeout, object property in NMSettingConnection +NMSettingConnection:gateway-ping-timeout, object property in NMSettingOvs
-NMSettingConnection:id, object property in NMSettingConnection +NMSettingConnection:id, object property in NMSettingOvs
-NMSettingConnection:interface-name, object property in NMSettingConnection +NMSettingConnection:interface-name, object property in NMSettingOvs
-NMSettingConnection:lldp, object property in NMSettingConnection +NMSettingConnection:lldp, object property in NMSettingOvs
-NMSettingConnection:llmnr, object property in NMSettingConnection +NMSettingConnection:llmnr, object property in NMSettingOvs
-NMSettingConnection:master, object property in NMSettingConnection +NMSettingConnection:master, object property in NMSettingOvs
-NMSettingConnection:mdns, object property in NMSettingConnection +NMSettingConnection:mdns, object property in NMSettingOvs
-NMSettingConnection:metered, object property in NMSettingConnection +NMSettingConnection:metered, object property in NMSettingOvs
-NMSettingConnection:mud-url, object property in NMSettingConnection +NMSettingConnection:mud-url, object property in NMSettingOvs
-NMSettingConnection:multi-connect, object property in NMSettingConnection +NMSettingConnection:multi-connect, object property in NMSettingOvs
-NMSettingConnection:permissions, object property in NMSettingConnection +NMSettingConnection:permissions, object property in NMSettingOvs
-NMSettingConnection:read-only, object property in NMSettingConnection +NMSettingConnection:read-only, object property in NMSettingOvs
-NMSettingConnection:secondaries, object property in NMSettingConnection +NMSettingConnection:secondaries, object property in NMSettingOvs
-NMSettingConnection:slave-type, object property in NMSettingConnection +NMSettingConnection:slave-type, object property in NMSettingOvs
-NMSettingConnection:stable-id, object property in NMSettingConnection +NMSettingConnection:stable-id, object property in NMSettingOvs
-NMSettingConnection:timestamp, object property in NMSettingConnection +NMSettingConnection:timestamp, object property in NMSettingOvs
-NMSettingConnection:type, object property in NMSettingConnection +NMSettingConnection:type, object property in NMSettingOvs
-NMSettingConnection:uuid, object property in NMSettingConnection +NMSettingConnection:uuid, object property in NMSettingOvs
-NMSettingConnection:wait-device-timeout, object property in NMSettingConnection +NMSettingConnection:wait-device-timeout, object property in NMSettingOvs
-NMSettingConnection:zone, object property in NMSettingConnection +NMSettingConnection:zone, object property in NMSettingOvs
@@ -2237,67 +2221,67 @@ NMSettingBridge:vlans, object property in NMSettingOvs
-NMSettingDcb, struct in NMSettingDcb +NMSettingDcb, struct in NMSettingOvs
-NMSettingDcb:app-fcoe-flags, object property in NMSettingDcb +NMSettingDcb:app-fcoe-flags, object property in NMSettingOvs
-NMSettingDcb:app-fcoe-mode, object property in NMSettingDcb +NMSettingDcb:app-fcoe-mode, object property in NMSettingOvs
-NMSettingDcb:app-fcoe-priority, object property in NMSettingDcb +NMSettingDcb:app-fcoe-priority, object property in NMSettingOvs
-NMSettingDcb:app-fip-flags, object property in NMSettingDcb +NMSettingDcb:app-fip-flags, object property in NMSettingOvs
-NMSettingDcb:app-fip-priority, object property in NMSettingDcb +NMSettingDcb:app-fip-priority, object property in NMSettingOvs
-NMSettingDcb:app-iscsi-flags, object property in NMSettingDcb +NMSettingDcb:app-iscsi-flags, object property in NMSettingOvs
-NMSettingDcb:app-iscsi-priority, object property in NMSettingDcb +NMSettingDcb:app-iscsi-priority, object property in NMSettingOvs
-NMSettingDcb:priority-bandwidth, object property in NMSettingDcb +NMSettingDcb:priority-bandwidth, object property in NMSettingOvs
-NMSettingDcb:priority-flow-control, object property in NMSettingDcb +NMSettingDcb:priority-flow-control, object property in NMSettingOvs
-NMSettingDcb:priority-flow-control-flags, object property in NMSettingDcb +NMSettingDcb:priority-flow-control-flags, object property in NMSettingOvs
-NMSettingDcb:priority-group-bandwidth, object property in NMSettingDcb +NMSettingDcb:priority-group-bandwidth, object property in NMSettingOvs
-NMSettingDcb:priority-group-flags, object property in NMSettingDcb +NMSettingDcb:priority-group-flags, object property in NMSettingOvs
-NMSettingDcb:priority-group-id, object property in NMSettingDcb +NMSettingDcb:priority-group-id, object property in NMSettingOvs
-NMSettingDcb:priority-strict-bandwidth, object property in NMSettingDcb +NMSettingDcb:priority-strict-bandwidth, object property in NMSettingOvs
-NMSettingDcb:priority-traffic-class, object property in NMSettingDcb +NMSettingDcb:priority-traffic-class, object property in NMSettingOvs
@@ -2309,7 +2293,7 @@ NMSettingBridge:vlans, object property in NMSettingOvs
-NMSettingDummy, struct in NMSettingDummy +NMSettingDummy, struct in NMSettingOvs
@@ -2317,67 +2301,67 @@ NMSettingEthtool, struct in NMSettingOvs
-NMSettingGeneric, struct in NMSettingGeneric +NMSettingGeneric, struct in NMSettingOvs
-NMSettingGsm, struct in NMSettingGsm +NMSettingGsm, struct in NMSettingOvs
-NMSettingGsm:apn, object property in NMSettingGsm +NMSettingGsm:apn, object property in NMSettingOvs
-NMSettingGsm:auto-config, object property in NMSettingGsm +NMSettingGsm:auto-config, object property in NMSettingOvs
-NMSettingGsm:device-id, object property in NMSettingGsm +NMSettingGsm:device-id, object property in NMSettingOvs
-NMSettingGsm:home-only, object property in NMSettingGsm +NMSettingGsm:home-only, object property in NMSettingOvs
-NMSettingGsm:mtu, object property in NMSettingGsm +NMSettingGsm:mtu, object property in NMSettingOvs
-NMSettingGsm:network-id, object property in NMSettingGsm +NMSettingGsm:network-id, object property in NMSettingOvs
-NMSettingGsm:number, object property in NMSettingGsm +NMSettingGsm:number, object property in NMSettingOvs
-NMSettingGsm:password, object property in NMSettingGsm +NMSettingGsm:password, object property in NMSettingOvs
-NMSettingGsm:password-flags, object property in NMSettingGsm +NMSettingGsm:password-flags, object property in NMSettingOvs
-NMSettingGsm:pin, object property in NMSettingGsm +NMSettingGsm:pin, object property in NMSettingOvs
-NMSettingGsm:pin-flags, object property in NMSettingGsm +NMSettingGsm:pin-flags, object property in NMSettingOvs
-NMSettingGsm:sim-id, object property in NMSettingGsm +NMSettingGsm:sim-id, object property in NMSettingOvs
-NMSettingGsm:sim-operator-id, object property in NMSettingGsm +NMSettingGsm:sim-operator-id, object property in NMSettingOvs
-NMSettingGsm:username, object property in NMSettingGsm +NMSettingGsm:username, object property in NMSettingOvs
@@ -2401,67 +2385,67 @@ NMSettingHostname:priority, object property in NMSettingOvs
-NMSettingInfiniband, struct in NMSettingInfiniband +NMSettingInfiniband, struct in NMSettingOvs
-NMSettingInfiniband:mac-address, object property in NMSettingInfiniband +NMSettingInfiniband:mac-address, object property in NMSettingOvs
-NMSettingInfiniband:mtu, object property in NMSettingInfiniband +NMSettingInfiniband:mtu, object property in NMSettingOvs
-NMSettingInfiniband:p-key, object property in NMSettingInfiniband +NMSettingInfiniband:p-key, object property in NMSettingOvs
-NMSettingInfiniband:parent, object property in NMSettingInfiniband +NMSettingInfiniband:parent, object property in NMSettingOvs
-NMSettingInfiniband:transport-mode, object property in NMSettingInfiniband +NMSettingInfiniband:transport-mode, object property in NMSettingOvs
-NMSettingIP4Config, struct in NMSettingIP4Config +NMSettingIP4Config, struct in NMSettingOvs
-NMSettingIP4Config:dhcp-client-id, object property in NMSettingIP4Config +NMSettingIP4Config:dhcp-client-id, object property in NMSettingOvs
-NMSettingIP4Config:dhcp-fqdn, object property in NMSettingIP4Config +NMSettingIP4Config:dhcp-fqdn, object property in NMSettingOvs
-NMSettingIP4Config:dhcp-vendor-class-identifier, object property in NMSettingIP4Config +NMSettingIP4Config:dhcp-vendor-class-identifier, object property in NMSettingOvs
-NMSettingIP6Config, struct in NMSettingIP6Config +NMSettingIP6Config, struct in NMSettingOvs
-NMSettingIP6Config:addr-gen-mode, object property in NMSettingIP6Config +NMSettingIP6Config:addr-gen-mode, object property in NMSettingOvs
-NMSettingIP6Config:dhcp-duid, object property in NMSettingIP6Config +NMSettingIP6Config:dhcp-duid, object property in NMSettingOvs
-NMSettingIP6Config:ip6-privacy, object property in NMSettingIP6Config +NMSettingIP6Config:ip6-privacy, object property in NMSettingOvs
-NMSettingIP6Config:ra-timeout, object property in NMSettingIP6Config +NMSettingIP6Config:ra-timeout, object property in NMSettingOvs
-NMSettingIP6Config:token, object property in NMSettingIP6Config +NMSettingIP6Config:token, object property in NMSettingOvs
@@ -2473,147 +2457,147 @@ NMSettingHostname:priority, object property in NMSettingOvs
-NMSettingIPConfig, struct in NMSettingIPConfig +NMSettingIPConfig, struct in NMSettingOvs
-NMSettingIPConfig:addresses, object property in NMSettingIPConfig +NMSettingIPConfig:addresses, object property in NMSettingOvs
-NMSettingIPConfig:dad-timeout, object property in NMSettingIPConfig +NMSettingIPConfig:dad-timeout, object property in NMSettingOvs
-NMSettingIPConfig:dhcp-hostname, object property in NMSettingIPConfig +NMSettingIPConfig:dhcp-hostname, object property in NMSettingOvs
-NMSettingIPConfig:dhcp-hostname-flags, object property in NMSettingIPConfig +NMSettingIPConfig:dhcp-hostname-flags, object property in NMSettingOvs
-NMSettingIPConfig:dhcp-iaid, object property in NMSettingIPConfig +NMSettingIPConfig:dhcp-iaid, object property in NMSettingOvs
-NMSettingIPConfig:dhcp-reject-servers, object property in NMSettingIPConfig +NMSettingIPConfig:dhcp-reject-servers, object property in NMSettingOvs
-NMSettingIPConfig:dhcp-send-hostname, object property in NMSettingIPConfig +NMSettingIPConfig:dhcp-send-hostname, object property in NMSettingOvs
-NMSettingIPConfig:dhcp-timeout, object property in NMSettingIPConfig +NMSettingIPConfig:dhcp-timeout, object property in NMSettingOvs
-NMSettingIPConfig:dns, object property in NMSettingIPConfig +NMSettingIPConfig:dns, object property in NMSettingOvs
-NMSettingIPConfig:dns-options, object property in NMSettingIPConfig +NMSettingIPConfig:dns-options, object property in NMSettingOvs
-NMSettingIPConfig:dns-priority, object property in NMSettingIPConfig +NMSettingIPConfig:dns-priority, object property in NMSettingOvs
-NMSettingIPConfig:dns-search, object property in NMSettingIPConfig +NMSettingIPConfig:dns-search, object property in NMSettingOvs
-NMSettingIPConfig:gateway, object property in NMSettingIPConfig +NMSettingIPConfig:gateway, object property in NMSettingOvs
-NMSettingIPConfig:ignore-auto-dns, object property in NMSettingIPConfig +NMSettingIPConfig:ignore-auto-dns, object property in NMSettingOvs
-NMSettingIPConfig:ignore-auto-routes, object property in NMSettingIPConfig +NMSettingIPConfig:ignore-auto-routes, object property in NMSettingOvs
-NMSettingIPConfig:may-fail, object property in NMSettingIPConfig +NMSettingIPConfig:may-fail, object property in NMSettingOvs
-NMSettingIPConfig:method, object property in NMSettingIPConfig +NMSettingIPConfig:method, object property in NMSettingOvs
-NMSettingIPConfig:never-default, object property in NMSettingIPConfig +NMSettingIPConfig:never-default, object property in NMSettingOvs
-NMSettingIPConfig:route-metric, object property in NMSettingIPConfig +NMSettingIPConfig:route-metric, object property in NMSettingOvs
-NMSettingIPConfig:route-table, object property in NMSettingIPConfig +NMSettingIPConfig:route-table, object property in NMSettingOvs
-NMSettingIPConfig:routes, object property in NMSettingIPConfig +NMSettingIPConfig:routes, object property in NMSettingOvs
-NMSettingIPTunnel, struct in NMSettingIPTunnel +NMSettingIPTunnel, struct in NMSettingOvs
-NMSettingIPTunnel:encapsulation-limit, object property in NMSettingIPTunnel +NMSettingIPTunnel:encapsulation-limit, object property in NMSettingOvs
-NMSettingIPTunnel:flags, object property in NMSettingIPTunnel +NMSettingIPTunnel:flags, object property in NMSettingOvs
-NMSettingIPTunnel:flow-label, object property in NMSettingIPTunnel +NMSettingIPTunnel:flow-label, object property in NMSettingOvs
-NMSettingIPTunnel:input-key, object property in NMSettingIPTunnel +NMSettingIPTunnel:input-key, object property in NMSettingOvs
-NMSettingIPTunnel:local, object property in NMSettingIPTunnel +NMSettingIPTunnel:local, object property in NMSettingOvs
-NMSettingIPTunnel:mode, object property in NMSettingIPTunnel +NMSettingIPTunnel:mode, object property in NMSettingOvs
-NMSettingIPTunnel:mtu, object property in NMSettingIPTunnel +NMSettingIPTunnel:mtu, object property in NMSettingOvs
-NMSettingIPTunnel:output-key, object property in NMSettingIPTunnel +NMSettingIPTunnel:output-key, object property in NMSettingOvs
-NMSettingIPTunnel:parent, object property in NMSettingIPTunnel +NMSettingIPTunnel:parent, object property in NMSettingOvs
-NMSettingIPTunnel:path-mtu-discovery, object property in NMSettingIPTunnel +NMSettingIPTunnel:path-mtu-discovery, object property in NMSettingOvs
-NMSettingIPTunnel:remote, object property in NMSettingIPTunnel +NMSettingIPTunnel:remote, object property in NMSettingOvs
-NMSettingIPTunnel:tos, object property in NMSettingIPTunnel +NMSettingIPTunnel:tos, object property in NMSettingOvs
-NMSettingIPTunnel:ttl, object property in NMSettingIPTunnel +NMSettingIPTunnel:ttl, object property in NMSettingOvs
@@ -2621,43 +2605,43 @@ NMSettingHostname:priority, object property in NMSettingOvs
-NMSettingMacsec, struct in NMSettingMacsec +NMSettingMacsec, struct in NMSettingOvs
-NMSettingMacsec:encrypt, object property in NMSettingMacsec +NMSettingMacsec:encrypt, object property in NMSettingOvs
-NMSettingMacsec:mka-cak, object property in NMSettingMacsec +NMSettingMacsec:mka-cak, object property in NMSettingOvs
-NMSettingMacsec:mka-cak-flags, object property in NMSettingMacsec +NMSettingMacsec:mka-cak-flags, object property in NMSettingOvs
-NMSettingMacsec:mka-ckn, object property in NMSettingMacsec +NMSettingMacsec:mka-ckn, object property in NMSettingOvs
-NMSettingMacsec:mode, object property in NMSettingMacsec +NMSettingMacsec:mode, object property in NMSettingOvs
-NMSettingMacsec:parent, object property in NMSettingMacsec +NMSettingMacsec:parent, object property in NMSettingOvs
-NMSettingMacsec:port, object property in NMSettingMacsec +NMSettingMacsec:port, object property in NMSettingOvs
-NMSettingMacsec:send-sci, object property in NMSettingMacsec +NMSettingMacsec:send-sci, object property in NMSettingOvs
-NMSettingMacsec:validation, object property in NMSettingMacsec +NMSettingMacsec:validation, object property in NMSettingOvs
@@ -2669,23 +2653,23 @@ NMSettingHostname:priority, object property in NMSettingOvs
-NMSettingMacvlan, struct in NMSettingMacvlan +NMSettingMacvlan, struct in NMSettingOvs
-NMSettingMacvlan:mode, object property in NMSettingMacvlan +NMSettingMacvlan:mode, object property in NMSettingOvs
-NMSettingMacvlan:parent, object property in NMSettingMacvlan +NMSettingMacvlan:parent, object property in NMSettingOvs
-NMSettingMacvlan:promiscuous, object property in NMSettingMacvlan +NMSettingMacvlan:promiscuous, object property in NMSettingOvs
-NMSettingMacvlan:tap, object property in NMSettingMacvlan +NMSettingMacvlan:tap, object property in NMSettingOvs
@@ -2713,19 +2697,19 @@ NMSettingMatch:path, object property in NMSettingOvs
-NMSettingOlpcMesh, struct in NMSettingOlpcMesh +NMSettingOlpcMesh, struct in NMSettingOvs
-NMSettingOlpcMesh:channel, object property in NMSettingOlpcMesh +NMSettingOlpcMesh:channel, object property in NMSettingOvs
-NMSettingOlpcMesh:dhcp-anycast-address, object property in NMSettingOlpcMesh +NMSettingOlpcMesh:dhcp-anycast-address, object property in NMSettingOvs
-NMSettingOlpcMesh:ssid, object property in NMSettingOlpcMesh +NMSettingOlpcMesh:ssid, object property in NMSettingOvs
@@ -2813,127 +2797,123 @@ NMSettingOvsPort:vlan-mode, object property in NMSettingOvs
-NMSettingPpp, struct in NMSettingPpp +NMSettingPpp, struct in NMSettingOvs
-NMSettingPpp:baud, object property in NMSettingPpp +NMSettingPpp:baud, object property in NMSettingOvs
-NMSettingPpp:crtscts, object property in NMSettingPpp +NMSettingPpp:crtscts, object property in NMSettingOvs
-NMSettingPpp:lcp-echo-failure, object property in NMSettingPpp +NMSettingPpp:lcp-echo-failure, object property in NMSettingOvs
-NMSettingPpp:lcp-echo-interval, object property in NMSettingPpp +NMSettingPpp:lcp-echo-interval, object property in NMSettingOvs
-NMSettingPpp:mppe-stateful, object property in NMSettingPpp +NMSettingPpp:mppe-stateful, object property in NMSettingOvs
-NMSettingPpp:mru, object property in NMSettingPpp +NMSettingPpp:mru, object property in NMSettingOvs
-NMSettingPpp:mtu, object property in NMSettingPpp +NMSettingPpp:mtu, object property in NMSettingOvs
-NMSettingPpp:no-vj-comp, object property in NMSettingPpp +NMSettingPpp:no-vj-comp, object property in NMSettingOvs
-NMSettingPpp:noauth, object property in NMSettingPpp +NMSettingPpp:noauth, object property in NMSettingOvs
-NMSettingPpp:nobsdcomp, object property in NMSettingPpp +NMSettingPpp:nobsdcomp, object property in NMSettingOvs
-NMSettingPpp:nodeflate, object property in NMSettingPpp +NMSettingPpp:nodeflate, object property in NMSettingOvs
-NMSettingPpp:refuse-chap, object property in NMSettingPpp +NMSettingPpp:refuse-chap, object property in NMSettingOvs
-NMSettingPpp:refuse-eap, object property in NMSettingPpp +NMSettingPpp:refuse-eap, object property in NMSettingOvs
-NMSettingPpp:refuse-mschap, object property in NMSettingPpp +NMSettingPpp:refuse-mschap, object property in NMSettingOvs
-NMSettingPpp:refuse-mschapv2, object property in NMSettingPpp +NMSettingPpp:refuse-mschapv2, object property in NMSettingOvs
-NMSettingPpp:refuse-pap, object property in NMSettingPpp +NMSettingPpp:refuse-pap, object property in NMSettingOvs
-NMSettingPpp:require-mppe, object property in NMSettingPpp +NMSettingPpp:require-mppe, object property in NMSettingOvs
-NMSettingPpp:require-mppe-128, object property in NMSettingPpp +NMSettingPpp:require-mppe-128, object property in NMSettingOvs
-NMSettingPppoe, struct in NMSettingPppoe +NMSettingPppoe, struct in NMSettingOvs
-NMSettingPppoe:parent, object property in NMSettingPppoe +NMSettingPppoe:parent, object property in NMSettingOvs
-NMSettingPppoe:password, object property in NMSettingPppoe +NMSettingPppoe:password, object property in NMSettingOvs
-NMSettingPppoe:password-flags, object property in NMSettingPppoe +NMSettingPppoe:password-flags, object property in NMSettingOvs
-NMSettingPppoe:service, object property in NMSettingPppoe +NMSettingPppoe:service, object property in NMSettingOvs
-NMSettingPppoe:username, object property in NMSettingPppoe +NMSettingPppoe:username, object property in NMSettingOvs
-NMSettingPriority, enum in nm-meta-setting-base-impl +NMSettingProxy, struct in NMSettingOvs
-NMSettingProxy, struct in NMSettingProxy +NMSettingProxy:browser-only, object property in NMSettingOvs
-NMSettingProxy:browser-only, object property in NMSettingProxy +NMSettingProxy:method, object property in NMSettingOvs
-NMSettingProxy:method, object property in NMSettingProxy +NMSettingProxy:pac-script, object property in NMSettingOvs
-NMSettingProxy:pac-script, object property in NMSettingProxy -
-
-
-NMSettingProxy:pac-url, object property in NMSettingProxy +NMSettingProxy:pac-url, object property in NMSettingOvs
@@ -2953,27 +2933,27 @@ NMSettingPriority, enum in nm-meta-setting-base-impl
-NMSettingSerial, struct in NMSettingSerial +NMSettingSerial, struct in NMSettingOvs
-NMSettingSerial:baud, object property in NMSettingSerial +NMSettingSerial:baud, object property in NMSettingOvs
-NMSettingSerial:bits, object property in NMSettingSerial +NMSettingSerial:bits, object property in NMSettingOvs
-NMSettingSerial:parity, object property in NMSettingSerial +NMSettingSerial:parity, object property in NMSettingOvs
-NMSettingSerial:send-delay, object property in NMSettingSerial +NMSettingSerial:send-delay, object property in NMSettingOvs
-NMSettingSerial:stopbits, object property in NMSettingSerial +NMSettingSerial:stopbits, object property in NMSettingOvs
@@ -3017,131 +2997,131 @@ NMSettingTCConfig:tfilters, object property in NMSettingOvs
-NMSettingTeam, struct in NMSettingTeam +NMSettingTeam, struct in NMSettingOvs
-NMSettingTeam:config, object property in NMSettingTeam +NMSettingTeam:config, object property in NMSettingOvs
-NMSettingTeam:link-watchers, object property in NMSettingTeam +NMSettingTeam:link-watchers, object property in NMSettingOvs
-NMSettingTeam:mcast-rejoin-count, object property in NMSettingTeam +NMSettingTeam:mcast-rejoin-count, object property in NMSettingOvs
-NMSettingTeam:mcast-rejoin-interval, object property in NMSettingTeam +NMSettingTeam:mcast-rejoin-interval, object property in NMSettingOvs
-NMSettingTeam:notify-peers-count, object property in NMSettingTeam +NMSettingTeam:notify-peers-count, object property in NMSettingOvs
-NMSettingTeam:notify-peers-interval, object property in NMSettingTeam +NMSettingTeam:notify-peers-interval, object property in NMSettingOvs
-NMSettingTeam:runner, object property in NMSettingTeam +NMSettingTeam:runner, object property in NMSettingOvs
-NMSettingTeam:runner-active, object property in NMSettingTeam +NMSettingTeam:runner-active, object property in NMSettingOvs
-NMSettingTeam:runner-agg-select-policy, object property in NMSettingTeam +NMSettingTeam:runner-agg-select-policy, object property in NMSettingOvs
-NMSettingTeam:runner-fast-rate, object property in NMSettingTeam +NMSettingTeam:runner-fast-rate, object property in NMSettingOvs
-NMSettingTeam:runner-hwaddr-policy, object property in NMSettingTeam +NMSettingTeam:runner-hwaddr-policy, object property in NMSettingOvs
-NMSettingTeam:runner-min-ports, object property in NMSettingTeam +NMSettingTeam:runner-min-ports, object property in NMSettingOvs
-NMSettingTeam:runner-sys-prio, object property in NMSettingTeam +NMSettingTeam:runner-sys-prio, object property in NMSettingOvs
-NMSettingTeam:runner-tx-balancer, object property in NMSettingTeam +NMSettingTeam:runner-tx-balancer, object property in NMSettingOvs
-NMSettingTeam:runner-tx-balancer-interval, object property in NMSettingTeam +NMSettingTeam:runner-tx-balancer-interval, object property in NMSettingOvs
-NMSettingTeam:runner-tx-hash, object property in NMSettingTeam +NMSettingTeam:runner-tx-hash, object property in NMSettingOvs
-NMSettingTeamPort, struct in NMSettingTeamPort +NMSettingTeamPort, struct in NMSettingOvs
-NMSettingTeamPort:config, object property in NMSettingTeamPort +NMSettingTeamPort:config, object property in NMSettingOvs
-NMSettingTeamPort:lacp-key, object property in NMSettingTeamPort +NMSettingTeamPort:lacp-key, object property in NMSettingOvs
-NMSettingTeamPort:lacp-prio, object property in NMSettingTeamPort +NMSettingTeamPort:lacp-prio, object property in NMSettingOvs
-NMSettingTeamPort:link-watchers, object property in NMSettingTeamPort +NMSettingTeamPort:link-watchers, object property in NMSettingOvs
-NMSettingTeamPort:prio, object property in NMSettingTeamPort +NMSettingTeamPort:prio, object property in NMSettingOvs
-NMSettingTeamPort:queue-id, object property in NMSettingTeamPort +NMSettingTeamPort:queue-id, object property in NMSettingOvs
-NMSettingTeamPort:sticky, object property in NMSettingTeamPort +NMSettingTeamPort:sticky, object property in NMSettingOvs
-NMSettingTun, struct in NMSettingTun +NMSettingTun, struct in NMSettingOvs
-NMSettingTun:group, object property in NMSettingTun +NMSettingTun:group, object property in NMSettingOvs
-NMSettingTun:mode, object property in NMSettingTun +NMSettingTun:mode, object property in NMSettingOvs
-NMSettingTun:multi-queue, object property in NMSettingTun +NMSettingTun:multi-queue, object property in NMSettingOvs
-NMSettingTun:owner, object property in NMSettingTun +NMSettingTun:owner, object property in NMSettingOvs
-NMSettingTun:pi, object property in NMSettingTun +NMSettingTun:pi, object property in NMSettingOvs
-NMSettingTun:vnet-hdr, object property in NMSettingTun +NMSettingTun:vnet-hdr, object property in NMSettingOvs
@@ -3169,55 +3149,55 @@ NMSettingVeth:peer, object property in NMSettingOvs
-NMSettingVlan, struct in NMSettingVlan +NMSettingVlan, struct in NMSettingOvs
-NMSettingVlan:egress-priority-map, object property in NMSettingVlan +NMSettingVlan:egress-priority-map, object property in NMSettingOvs
-NMSettingVlan:flags, object property in NMSettingVlan +NMSettingVlan:flags, object property in NMSettingOvs
-NMSettingVlan:id, object property in NMSettingVlan +NMSettingVlan:id, object property in NMSettingOvs
-NMSettingVlan:ingress-priority-map, object property in NMSettingVlan +NMSettingVlan:ingress-priority-map, object property in NMSettingOvs
-NMSettingVlan:parent, object property in NMSettingVlan +NMSettingVlan:parent, object property in NMSettingOvs
-NMSettingVpn, struct in NMSettingVpn +NMSettingVpn, struct in NMSettingOvs
-NMSettingVpn:data, object property in NMSettingVpn +NMSettingVpn:data, object property in NMSettingOvs
-NMSettingVpn:persistent, object property in NMSettingVpn +NMSettingVpn:persistent, object property in NMSettingOvs
-NMSettingVpn:secrets, object property in NMSettingVpn +NMSettingVpn:secrets, object property in NMSettingOvs
-NMSettingVpn:service-type, object property in NMSettingVpn +NMSettingVpn:service-type, object property in NMSettingOvs
-NMSettingVpn:timeout, object property in NMSettingVpn +NMSettingVpn:timeout, object property in NMSettingOvs
-NMSettingVpn:user-name, object property in NMSettingVpn +NMSettingVpn:user-name, object property in NMSettingOvs
@@ -3229,71 +3209,71 @@ NMSettingVrf:table, object property in NMSettingOvs
-NMSettingVxlan, struct in NMSettingVxlan +NMSettingVxlan, struct in NMSettingOvs
-NMSettingVxlan:ageing, object property in NMSettingVxlan +NMSettingVxlan:ageing, object property in NMSettingOvs
-NMSettingVxlan:destination-port, object property in NMSettingVxlan +NMSettingVxlan:destination-port, object property in NMSettingOvs
-NMSettingVxlan:id, object property in NMSettingVxlan +NMSettingVxlan:id, object property in NMSettingOvs
-NMSettingVxlan:l2-miss, object property in NMSettingVxlan +NMSettingVxlan:l2-miss, object property in NMSettingOvs
-NMSettingVxlan:l3-miss, object property in NMSettingVxlan +NMSettingVxlan:l3-miss, object property in NMSettingOvs
-NMSettingVxlan:learning, object property in NMSettingVxlan +NMSettingVxlan:learning, object property in NMSettingOvs
-NMSettingVxlan:limit, object property in NMSettingVxlan +NMSettingVxlan:limit, object property in NMSettingOvs
-NMSettingVxlan:local, object property in NMSettingVxlan +NMSettingVxlan:local, object property in NMSettingOvs
-NMSettingVxlan:parent, object property in NMSettingVxlan +NMSettingVxlan:parent, object property in NMSettingOvs
-NMSettingVxlan:proxy, object property in NMSettingVxlan +NMSettingVxlan:proxy, object property in NMSettingOvs
-NMSettingVxlan:remote, object property in NMSettingVxlan +NMSettingVxlan:remote, object property in NMSettingOvs
-NMSettingVxlan:rsc, object property in NMSettingVxlan +NMSettingVxlan:rsc, object property in NMSettingOvs
-NMSettingVxlan:source-port-max, object property in NMSettingVxlan +NMSettingVxlan:source-port-max, object property in NMSettingOvs
-NMSettingVxlan:source-port-min, object property in NMSettingVxlan +NMSettingVxlan:source-port-min, object property in NMSettingOvs
-NMSettingVxlan:tos, object property in NMSettingVxlan +NMSettingVxlan:tos, object property in NMSettingOvs
-NMSettingVxlan:ttl, object property in NMSettingVxlan +NMSettingVxlan:ttl, object property in NMSettingOvs
@@ -3313,75 +3293,79 @@ NMSettingWifiP2P:wps-method, object property in NMSettingOvs
-NMSettingWimax, struct in NMSettingWimax +NMSettingWimax, struct in NMSettingOvs
-NMSettingWimax:mac-address, object property in NMSettingWimax +NMSettingWimax:mac-address, object property in NMSettingOvs
-NMSettingWimax:network-name, object property in NMSettingWimax +NMSettingWimax:network-name, object property in NMSettingOvs
-NMSettingWired, struct in NMSettingWired +NMSettingWired, struct in NMSettingOvs
-NMSettingWired:auto-negotiate, object property in NMSettingWired +NMSettingWired:accept-all-mac-addresses, object property in NMSettingOvs
-NMSettingWired:cloned-mac-address, object property in NMSettingWired +NMSettingWired:auto-negotiate, object property in NMSettingOvs
-NMSettingWired:duplex, object property in NMSettingWired +NMSettingWired:cloned-mac-address, object property in NMSettingOvs
-NMSettingWired:generate-mac-address-mask, object property in NMSettingWired +NMSettingWired:duplex, object property in NMSettingOvs
-NMSettingWired:mac-address, object property in NMSettingWired +NMSettingWired:generate-mac-address-mask, object property in NMSettingOvs
-NMSettingWired:mac-address-blacklist, object property in NMSettingWired +NMSettingWired:mac-address, object property in NMSettingOvs
-NMSettingWired:mtu, object property in NMSettingWired +NMSettingWired:mac-address-blacklist, object property in NMSettingOvs
-NMSettingWired:port, object property in NMSettingWired +NMSettingWired:mtu, object property in NMSettingOvs
-NMSettingWired:s390-nettype, object property in NMSettingWired +NMSettingWired:port, object property in NMSettingOvs
-NMSettingWired:s390-options, object property in NMSettingWired +NMSettingWired:s390-nettype, object property in NMSettingOvs
-NMSettingWired:s390-subchannels, object property in NMSettingWired +NMSettingWired:s390-options, object property in NMSettingOvs
-NMSettingWired:speed, object property in NMSettingWired +NMSettingWired:s390-subchannels, object property in NMSettingOvs
-NMSettingWired:wake-on-lan, object property in NMSettingWired +NMSettingWired:speed, object property in NMSettingOvs
-NMSettingWired:wake-on-lan-password, object property in NMSettingWired +NMSettingWired:wake-on-lan, object property in NMSettingOvs +
+
+
+NMSettingWired:wake-on-lan-password, object property in NMSettingOvs
@@ -3425,79 +3409,79 @@ NMSettingWireGuard:private-key-flags, object property in NMSettingOvs
-NMSettingWireless, struct in NMSettingWireless +NMSettingWireless, struct in NMSettingOvs
-NMSettingWireless:ap-isolation, object property in NMSettingWireless +NMSettingWireless:ap-isolation, object property in NMSettingOvs
-NMSettingWireless:band, object property in NMSettingWireless +NMSettingWireless:band, object property in NMSettingOvs
-NMSettingWireless:bssid, object property in NMSettingWireless +NMSettingWireless:bssid, object property in NMSettingOvs
-NMSettingWireless:channel, object property in NMSettingWireless +NMSettingWireless:channel, object property in NMSettingOvs
-NMSettingWireless:cloned-mac-address, object property in NMSettingWireless +NMSettingWireless:cloned-mac-address, object property in NMSettingOvs
-NMSettingWireless:generate-mac-address-mask, object property in NMSettingWireless +NMSettingWireless:generate-mac-address-mask, object property in NMSettingOvs
-NMSettingWireless:hidden, object property in NMSettingWireless +NMSettingWireless:hidden, object property in NMSettingOvs
-NMSettingWireless:mac-address, object property in NMSettingWireless +NMSettingWireless:mac-address, object property in NMSettingOvs
-NMSettingWireless:mac-address-blacklist, object property in NMSettingWireless +NMSettingWireless:mac-address-blacklist, object property in NMSettingOvs
-NMSettingWireless:mac-address-randomization, object property in NMSettingWireless +NMSettingWireless:mac-address-randomization, object property in NMSettingOvs
-NMSettingWireless:mode, object property in NMSettingWireless +NMSettingWireless:mode, object property in NMSettingOvs
-NMSettingWireless:mtu, object property in NMSettingWireless +NMSettingWireless:mtu, object property in NMSettingOvs
-NMSettingWireless:powersave, object property in NMSettingWireless +NMSettingWireless:powersave, object property in NMSettingOvs
-NMSettingWireless:rate, object property in NMSettingWireless +NMSettingWireless:rate, object property in NMSettingOvs
-NMSettingWireless:seen-bssids, object property in NMSettingWireless +NMSettingWireless:seen-bssids, object property in NMSettingOvs
-NMSettingWireless:ssid, object property in NMSettingWireless +NMSettingWireless:ssid, object property in NMSettingOvs
-NMSettingWireless:tx-power, object property in NMSettingWireless +NMSettingWireless:tx-power, object property in NMSettingOvs
-NMSettingWireless:wake-on-wlan, object property in NMSettingWireless +NMSettingWireless:wake-on-wlan, object property in NMSettingOvs
@@ -3505,87 +3489,87 @@ NMSettingWireGuard:private-key-flags, object property in NMSettingOvs
-NMSettingWirelessSecurity, struct in NMSettingWirelessSecurity +NMSettingWirelessSecurity, struct in NMSettingOvs
-NMSettingWirelessSecurity:auth-alg, object property in NMSettingWirelessSecurity +NMSettingWirelessSecurity:auth-alg, object property in NMSettingOvs
-NMSettingWirelessSecurity:fils, object property in NMSettingWirelessSecurity +NMSettingWirelessSecurity:fils, object property in NMSettingOvs
-NMSettingWirelessSecurity:group, object property in NMSettingWirelessSecurity +NMSettingWirelessSecurity:group, object property in NMSettingOvs
-NMSettingWirelessSecurity:key-mgmt, object property in NMSettingWirelessSecurity +NMSettingWirelessSecurity:key-mgmt, object property in NMSettingOvs
-NMSettingWirelessSecurity:leap-password, object property in NMSettingWirelessSecurity +NMSettingWirelessSecurity:leap-password, object property in NMSettingOvs
-NMSettingWirelessSecurity:leap-password-flags, object property in NMSettingWirelessSecurity +NMSettingWirelessSecurity:leap-password-flags, object property in NMSettingOvs
-NMSettingWirelessSecurity:leap-username, object property in NMSettingWirelessSecurity +NMSettingWirelessSecurity:leap-username, object property in NMSettingOvs
-NMSettingWirelessSecurity:pairwise, object property in NMSettingWirelessSecurity +NMSettingWirelessSecurity:pairwise, object property in NMSettingOvs
-NMSettingWirelessSecurity:pmf, object property in NMSettingWirelessSecurity +NMSettingWirelessSecurity:pmf, object property in NMSettingOvs
-NMSettingWirelessSecurity:proto, object property in NMSettingWirelessSecurity +NMSettingWirelessSecurity:proto, object property in NMSettingOvs
-NMSettingWirelessSecurity:psk, object property in NMSettingWirelessSecurity +NMSettingWirelessSecurity:psk, object property in NMSettingOvs
-NMSettingWirelessSecurity:psk-flags, object property in NMSettingWirelessSecurity +NMSettingWirelessSecurity:psk-flags, object property in NMSettingOvs
-NMSettingWirelessSecurity:wep-key-flags, object property in NMSettingWirelessSecurity +NMSettingWirelessSecurity:wep-key-flags, object property in NMSettingOvs
-NMSettingWirelessSecurity:wep-key-type, object property in NMSettingWirelessSecurity +NMSettingWirelessSecurity:wep-key-type, object property in NMSettingOvs
-NMSettingWirelessSecurity:wep-key0, object property in NMSettingWirelessSecurity +NMSettingWirelessSecurity:wep-key0, object property in NMSettingOvs
-NMSettingWirelessSecurity:wep-key1, object property in NMSettingWirelessSecurity +NMSettingWirelessSecurity:wep-key1, object property in NMSettingOvs
-NMSettingWirelessSecurity:wep-key2, object property in NMSettingWirelessSecurity +NMSettingWirelessSecurity:wep-key2, object property in NMSettingOvs
-NMSettingWirelessSecurity:wep-key3, object property in NMSettingWirelessSecurity +NMSettingWirelessSecurity:wep-key3, object property in NMSettingOvs
-NMSettingWirelessSecurity:wep-tx-keyidx, object property in NMSettingWirelessSecurity +NMSettingWirelessSecurity:wep-tx-keyidx, object property in NMSettingOvs
-NMSettingWirelessSecurity:wps-method, object property in NMSettingWirelessSecurity +NMSettingWirelessSecurity:wps-method, object property in NMSettingOvs
@@ -3629,7 +3613,7 @@ NMSettingWpan:short-address, object property in NMSettingOvs
-NMSimpleConnection, struct in NMSimpleConnection +NMSimpleConnection, struct in NMSettingOvs
@@ -4249,6 +4233,10 @@ nm_auto_unref_nml_dbusobj, macro in
+NM_AVAILABLE_IN_1_32, macro in nm-version +
+
+
NM_AVAILABLE_IN_1_4, macro in nm-version
@@ -5649,6 +5637,14 @@ nm_dbus_path_not_empty, function in
+NM_DEPRECATED_IN_1_32, macro in nm-version +
+
+
+NM_DEPRECATED_IN_1_32_FOR, macro in nm-version +
+
+
NM_DEPRECATED_IN_1_4, macro in nm-version
@@ -7373,10 +7369,26 @@ NM_ETHTOOL_OPTNAME_FEATURE_TX_VLAN_STAG_HW_INSERT, macro in nm-ethtool-utils
+nm_ethtool_optname_is_pause, function in NMSettingEthtool +
+
+
nm_ethtool_optname_is_ring, function in NMSettingEthtool
+NM_ETHTOOL_OPTNAME_PAUSE_AUTONEG, macro in nm-ethtool-utils +
+
+
+NM_ETHTOOL_OPTNAME_PAUSE_RX, macro in nm-ethtool-utils +
+
+
+NM_ETHTOOL_OPTNAME_PAUSE_TX, macro in nm-ethtool-utils +
+
+
NM_ETHTOOL_OPTNAME_RING_RX, macro in nm-ethtool-utils
@@ -7785,6 +7797,10 @@ NM_ETHTOOL_OPTNAME_RING_TX, macro in nm-ethtool-utils
+nm_ip_routing_rule_get_uid_range, function in NMSettingIPConfig +
+
+
nm_ip_routing_rule_is_sealed, function in NMSettingIPConfig
@@ -7861,6 +7877,10 @@ NM_ETHTOOL_OPTNAME_RING_TX, macro in nm-ethtool-utils
+nm_ip_routing_rule_set_uid_range, function in NMSettingIPConfig +
+
+
nm_ip_routing_rule_to_string, function in NMSettingIPConfig
@@ -8037,18 +8057,6 @@ NM_MAJOR_VERSION, macro in nm-version-macros
-nm_meta_setting_infos_by_gtype, function in nm-meta-setting-base-impl -
-
-
-nm_meta_setting_infos_by_name, function in nm-meta-setting-base-impl -
-
-
-nm_meta_setting_info_get_base_type_priority, function in nm-meta-setting-base-impl -
-
-
NM_MICRO_VERSION, macro in nm-version-macros
@@ -12569,6 +12577,10 @@ NM_MINOR_VERSION, macro in nm-version-macros
+NM_SETTING_WIRED_ACCEPT_ALL_MAC_ADDRESSES, macro in NMSettingWired +
+
+
nm_setting_wired_add_mac_blacklist_item, function in NMSettingWired
@@ -12597,6 +12609,10 @@ NM_MINOR_VERSION, macro in nm-version-macros
+nm_setting_wired_get_accept_all_mac_addresses, function in NMSettingWired +
+
+
nm_setting_wired_get_auto_negotiate, function in NMSettingWired
@@ -14137,6 +14153,10 @@ NM_VERSION_1_30, macro in nm-version-macros
+NM_VERSION_1_32, macro in nm-version-macros +
+
+
NM_VERSION_1_4, macro in nm-version-macros
diff --git a/docs/libnm/html/index.html b/docs/libnm/html/index.html index 87013ed2..771e47fa 100644 --- a/docs/libnm/html/index.html +++ b/docs/libnm/html/index.html @@ -15,7 +15,7 @@

- for libnm 1.30.0 + for libnm 1.32.2 The latest version of this documentation can be found on-line at https://developer.gnome.org/libnm/stable/. diff --git a/docs/libnm/html/libnm-nm-dbus-interface.html b/docs/libnm/html/libnm-nm-dbus-interface.html index 4a8561dc..b1999a40 100644 --- a/docs/libnm/html/libnm-nm-dbus-interface.html +++ b/docs/libnm/html/libnm-nm-dbus-interface.html @@ -3777,6 +3777,14 @@ to kernel IFF_LOWER_UP.

  +

NM_DEVICE_INTERFACE_FLAG_PROMISC

+ +

receive all packets. Corresponds to +kernel IFF_PROMISC. Since: 1.32.

+ +  + +

NM_DEVICE_INTERFACE_FLAG_CARRIER

the interface has carrier. In most @@ -3786,6 +3794,14 @@ However some devices have a non-standard carrier detection mechanism.

  + +

NM_DEVICE_INTERFACE_FLAG_LLDP_CLIENT_ENABLED

+ +

the flag to indicate device +LLDP status. Since: 1.32.

+ +  +
diff --git a/docs/libnm/html/libnm-nm-errors.html b/docs/libnm/html/libnm-nm-errors.html index 47574176..7e8b4ede 100644 --- a/docs/libnm/html/libnm-nm-errors.html +++ b/docs/libnm/html/libnm-nm-errors.html @@ -326,7 +326,7 @@ request

enum NMConnectionError

Describes errors that may result from operations involving a NMConnection -or its NMSettings.

+or its NMSettings.

These errors may be returned directly from NMConnection and NMSetting methods, or may be returned from D-Bus operations (eg on NMClient or NMDevice), where they correspond to errors in the diff --git a/docs/libnm/html/libnm-nm-utils.html b/docs/libnm/html/libnm-nm-utils.html index b4e0e2be..9ca51ff9 100644 --- a/docs/libnm/html/libnm-nm-utils.html +++ b/docs/libnm/html/libnm-nm-utils.html @@ -1730,7 +1730,7 @@ nm_utils_uuid_generate (void

Returns

a newly allocated UUID suitable for use as the NMSettingConnection -object's “id”: property. Should be freed with g_free()

+object's “id”: property. Should be freed with g_free()


@@ -2593,6 +2593,12 @@ want to run against older versions of libnm, don't pass

nm_utils_is_uuid ()

gboolean
 nm_utils_is_uuid (const char *str);
+
+

nm_utils_is_uuid has been deprecated since version 1.32 and should not be used in newly-written code.

+

older versions of NetworkManager had a wrong + understanding of what makes a valid UUID. This function can thus + accept some inputs as valid, which in fact are not valid UUIDs.

+

Checks if str is a UUID

diff --git a/docs/libnm/html/libnm-nm-version.html b/docs/libnm/html/libnm-nm-version.html index 3c12ebe9..b8e2b561 100644 --- a/docs/libnm/html/libnm-nm-version.html +++ b/docs/libnm/html/libnm-nm-version.html @@ -143,6 +143,12 @@ NM_DEPRECATED_IN_1_30_FOR() + +#define + +NM_DEPRECATED_IN_1_32_FOR() + +
@@ -298,6 +304,14 @@ #define NM_AVAILABLE_IN_1_30 + +#define +NM_DEPRECATED_IN_1_32 + + +#define +NM_AVAILABLE_IN_1_32 + @@ -407,6 +421,12 @@ NM_DEPRECATED_IN_1_24_FOR ();
    #define NM_DEPRECATED_IN_1_30_FOR(f) G_DEPRECATED_FOR(f)
 
+
+
+

NM_DEPRECATED_IN_1_32_FOR()

+
    #define NM_DEPRECATED_IN_1_32_FOR(f) G_DEPRECATED_FOR(f)
+
+

Types and Values

@@ -623,6 +643,18 @@ NM_DEPRECATED_IN_1_24_FOR ();
    #define NM_AVAILABLE_IN_1_30 G_UNAVAILABLE(1, 30)
 
+
+
+

NM_DEPRECATED_IN_1_32

+
    #define NM_DEPRECATED_IN_1_32        G_DEPRECATED
+
+
+
+
+

NM_AVAILABLE_IN_1_32

+
    #define NM_AVAILABLE_IN_1_32 G_UNAVAILABLE(1, 32)
+
+
-- cgit 1.3.0-6-gf8a5