diff options
Diffstat (limited to 'docs/libnm/html')
48 files changed, 1392 insertions, 8217 deletions
diff --git a/docs/libnm/html/NMClient.html b/docs/libnm/html/NMClient.html index 63380767..302feca4 100644 --- a/docs/libnm/html/NMClient.html +++ b/docs/libnm/html/NMClient.html @@ -1188,10 +1188,35 @@ nm_dns_entry_get_vpn (<em class="parameter"><code><a class="link" href="NMClient <pre class="programlisting"><a class="link" href="NMClient.html" title="NMClient"><span class="returnvalue">NMClient</span></a> * nm_client_new (<em class="parameter"><code><a href="https://developer.gnome.org/gio/unstable/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>, <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre> -<p>Creates a new <a class="link" href="NMClient.html" title="NMClient"><span class="type">NMClient</span></a>.</p> -<p>Note that this will do blocking D-Bus calls to initialize the -client. You can use <a class="link" href="NMClient.html#nm-client-new-async" title="nm_client_new_async ()"><code class="function">nm_client_new_async()</code></a> if you want to avoid -that.</p> +<p>Creates a new <a class="link" href="NMClient.html" title="NMClient"><span class="type">NMClient</span></a> synchronously.</p> +<p>Note that this will block until a NMClient instance is fully initialized. +This does nothing beside calling <a href="https://developer.gnome.org/gio/unstable/GInitable.html#g-initable-new"><code class="function">g_initable_new()</code></a>. You are free to call +<a href="https://developer.gnome.org/gio/unstable/GInitable.html#g-initable-new"><code class="function">g_initable_new()</code></a> or <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-new"><code class="function">g_object_new()</code></a>/<a href="https://developer.gnome.org/gio/unstable/GInitable.html#g-initable-init"><code class="function">g_initable_init()</code></a> directly for more +control, to set GObject properties or get access to the NMClient instance +while it is still initializing.</p> +<p>Using the synchronous initialization creates an <a class="link" href="NMClient.html" title="NMClient"><span class="type">NMClient</span></a> instance +that uses an internal <a href="https://developer.gnome.org/glib/unstable/glib-The-Main-Event-Loop.html#GMainContext"><span class="type">GMainContext</span></a>. 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 <a href="https://developer.gnome.org/glib/unstable/glib-The-Main-Event-Loop.html#GMainContext"><span class="type">GMainContext</span></a>, the events are no longer +in sync with other messages from <a href="https://developer.gnome.org/gio/unstable/GDBusConnection.html#GDBusConnection-struct"><span class="type">GDBusConnection</span></a> (but all events +of the NMClient will themselves still be ordered). +For a serious program, you should therefore avoid these problems by +using <a href="https://developer.gnome.org/gio/unstable/GAsyncInitable.html#g-async-initable-init-async"><code class="function">g_async_initable_init_async()</code></a> or <a class="link" href="NMClient.html#nm-client-new-async" title="nm_client_new_async ()"><code class="function">nm_client_new_async()</code></a> instead. +The sync initialization is still useful for simple scripts or interactive +testing for example via pygobject.</p> +<p>Creating an <a class="link" href="NMClient.html" title="NMClient"><span class="type">NMClient</span></a> instance can only fail for two reasons. First, if you didn't +provide a <a class="link" href="NMClient.html#NM-CLIENT-DBUS-CONNECTION:CAPS" title="NM_CLIENT_DBUS_CONNECTION"><code class="literal">NM_CLIENT_DBUS_CONNECTION</code></a> and the call to <a href="https://developer.gnome.org/gio/unstable/GDBusConnection.html#g-bus-get"><code class="function">g_bus_get()</code></a> +fails. You can avoid that by using <a href="https://developer.gnome.org/gio/unstable/GInitable.html#g-initable-new"><code class="function">g_initable_new()</code></a> 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 <a class="link" href="NMClient.html#nm-client-get-main-context" title="nm_client_get_main_context ()"><code class="function">nm_client_get_main_context()</code></a> alive. That means, +in that case you must continue iterating the context to avoid +leaks. See <a class="link" href="NMClient.html#nm-client-get-context-busy-watcher" title="nm_client_get_context_busy_watcher ()"><code class="function">nm_client_get_context_busy_watcher()</code></a>.</p> +<p>Creating an <a class="link" href="NMClient.html" title="NMClient"><span class="type">NMClient</span></a> instance when NetworkManager is not running +does not cause a failure.</p> <div class="refsect3"> <a name="nm-client-new.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -1226,11 +1251,25 @@ that.</p> nm_client_new_async (<em class="parameter"><code><a href="https://developer.gnome.org/gio/unstable/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>, <em class="parameter"><code><a href="https://developer.gnome.org/gio/unstable/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>, <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre> -<p>Creates a new <a class="link" href="NMClient.html" title="NMClient"><span class="type">NMClient</span></a> and begins asynchronously initializing it. +<p>Creates a new <a class="link" href="NMClient.html" title="NMClient"><span class="type">NMClient</span></a> asynchronously. <em class="parameter"><code>callback</code></em> - will be called when it is done; use -<a class="link" href="NMClient.html#nm-client-new-finish" title="nm_client_new_finish ()"><code class="function">nm_client_new_finish()</code></a> to get the result. Note that on an error, -the callback can be invoked with two first parameters as NULL.</p> + will be called when it is done. Use +<a class="link" href="NMClient.html#nm-client-new-finish" title="nm_client_new_finish ()"><code class="function">nm_client_new_finish()</code></a> to get the result.</p> +<p>This does nothing beside calling <a href="https://developer.gnome.org/gio/unstable/GAsyncInitable.html#g-async-initable-new-async"><code class="function">g_async_initable_new_async()</code></a>. You are free to +call <a href="https://developer.gnome.org/gio/unstable/GAsyncInitable.html#g-async-initable-new-async"><code class="function">g_async_initable_new_async()</code></a> or <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-new"><code class="function">g_object_new()</code></a>/<a href="https://developer.gnome.org/gio/unstable/GAsyncInitable.html#g-async-initable-init-async"><code class="function">g_async_initable_init_async()</code></a> +directly for more control, to set GObject properties or get access to the NMClient +instance while it is still initializing.</p> +<p>Creating an <a class="link" href="NMClient.html" title="NMClient"><span class="type">NMClient</span></a> instance can only fail for two reasons. First, if you didn't +provide a <a class="link" href="NMClient.html#NM-CLIENT-DBUS-CONNECTION:CAPS" title="NM_CLIENT_DBUS_CONNECTION"><code class="literal">NM_CLIENT_DBUS_CONNECTION</code></a> and the call to <a href="https://developer.gnome.org/gio/unstable/GDBusConnection.html#g-bus-get"><code class="function">g_bus_get()</code></a> +fails. You can avoid that by using <a href="https://developer.gnome.org/gio/unstable/GAsyncInitable.html#g-async-initable-new-async"><code class="function">g_async_initable_new_async()</code></a> 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 <a class="link" href="NMClient.html#nm-client-get-main-context" title="nm_client_get_main_context ()"><code class="function">nm_client_get_main_context()</code></a> alive. That means, +in that case you must continue iterating the context to avoid +leaks. See <a class="link" href="NMClient.html#nm-client-get-context-busy-watcher" title="nm_client_get_context_busy_watcher ()"><code class="function">nm_client_get_context_busy_watcher()</code></a>.</p> +<p>Creating an <a class="link" href="NMClient.html" title="NMClient"><span class="type">NMClient</span></a> instance when NetworkManager is not running +does not cause a failure.</p> <div class="refsect3"> <a name="nm-client-new-async.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -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.</p> +for the user, those are all cancelled internally.</p> <p>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.</p> -<p>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. </p> +<p>Note that after the NMClient instance gets destroyed, all outstanding operations +will be cancelled right away. That means, the user needs to iterate the <a href="https://developer.gnome.org/glib/unstable/glib-The-Main-Event-Loop.html#GMainContext"><span class="type">GMainContext</span></a> +a bit longer, but it is guaranteed that the cleanup happens soon after.</p> +<p>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.</p> +<p>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 <a href="https://developer.gnome.org/glib/unstable/glib-The-Main-Event-Loop.html#GMainContext"><span class="type">GMainContext</span></a> afterwards, then you don't need to care when exactly +NMClient is gone completely. </p> <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p> </div> <p class="since">Since: 1.22</p> diff --git a/docs/libnm/html/NMConnection.html b/docs/libnm/html/NMConnection.html index c6529650..a1538913 100644 --- a/docs/libnm/html/NMConnection.html +++ b/docs/libnm/html/NMConnection.html @@ -1405,7 +1405,7 @@ nm_connection_is_type (<em class="parameter"><code><a class="link" href="NMConne <em class="parameter"><code>const <span class="type">char</span> *type</code></em>);</pre> <p>A convenience function to check if the given <em class="parameter"><code>connection</code></em> is a particular -type (ie wired, Wi-Fi, ppp, etc). Checks the <a class="link" href="NMSettingConnection.html#NMSettingConnection--type" title="The “type” property"><span class="type">“type”</span></a> +type (ie wired, Wi-Fi, ppp, etc). Checks the <a href="NMSettingConnection.html#NMSettingConnection--type"><span class="type">“type”</span></a> property of the connection and matches that against <em class="parameter"><code>type</code></em> .</p> <div class="refsect3"> @@ -2814,8 +2814,8 @@ an <code class="literal">NM_VARIANT_TYPE_CONNECTION</code> dictionary.</p> <hr> <div class="refsect2"> <a name="NMConnectionSerializationFlags"></a><h3>enum NMConnectionSerializationFlags</h3> -<p>These flags determine which properties are serialized when calling when -calling <a class="link" href="NMConnection.html#nm-connection-to-dbus" title="nm_connection_to_dbus ()"><code class="function">nm_connection_to_dbus()</code></a>.</p> +<p>These flags determine which properties are serialized when calling +<a class="link" href="NMConnection.html#nm-connection-to-dbus" title="nm_connection_to_dbus ()"><code class="function">nm_connection_to_dbus()</code></a>.</p> <div class="refsect3"> <a name="NMConnectionSerializationFlags.members"></a><h4>Members</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -2833,24 +2833,65 @@ calling <a class="link" href="NMConnection.html#nm-connection-to-dbus" title="nm <td class="enum_member_annotations"> </td> </tr> <tr> +<td class="enum_member_name"><p><a name="NM-CONNECTION-SERIALIZE-WITH-NON-SECRET:CAPS"></a>NM_CONNECTION_SERIALIZE_WITH_NON_SECRET</p></td> +<td class="enum_member_description"> +<p>serialize properties that are +not secrets. Since 1.32.</p> +</td> +<td class="enum_member_annotations"> </td> +</tr> +<tr> <td class="enum_member_name"><p><a name="NM-CONNECTION-SERIALIZE-NO-SECRETS:CAPS"></a>NM_CONNECTION_SERIALIZE_NO_SECRETS</p></td> <td class="enum_member_description"> -<p>do not include secrets</p> +<p>this is a deprecated alias for +<em class="parameter"><code>NM_CONNECTION_SERIALIZE_WITH_NON_SECRET</code></em> +.</p> +</td> +<td class="enum_member_annotations"> </td> +</tr> +<tr> +<td class="enum_member_name"><p><a name="NM-CONNECTION-SERIALIZE-WITH-SECRETS:CAPS"></a>NM_CONNECTION_SERIALIZE_WITH_SECRETS</p></td> +<td class="enum_member_description"> +<p>serialize all secrets. This flag is +ignored if any of <em class="parameter"><code>NM_CONNECTION_SERIALIZE_WITH_SECRETS_AGENT_OWNED</code></em> +, +<em class="parameter"><code>NM_CONNECTION_SERIALIZE_WITH_SECRETS_SYSTEM_OWNED</code></em> + or +<em class="parameter"><code>NM_CONNECTION_SERIALIZE_WITH_SECRETS_NOT_SAVED</code></em> + is set. Since 1.32.</p> </td> <td class="enum_member_annotations"> </td> </tr> <tr> <td class="enum_member_name"><p><a name="NM-CONNECTION-SERIALIZE-ONLY-SECRETS:CAPS"></a>NM_CONNECTION_SERIALIZE_ONLY_SECRETS</p></td> <td class="enum_member_description"> -<p>only serialize secrets</p> +<p>a deprecated alias for +<em class="parameter"><code>NM_CONNECTION_SERIALIZE_WITH_SECRETS</code></em> +.</p> </td> <td class="enum_member_annotations"> </td> </tr> <tr> <td class="enum_member_name"><p><a name="NM-CONNECTION-SERIALIZE-WITH-SECRETS-AGENT-OWNED:CAPS"></a>NM_CONNECTION_SERIALIZE_WITH_SECRETS_AGENT_OWNED</p></td> <td class="enum_member_description"> -<p>if set, only secrets that -are agent owned will be serialized. Since: 1.20.</p> +<p>serialize agent-owned +secrets. Since: 1.20.</p> +</td> +<td class="enum_member_annotations"> </td> +</tr> +<tr> +<td class="enum_member_name"><p><a name="NM-CONNECTION-SERIALIZE-WITH-SECRETS-SYSTEM-OWNED:CAPS"></a>NM_CONNECTION_SERIALIZE_WITH_SECRETS_SYSTEM_OWNED</p></td> +<td class="enum_member_description"> +<p>serialize system-owned +secrets. Since: 1.32.</p> +</td> +<td class="enum_member_annotations"> </td> +</tr> +<tr> +<td class="enum_member_name"><p><a name="NM-CONNECTION-SERIALIZE-WITH-SECRETS-NOT-SAVED:CAPS"></a>NM_CONNECTION_SERIALIZE_WITH_SECRETS_NOT_SAVED</p></td> +<td class="enum_member_description"> +<p>serialize secrets that +are marked as never saved. Since: 1.32.</p> </td> <td class="enum_member_annotations"> </td> </tr> diff --git a/docs/libnm/html/NMDevice.html b/docs/libnm/html/NMDevice.html index 79776fc6..e21edf8c 100644 --- a/docs/libnm/html/NMDevice.html +++ b/docs/libnm/html/NMDevice.html @@ -452,10 +452,10 @@ </tr> <tr> <td class="function_type"> -<a class="link" href="NMDevice.html#NMLldpNeighbor"><span class="returnvalue">NMLldpNeighbor</span></a> * +<span class="returnvalue">void</span> </td> <td class="function_name"> -<a class="link" href="NMDevice.html#nm-lldp-neighbor-new" title="nm_lldp_neighbor_new ()">nm_lldp_neighbor_new</a> <span class="c_punctuation">()</span> +<a class="link" href="NMDevice.html#nm-lldp-neighbor-ref" title="nm_lldp_neighbor_ref ()">nm_lldp_neighbor_ref</a> <span class="c_punctuation">()</span> </td> </tr> <tr> @@ -463,31 +463,31 @@ <span class="returnvalue">void</span> </td> <td class="function_name"> -<a class="link" href="NMDevice.html#nm-lldp-neighbor-ref" title="nm_lldp_neighbor_ref ()">nm_lldp_neighbor_ref</a> <span class="c_punctuation">()</span> +<a class="link" href="NMDevice.html#nm-lldp-neighbor-unref" title="nm_lldp_neighbor_unref ()">nm_lldp_neighbor_unref</a> <span class="c_punctuation">()</span> </td> </tr> <tr> <td class="function_type"> -<span class="returnvalue">void</span> +<span class="returnvalue">char</span> ** </td> <td class="function_name"> -<a class="link" href="NMDevice.html#nm-lldp-neighbor-unref" title="nm_lldp_neighbor_unref ()">nm_lldp_neighbor_unref</a> <span class="c_punctuation">()</span> +<a class="link" href="NMDevice.html#nm-lldp-neighbor-get-attr-names" title="nm_lldp_neighbor_get_attr_names ()">nm_lldp_neighbor_get_attr_names</a> <span class="c_punctuation">()</span> </td> </tr> <tr> <td class="function_type"> -<span class="returnvalue">char</span> ** +<a href="https://developer.gnome.org/glib/unstable/glib-GVariant.html#GVariant"><span class="returnvalue">GVariant</span></a> * </td> <td class="function_name"> -<a class="link" href="NMDevice.html#nm-lldp-neighbor-get-attr-names" title="nm_lldp_neighbor_get_attr_names ()">nm_lldp_neighbor_get_attr_names</a> <span class="c_punctuation">()</span> +<a class="link" href="NMDevice.html#nm-lldp-neighbor-get-attr-value" title="nm_lldp_neighbor_get_attr_value ()">nm_lldp_neighbor_get_attr_value</a> <span class="c_punctuation">()</span> </td> </tr> <tr> <td class="function_type"> -<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> +<a class="link" href="NMDevice.html#NMLldpNeighbor"><span class="returnvalue">NMLldpNeighbor</span></a> * </td> <td class="function_name"> -<a class="link" href="NMDevice.html#nm-lldp-neighbor-get-attr-string-value" title="nm_lldp_neighbor_get_attr_string_value ()">nm_lldp_neighbor_get_attr_string_value</a> <span class="c_punctuation">()</span> +<a class="link" href="NMDevice.html#nm-lldp-neighbor-new" title="nm_lldp_neighbor_new ()">nm_lldp_neighbor_new</a> <span class="c_punctuation">()</span> </td> </tr> <tr> @@ -495,22 +495,22 @@ <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> </td> <td class="function_name"> -<a class="link" href="NMDevice.html#nm-lldp-neighbor-get-attr-uint-value" title="nm_lldp_neighbor_get_attr_uint_value ()">nm_lldp_neighbor_get_attr_uint_value</a> <span class="c_punctuation">()</span> +<a class="link" href="NMDevice.html#nm-lldp-neighbor-get-attr-string-value" title="nm_lldp_neighbor_get_attr_string_value ()">nm_lldp_neighbor_get_attr_string_value</a> <span class="c_punctuation">()</span> </td> </tr> <tr> -<td class="function_type">const <a href="https://developer.gnome.org/glib/unstable/glib-GVariantType.html#GVariantType"><span class="returnvalue">GVariantType</span></a> * +<td class="function_type"> +<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> </td> <td class="function_name"> -<a class="link" href="NMDevice.html#nm-lldp-neighbor-get-attr-type" title="nm_lldp_neighbor_get_attr_type ()">nm_lldp_neighbor_get_attr_type</a> <span class="c_punctuation">()</span> +<a class="link" href="NMDevice.html#nm-lldp-neighbor-get-attr-uint-value" title="nm_lldp_neighbor_get_attr_uint_value ()">nm_lldp_neighbor_get_attr_uint_value</a> <span class="c_punctuation">()</span> </td> </tr> <tr> -<td class="function_type"> -<a href="https://developer.gnome.org/glib/unstable/glib-GVariant.html#GVariant"><span class="returnvalue">GVariant</span></a> * +<td class="function_type">const <a href="https://developer.gnome.org/glib/unstable/glib-GVariantType.html#GVariantType"><span class="returnvalue">GVariantType</span></a> * </td> <td class="function_name"> -<a class="link" href="NMDevice.html#nm-lldp-neighbor-get-attr-value" title="nm_lldp_neighbor_get_attr_value ()">nm_lldp_neighbor_get_attr_value</a> <span class="c_punctuation">()</span> +<a class="link" href="NMDevice.html#nm-lldp-neighbor-get-attr-type" title="nm_lldp_neighbor_get_attr_type ()">nm_lldp_neighbor_get_attr_type</a> <span class="c_punctuation">()</span> </td> </tr> </tbody> @@ -652,6 +652,10 @@ <td class="define_keyword">#define</td> <td class="function_name"><a class="link" href="NMDevice.html#NM-DEVICE-HW-ADDRESS:CAPS" title="NM_DEVICE_HW_ADDRESS">NM_DEVICE_HW_ADDRESS</a></td> </tr> +<tr> +<td class="datatype_keyword"> </td> +<td class="function_name"><a class="link" href="NMDevice.html#NMLldpNeighbor-struct" title="NMLldpNeighbor">NMLldpNeighbor</a></td> +</tr> </tbody> </table></div> </div> @@ -2524,23 +2528,11 @@ that can be used on <em class="parameter"><code>device</code></em> </div> <hr> <div class="refsect2"> -<a name="nm-lldp-neighbor-new"></a><h3>nm_lldp_neighbor_new ()</h3> -<pre class="programlisting"><a class="link" href="NMDevice.html#NMLldpNeighbor"><span class="returnvalue">NMLldpNeighbor</span></a> * -nm_lldp_neighbor_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre> -<p>Creates a new <a class="link" href="NMDevice.html#NMLldpNeighbor"><span class="type">NMLldpNeighbor</span></a> object.</p> -<div class="refsect3"> -<a name="nm-lldp-neighbor-new.returns"></a><h4>Returns</h4> -<p>the new <a class="link" href="NMDevice.html#NMLldpNeighbor"><span class="type">NMLldpNeighbor</span></a> object. </p> -<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p> -</div> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> <a name="nm-lldp-neighbor-ref"></a><h3>nm_lldp_neighbor_ref ()</h3> <pre class="programlisting"><span class="returnvalue">void</span> nm_lldp_neighbor_ref (<em class="parameter"><code><a class="link" href="NMDevice.html#NMLldpNeighbor"><span class="type">NMLldpNeighbor</span></a> *neighbor</code></em>);</pre> <p>Increases the reference count of the object.</p> +<p>Since 1.32, ref-counting of <a class="link" href="NMDevice.html#NMLldpNeighbor"><span class="type">NMLldpNeighbor</span></a> is thread-safe.</p> <div class="refsect3"> <a name="nm-lldp-neighbor-ref.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -2565,6 +2557,7 @@ nm_lldp_neighbor_ref (<em class="parameter"><code><a class="link" href="NMDevice nm_lldp_neighbor_unref (<em class="parameter"><code><a class="link" href="NMDevice.html#NMLldpNeighbor"><span class="type">NMLldpNeighbor</span></a> *neighbor</code></em>);</pre> <p>Decreases the reference count of the object. If the reference count reaches zero, the object will be destroyed.</p> +<p>Since 1.32, ref-counting of <a class="link" href="NMDevice.html#NMLldpNeighbor"><span class="type">NMLldpNeighbor</span></a> is thread-safe.</p> <div class="refsect3"> <a name="nm-lldp-neighbor-unref.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -2613,6 +2606,65 @@ nm_lldp_neighbor_get_attr_names (<em class="parameter"><code><a class="link" hre </div> <hr> <div class="refsect2"> +<a name="nm-lldp-neighbor-get-attr-value"></a><h3>nm_lldp_neighbor_get_attr_value ()</h3> +<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-GVariant.html#GVariant"><span class="returnvalue">GVariant</span></a> * +nm_lldp_neighbor_get_attr_value (<em class="parameter"><code><a class="link" href="NMDevice.html#NMLldpNeighbor"><span class="type">NMLldpNeighbor</span></a> *neighbor</code></em>, + <em class="parameter"><code>const <span class="type">char</span> *name</code></em>);</pre> +<p>Gets the value (as a GVariant) of attribute with name <em class="parameter"><code>name</code></em> + on <em class="parameter"><code>neighbor</code></em> +</p> +<div class="refsect3"> +<a name="nm-lldp-neighbor-get-attr-value.parameters"></a><h4>Parameters</h4> +<div class="informaltable"><table class="informaltable" width="100%" border="0"> +<colgroup> +<col width="150px" class="parameters_name"> +<col class="parameters_description"> +<col width="200px" class="parameters_annotations"> +</colgroup> +<tbody> +<tr> +<td class="parameter_name"><p>neighbor</p></td> +<td class="parameter_description"><p>the <a class="link" href="NMDevice.html#NMLldpNeighbor"><span class="type">NMLldpNeighbor</span></a></p></td> +<td class="parameter_annotations"> </td> +</tr> +<tr> +<td class="parameter_name"><p>name</p></td> +<td class="parameter_description"><p>the attribute name</p></td> +<td class="parameter_annotations"> </td> +</tr> +</tbody> +</table></div> +</div> +<div class="refsect3"> +<a name="nm-lldp-neighbor-get-attr-value.returns"></a><h4>Returns</h4> +<p>the value or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the attribute with <em class="parameter"><code>name</code></em> +was +not found. </p> +<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p> +</div> +<p class="since">Since: 1.18</p> +</div> +<hr> +<div class="refsect2"> +<a name="nm-lldp-neighbor-new"></a><h3>nm_lldp_neighbor_new ()</h3> +<pre class="programlisting"><a class="link" href="NMDevice.html#NMLldpNeighbor"><span class="returnvalue">NMLldpNeighbor</span></a> * +nm_lldp_neighbor_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre> +<p>Creates a new <a class="link" href="NMDevice.html#NMLldpNeighbor"><span class="type">NMLldpNeighbor</span></a> object.</p> +<p>Note that <a class="link" href="NMDevice.html#NMLldpNeighbor"><span class="type">NMLldpNeighbor</span></a> 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.</p> +<p>This function is not useful, as there is no public API to +actually modify the (empty) instance.</p> +<div class="refsect3"> +<a name="nm-lldp-neighbor-new.returns"></a><h4>Returns</h4> +<p>the new <a class="link" href="NMDevice.html#NMLldpNeighbor"><span class="type">NMLldpNeighbor</span></a> object. </p> +<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p> +</div> +<p class="since">Since: 1.2</p> +</div> +<hr> +<div class="refsect2"> <a name="nm-lldp-neighbor-get-attr-string-value"></a><h3>nm_lldp_neighbor_get_attr_string_value ()</h3> <pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> nm_lldp_neighbor_get_attr_string_value @@ -2663,7 +2715,7 @@ was found, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macr nm_lldp_neighbor_get_attr_uint_value (<em class="parameter"><code><a class="link" href="NMDevice.html#NMLldpNeighbor"><span class="type">NMLldpNeighbor</span></a> *neighbor</code></em>, <em class="parameter"><code>const <span class="type">char</span> *name</code></em>, <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> *out_value</code></em>);</pre> -<p>Gets the uint value of attribute with name <em class="parameter"><code>name</code></em> +<p>Gets the uint32 value of attribute with name <em class="parameter"><code>name</code></em> on <em class="parameter"><code>neighbor</code></em> </p> <div class="refsect3"> @@ -2695,7 +2747,7 @@ nm_lldp_neighbor_get_attr_uint_value (<em class="parameter"><code><a class="link </div> <div class="refsect3"> <a name="nm-lldp-neighbor-get-attr-uint-value.returns"></a><h4>Returns</h4> -<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if a uint attribute with name <em class="parameter"><code>name</code></em> +<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if a uint32 attribute with name <em class="parameter"><code>name</code></em> was found, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</p> </div> <p class="since">Since: 1.2</p> @@ -2736,46 +2788,6 @@ nm_lldp_neighbor_get_attr_type (<em class="parameter"><code><a class="link" href </div> <p class="since">Since: 1.2</p> </div> -<hr> -<div class="refsect2"> -<a name="nm-lldp-neighbor-get-attr-value"></a><h3>nm_lldp_neighbor_get_attr_value ()</h3> -<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-GVariant.html#GVariant"><span class="returnvalue">GVariant</span></a> * -nm_lldp_neighbor_get_attr_value (<em class="parameter"><code><a class="link" href="NMDevice.html#NMLldpNeighbor"><span class="type">NMLldpNeighbor</span></a> *neighbor</code></em>, - <em class="parameter"><code>const <span class="type">char</span> *name</code></em>);</pre> -<p>Gets the value (as a GVariant) of attribute with name <em class="parameter"><code>name</code></em> - on <em class="parameter"><code>neighbor</code></em> -</p> -<div class="refsect3"> -<a name="nm-lldp-neighbor-get-attr-value.parameters"></a><h4>Parameters</h4> -<div class="informaltable"><table class="informaltable" width="100%" border="0"> -<colgroup> -<col width="150px" class="parameters_name"> -<col class="parameters_description"> -<col width="200px" class="parameters_annotations"> -</colgroup> -<tbody> -<tr> -<td class="parameter_name"><p>neighbor</p></td> -<td class="parameter_description"><p>the <a class="link" href="NMDevice.html#NMLldpNeighbor"><span class="type">NMLldpNeighbor</span></a></p></td> -<td class="parameter_annotations"> </td> -</tr> -<tr> -<td class="parameter_name"><p>name</p></td> -<td class="parameter_description"><p>the attribute name</p></td> -<td class="parameter_annotations"> </td> -</tr> -</tbody> -</table></div> -</div> -<div class="refsect3"> -<a name="nm-lldp-neighbor-get-attr-value.returns"></a><h4>Returns</h4> -<p>the value or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the attribute with <em class="parameter"><code>name</code></em> -was -not found. </p> -<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p> -</div> -<p class="since">Since: 1.18</p> -</div> </div> <div class="refsect1"> <a name="NMDevice.other_details"></a><h2>Types and Values</h2> @@ -2971,6 +2983,83 @@ not found. </p> <pre class="programlisting">#define NM_DEVICE_HW_ADDRESS "hw-address" </pre> </div> +<hr> +<div class="refsect2"> +<a name="NMLldpNeighbor-struct"></a><h3>NMLldpNeighbor</h3> +<pre class="programlisting">typedef struct _NMLldpNeighbor NMLldpNeighbor;</pre> +<p>Supported attributes are:</p> +<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "> +<li class="listitem"><p><a class="link" href="libnm-nm-dbus-interface.html#NM-LLDP-ATTR-CHASSIS-ID-TYPE:CAPS" title="NM_LLDP_ATTR_CHASSIS_ID_TYPE"><span class="type">NM_LLDP_ATTR_CHASSIS_ID_TYPE</span></a> (type: 'u')</p></li> +<li class="listitem"><p><a class="link" href="libnm-nm-dbus-interface.html#NM-LLDP-ATTR-CHASSIS-ID:CAPS" title="NM_LLDP_ATTR_CHASSIS_ID"><span class="type">NM_LLDP_ATTR_CHASSIS_ID</span></a> (type: 's')</p></li> +<li class="listitem"><p><a class="link" href="libnm-nm-dbus-interface.html#NM-LLDP-ATTR-DESTINATION:CAPS" title="NM_LLDP_ATTR_DESTINATION"><span class="type">NM_LLDP_ATTR_DESTINATION</span></a> (type: 's')</p></li> +<li class="listitem"><p><a class="link" href="libnm-nm-dbus-interface.html#NM-LLDP-ATTR-IEEE-802-1-PPVID:CAPS" title="NM_LLDP_ATTR_IEEE_802_1_PPVID"><span class="type">NM_LLDP_ATTR_IEEE_802_1_PPVID</span></a> (type: 'u'). This attribute only reports the first PPVID +and therefore it is deprecated in favor of NM_LLDP_ATTR_IEEE_802_1_PPVIDS which reports +all the PPVID.</p></li> +<li class="listitem"><p><a class="link" href="libnm-nm-dbus-interface.html#NM-LLDP-ATTR-IEEE-802-1-PPVID-FLAGS:CAPS" title="NM_LLDP_ATTR_IEEE_802_1_PPVID_FLAGS"><span class="type">NM_LLDP_ATTR_IEEE_802_1_PPVID_FLAGS</span></a> (type: 'u'). This attribute only reports the first PPVID +and therefore it is deprecated in favor of NM_LLDP_ATTR_IEEE_802_1_PPVIDS which reports +all the PPVID.</p></li> +<li class="listitem"> +<p><a class="link" href="libnm-nm-dbus-interface.html#NM-LLDP-ATTR-IEEE-802-1-PPVIDS:CAPS" title="NM_LLDP_ATTR_IEEE_802_1_PPVIDS"><span class="type">NM_LLDP_ATTR_IEEE_802_1_PPVIDS</span></a> (type: 'aa{sv}')</p> +<p>An array of dictionaries where each element has keys:</p> +<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: circle; "> +<li class="listitem"><p>flags (type: 'u')</p></li> +<li class="listitem"><p>ppvid (type: 'u')</p></li> +</ul></div> +</li> +<li class="listitem"><p><a class="link" href="libnm-nm-dbus-interface.html#NM-LLDP-ATTR-IEEE-802-1-PVID:CAPS" title="NM_LLDP_ATTR_IEEE_802_1_PVID"><span class="type">NM_LLDP_ATTR_IEEE_802_1_PVID</span></a> (type: 'u')</p></li> +<li class="listitem"><p><a class="link" href="libnm-nm-dbus-interface.html#NM-LLDP-ATTR-IEEE-802-1-VID:CAPS" title="NM_LLDP_ATTR_IEEE_802_1_VID"><span class="type">NM_LLDP_ATTR_IEEE_802_1_VID</span></a> (type: 'u'). This attribute only reports the first VLAN +and therefore it is deprecated in favor of NM_LLDP_ATTR_IEEE_802_1_VLANS which reports +all the VLANs.</p></li> +<li class="listitem"><p><a class="link" href="libnm-nm-dbus-interface.html#NM-LLDP-ATTR-IEEE-802-1-VLAN-NAME:CAPS" title="NM_LLDP_ATTR_IEEE_802_1_VLAN_NAME"><span class="type">NM_LLDP_ATTR_IEEE_802_1_VLAN_NAME</span></a> (type: 's'). This attribute only reports the first VLAN +and therefore it is deprecated in favor of NM_LLDP_ATTR_IEEE_802_1_VLANS which reports +all the VLANs.</p></li> +<li class="listitem"> +<p><a class="link" href="libnm-nm-dbus-interface.html#NM-LLDP-ATTR-IEEE-802-1-VLANS:CAPS" title="NM_LLDP_ATTR_IEEE_802_1_VLANS"><span class="type">NM_LLDP_ATTR_IEEE_802_1_VLANS</span></a> (type: 'aa{sv}')</p> +<p>An array of dictionaries where each element has keys:</p> +<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: circle; "> +<li class="listitem"><p>name (type: 's')</p></li> +<li class="listitem"><p>vid (type: 'u')</p></li> +</ul></div> +</li> +<li class="listitem"> +<p><a class="link" href="libnm-nm-dbus-interface.html#NM-LLDP-ATTR-IEEE-802-3-MAC-PHY-CONF:CAPS" title="NM_LLDP_ATTR_IEEE_802_3_MAC_PHY_CONF"><span class="type">NM_LLDP_ATTR_IEEE_802_3_MAC_PHY_CONF</span></a> (type: 'a{sv}')</p> +<p>Dictionary where each element has keys:</p> +<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: circle; "> +<li class="listitem"><p>autoneg (type: 'u')</p></li> +<li class="listitem"><p>operational-mau-type (type: 'u')</p></li> +<li class="listitem"><p>pmd-autoneg-cap (type: 'u')</p></li> +</ul></div> +</li> +<li class="listitem"><p><a class="link" href="libnm-nm-dbus-interface.html#NM-LLDP-ATTR-IEEE-802-3-MAX-FRAME-SIZE:CAPS" title="NM_LLDP_ATTR_IEEE_802_3_MAX_FRAME_SIZE"><span class="type">NM_LLDP_ATTR_IEEE_802_3_MAX_FRAME_SIZE</span></a> (type: 'u')</p></li> +<li class="listitem"> +<p><a class="link" href="libnm-nm-dbus-interface.html#NM-LLDP-ATTR-IEEE-802-3-POWER-VIA-MDI:CAPS" title="NM_LLDP_ATTR_IEEE_802_3_POWER_VIA_MDI"><span class="type">NM_LLDP_ATTR_IEEE_802_3_POWER_VIA_MDI</span></a> (type: 'a{sv}')</p> +<p>Dictionary where each element has keys:</p> +<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: circle; "> +<li class="listitem"><p>mdi-power-support (type: 'u')</p></li> +<li class="listitem"><p>power-class (type: 'u')</p></li> +<li class="listitem"><p>pse-power-pair (type: 'u')</p></li> +</ul></div> +</li> +<li class="listitem"> +<p><a class="link" href="libnm-nm-dbus-interface.html#NM-LLDP-ATTR-MANAGEMENT-ADDRESSES:CAPS" title="NM_LLDP_ATTR_MANAGEMENT_ADDRESSES"><span class="type">NM_LLDP_ATTR_MANAGEMENT_ADDRESSES</span></a> (type: 'aa{sv}')</p> +<p>An array of dictionaries where each element has keys:</p> +<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: circle; "> +<li class="listitem"><p>address (type: 'ay')</p></li> +<li class="listitem"><p>address-subtype (type: 'u')</p></li> +<li class="listitem"><p>interface-number (type: 'u')</p></li> +<li class="listitem"><p>interface-number-subtype (type: 'u')</p></li> +<li class="listitem"><p>object-id (type: 'ay')</p></li> +</ul></div> +</li> +<li class="listitem"><p><a class="link" href="libnm-nm-dbus-interface.html#NM-LLDP-ATTR-PORT-DESCRIPTION:CAPS" title="NM_LLDP_ATTR_PORT_DESCRIPTION"><span class="type">NM_LLDP_ATTR_PORT_DESCRIPTION</span></a> (type: 's')</p></li> +<li class="listitem"><p><a class="link" href="libnm-nm-dbus-interface.html#NM-LLDP-ATTR-PORT-ID-TYPE:CAPS" title="NM_LLDP_ATTR_PORT_ID_TYPE"><span class="type">NM_LLDP_ATTR_PORT_ID_TYPE</span></a> (type: 'u')</p></li> +<li class="listitem"><p><a class="link" href="libnm-nm-dbus-interface.html#NM-LLDP-ATTR-PORT-ID:CAPS" title="NM_LLDP_ATTR_PORT_ID"><span class="type">NM_LLDP_ATTR_PORT_ID</span></a> (type: 's')</p></li> +<li class="listitem"><p><a class="link" href="libnm-nm-dbus-interface.html#NM-LLDP-ATTR-RAW:CAPS" title="NM_LLDP_ATTR_RAW"><span class="type">NM_LLDP_ATTR_RAW</span></a> (type: 'ay')</p></li> +<li class="listitem"><p><a class="link" href="libnm-nm-dbus-interface.html#NM-LLDP-ATTR-SYSTEM-CAPABILITIES:CAPS" title="NM_LLDP_ATTR_SYSTEM_CAPABILITIES"><span class="type">NM_LLDP_ATTR_SYSTEM_CAPABILITIES</span></a> (type: 'u')</p></li> +<li class="listitem"><p><a class="link" href="libnm-nm-dbus-interface.html#NM-LLDP-ATTR-SYSTEM-DESCRIPTION:CAPS" title="NM_LLDP_ATTR_SYSTEM_DESCRIPTION"><span class="type">NM_LLDP_ATTR_SYSTEM_DESCRIPTION</span></a> (type: 's')</p></li> +<li class="listitem"><p><a class="link" href="libnm-nm-dbus-interface.html#NM-LLDP-ATTR-SYSTEM-NAME:CAPS" title="NM_LLDP_ATTR_SYSTEM_NAME"><span class="type">NM_LLDP_ATTR_SYSTEM_NAME</span></a> (type: 's')</p></li> +</ul></div> +</div> </div> </div> <div class="footer"> diff --git a/docs/libnm/html/NMSetting.html b/docs/libnm/html/NMSetting.html index 3ca80cc6..d7b87b47 100644 --- a/docs/libnm/html/NMSetting.html +++ b/docs/libnm/html/NMSetting.html @@ -16,8 +16,7 @@ <td width="100%" align="left" class="shortcuts"> <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> <a href="#NMSetting.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> - <a href="#NMSetting.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties"> <span class="dim">|</span> - <a href="#NMSetting.properties" class="shortcut">Properties</a></span> + <a href="#NMSetting.object-hierarchy" class="shortcut">Object Hierarchy</a></span> </td> <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> <td><a accesskey="u" href="ch03.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> @@ -226,22 +225,6 @@ </table></div> </div> <div class="refsect1"> -<a name="NMSetting.properties"></a><h2>Properties</h2> -<div class="informaltable"><table class="informaltable" border="0"> -<colgroup> -<col width="150px" class="properties_type"> -<col width="300px" class="properties_name"> -<col width="200px" class="properties_flags"> -</colgroup> -<tbody><tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSetting.html#NMSetting--name" title="The “name” property">name</a></td> -<td class="property_flags">Read</td> -</tr></tbody> -</table></div> -</div> -<div class="refsect1"> <a name="NMSetting.other"></a><h2>Types and Values</h2> <div class="informaltable"><table class="informaltable" width="100%" border="0"> <colgroup> @@ -278,10 +261,6 @@ <td class="function_name"><a class="link" href="NMSetting.html#NMSettingMacRandomization" title="enum NMSettingMacRandomization">NMSettingMacRandomization</a></td> </tr> <tr> -<td class="datatype_keyword"> </td> -<td class="function_name"><a class="link" href="NMSetting.html#NMSetting-struct" title="NMSetting">NMSetting</a></td> -</tr> -<tr> <td class="datatype_keyword">enum</td> <td class="function_name"><a class="link" href="NMSetting.html#NMSettingDiffResult" title="enum NMSettingDiffResult">NMSettingDiffResult</a></td> </tr> @@ -296,58 +275,6 @@ <span class="lineart">╰──</span> NMSettingMacRandomization <a href="/usr/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html">GFlags</a> <span class="lineart">╰──</span> NMSettingSecretFlags - <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a> - <span class="lineart">╰──</span> NMSetting - <span class="lineart">├──</span> <a class="link" href="NMSetting6Lowpan.html" title="NMSetting6Lowpan">NMSetting6Lowpan</a> - <span class="lineart">├──</span> <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingAdsl.html" title="NMSettingAdsl">NMSettingAdsl</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingBluetooth.html" title="NMSettingBluetooth">NMSettingBluetooth</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingBond.html" title="NMSettingBond">NMSettingBond</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingBridge.html" title="NMSettingBridge">NMSettingBridge</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingBridgePort.html" title="NMSettingBridgePort">NMSettingBridgePort</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingCdma.html" title="NMSettingCdma">NMSettingCdma</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingConnection.html" title="NMSettingConnection">NMSettingConnection</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingDcb.html" title="NMSettingDcb">NMSettingDcb</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingDummy.html" title="NMSettingDummy">NMSettingDummy</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingEthtool.html" title="NMSettingEthtool">NMSettingEthtool</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingGeneric.html" title="NMSettingGeneric">NMSettingGeneric</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingGsm.html" title="NMSettingGsm">NMSettingGsm</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingHostname.html" title="NMSettingHostname">NMSettingHostname</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingInfiniband.html" title="NMSettingInfiniband">NMSettingInfiniband</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig">NMSettingIPConfig</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingIPTunnel.html" title="NMSettingIPTunnel">NMSettingIPTunnel</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingMacsec.html" title="NMSettingMacsec">NMSettingMacsec</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingMacvlan.html" title="NMSettingMacvlan">NMSettingMacvlan</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingMatch.html" title="NMSettingMatch">NMSettingMatch</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingOlpcMesh.html" title="NMSettingOlpcMesh">NMSettingOlpcMesh</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingOvsBridge.html" title="NMSettingOvsBridge">NMSettingOvsBridge</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingOvsDpdk.html" title="NMSettingOvsDpdk">NMSettingOvsDpdk</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingOvsExternalIDs.html" title="NMSettingOvsExternalIDs">NMSettingOvsExternalIDs</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingOvsInterface.html" title="NMSettingOvsInterface">NMSettingOvsInterface</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingOvsPatch.html" title="NMSettingOvsPatch">NMSettingOvsPatch</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingOvsPort.html" title="NMSettingOvsPort">NMSettingOvsPort</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingPpp.html" title="NMSettingPpp">NMSettingPpp</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingPppoe.html" title="NMSettingPppoe">NMSettingPppoe</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingProxy.html" title="NMSettingProxy">NMSettingProxy</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingSerial.html" title="NMSettingSerial">NMSettingSerial</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingSriov.html" title="NMSettingSriov">NMSettingSriov</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingTCConfig.html" title="NMSettingTCConfig">NMSettingTCConfig</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingTeam.html" title="NMSettingTeam">NMSettingTeam</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingTeamPort.html" title="NMSettingTeamPort">NMSettingTeamPort</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingTun.html" title="NMSettingTun">NMSettingTun</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingUser.html" title="NMSettingUser">NMSettingUser</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingVeth.html" title="NMSettingVeth">NMSettingVeth</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingVlan.html" title="NMSettingVlan">NMSettingVlan</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingVpn.html" title="NMSettingVpn">NMSettingVpn</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingVrf.html" title="NMSettingVrf">NMSettingVrf</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingVxlan.html" title="NMSettingVxlan">NMSettingVxlan</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingWifiP2P.html" title="NMSettingWifiP2P">NMSettingWifiP2P</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingWimax.html" title="NMSettingWimax">NMSettingWimax</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingWired.html" title="NMSettingWired">NMSettingWired</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingWireGuard.html" title="NMSettingWireGuard">NMSettingWireGuard</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingWireless.html" title="NMSettingWireless">NMSettingWireless</a> - <span class="lineart">├──</span> <a class="link" href="NMSettingWirelessSecurity.html" title="NMSettingWirelessSecurity">NMSettingWirelessSecurity</a> - <span class="lineart">╰──</span> <a class="link" href="NMSettingWpan.html" title="NMSettingWpan">NMSettingWpan</a> </pre> </div> <div class="refsect1"> @@ -1474,13 +1401,6 @@ overridden by user-controlled defaults configuration, is "never".</p> </div> <hr> <div class="refsect2"> -<a name="NMSetting-struct"></a><h3>NMSetting</h3> -<pre class="programlisting">typedef struct _NMSetting NMSetting;</pre> -<p>The NMSetting struct contains only private data. -It should only be accessed through the functions described below.</p> -</div> -<hr> -<div class="refsect2"> <a name="NMSettingDiffResult"></a><h3>enum NMSettingDiffResult</h3> <p>These values indicate the result of a setting difference operation.</p> <div class="refsect3"> @@ -1536,19 +1456,6 @@ if you specify <em class="parameter"><code>NM_SETTING_COMPARE_FLAG_DIFF_RESULT_W </div> </div> </div> -<div class="refsect1"> -<a name="NMSetting.property-details"></a><h2>Property Details</h2> -<div class="refsect2"> -<a name="NMSetting--name"></a><h3>The <code class="literal">“name”</code> property</h3> -<pre class="programlisting"> “name” <span class="type">char</span> *</pre> -<p>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".</p> -<p>Owner: NMSetting</p> -<p>Flags: Read</p> -<p>Default value: NULL</p> -</div> -</div> </div> <div class="footer"> <hr>Generated by GTK-Doc V1.33.0</div> diff --git a/docs/libnm/html/NMSetting8021x.html b/docs/libnm/html/NMSetting8021x.html index 8917e7b4..be3880c4 100644 --- a/docs/libnm/html/NMSetting8021x.html +++ b/docs/libnm/html/NMSetting8021x.html @@ -16,8 +16,7 @@ <td width="100%" align="left" class="shortcuts"> <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> <a href="#NMSetting8021x.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> - <a href="#NMSetting8021x.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties"> <span class="dim">|</span> - <a href="#NMSetting8021x.properties" class="shortcut">Properties</a></span> + <a href="#NMSetting8021x.object-hierarchy" class="shortcut">Object Hierarchy</a></span> </td> <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> <td><a accesskey="u" href="ch03.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> @@ -726,284 +725,6 @@ </table></div> </div> <div class="refsect1"> -<a name="NMSetting8021x.properties"></a><h2>Properties</h2> -<div class="informaltable"><table class="informaltable" border="0"> -<colgroup> -<col width="150px" class="properties_type"> -<col width="300px" class="properties_name"> -<col width="200px" class="properties_flags"> -</colgroup> -<tbody> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--altsubject-matches" title="The “altsubject-matches” property">altsubject-matches</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--anonymous-identity" title="The “anonymous-identity” property">anonymous-identity</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><span class="type">int</span></td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--auth-timeout" title="The “auth-timeout” property">auth-timeout</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<a href="https://developer.gnome.org/glib/unstable/glib-Byte-Arrays.html#GBytes"><span class="type">GBytes</span></a> *</td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--ca-cert" title="The “ca-cert” property">ca-cert</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--ca-cert-password" title="The “ca-cert-password” property">ca-cert-password</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a></td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--ca-cert-password-flags" title="The “ca-cert-password-flags” property">ca-cert-password-flags</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--ca-path" title="The “ca-path” property">ca-path</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<a href="https://developer.gnome.org/glib/unstable/glib-Byte-Arrays.html#GBytes"><span class="type">GBytes</span></a> *</td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--client-cert" title="The “client-cert” property">client-cert</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--client-cert-password" title="The “client-cert-password” property">client-cert-password</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a></td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--client-cert-password-flags" title="The “client-cert-password-flags” property">client-cert-password-flags</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--domain-match" title="The “domain-match” property">domain-match</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--domain-suffix-match" title="The “domain-suffix-match” property">domain-suffix-match</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--eap" title="The “eap” property">eap</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--identity" title="The “identity” property">identity</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--optional" title="The “optional” property">optional</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--pac-file" title="The “pac-file” property">pac-file</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--password" title="The “password” property">password</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a></td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--password-flags" title="The “password-flags” property">password-flags</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<a href="https://developer.gnome.org/glib/unstable/glib-Byte-Arrays.html#GBytes"><span class="type">GBytes</span></a> *</td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--password-raw" title="The “password-raw” property">password-raw</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a></td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--password-raw-flags" title="The “password-raw-flags” property">password-raw-flags</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--phase1-auth-flags" title="The “phase1-auth-flags” property">phase1-auth-flags</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--phase1-fast-provisioning" title="The “phase1-fast-provisioning” property">phase1-fast-provisioning</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--phase1-peaplabel" title="The “phase1-peaplabel” property">phase1-peaplabel</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--phase1-peapver" title="The “phase1-peapver” property">phase1-peapver</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-altsubject-matches" title="The “phase2-altsubject-matches” property">phase2-altsubject-matches</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-auth" title="The “phase2-auth” property">phase2-auth</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-autheap" title="The “phase2-autheap” property">phase2-autheap</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<a href="https://developer.gnome.org/glib/unstable/glib-Byte-Arrays.html#GBytes"><span class="type">GBytes</span></a> *</td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-ca-cert" title="The “phase2-ca-cert” property">phase2-ca-cert</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-ca-cert-password" title="The “phase2-ca-cert-password” property">phase2-ca-cert-password</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a></td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-ca-cert-password-flags" title="The “phase2-ca-cert-password-flags” property">phase2-ca-cert-password-flags</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-ca-path" title="The “phase2-ca-path” property">phase2-ca-path</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<a href="https://developer.gnome.org/glib/unstable/glib-Byte-Arrays.html#GBytes"><span class="type">GBytes</span></a> *</td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-client-cert" title="The “phase2-client-cert” property">phase2-client-cert</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-client-cert-password" title="The “phase2-client-cert-password” property">phase2-client-cert-password</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a></td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-client-cert-password-flags" title="The “phase2-client-cert-password-flags” property">phase2-client-cert-password-flags</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-domain-match" title="The “phase2-domain-match” property">phase2-domain-match</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-domain-suffix-match" title="The “phase2-domain-suffix-match” property">phase2-domain-suffix-match</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<a href="https://developer.gnome.org/glib/unstable/glib-Byte-Arrays.html#GBytes"><span class="type">GBytes</span></a> *</td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-private-key" title="The “phase2-private-key” property">phase2-private-key</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-private-key-password" title="The “phase2-private-key-password” property">phase2-private-key-password</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a></td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-private-key-password-flags" title="The “phase2-private-key-password-flags” property">phase2-private-key-password-flags</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-subject-match" title="The “phase2-subject-match” property">phase2-subject-match</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--pin" title="The “pin” property">pin</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a></td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--pin-flags" title="The “pin-flags” property">pin-flags</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<a href="https://developer.gnome.org/glib/unstable/glib-Byte-Arrays.html#GBytes"><span class="type">GBytes</span></a> *</td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--private-key" title="The “private-key” property">private-key</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--private-key-password" title="The “private-key-password” property">private-key-password</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a></td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--private-key-password-flags" title="The “private-key-password-flags” property">private-key-password-flags</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--subject-match" title="The “subject-match” property">subject-match</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x--system-ca-certs" title="The “system-ca-certs” property">system-ca-certs</a></td> -<td class="property_flags">Read / Write</td> -</tr> -</tbody> -</table></div> -</div> -<div class="refsect1"> <a name="NMSetting8021x.other"></a><h2>Types and Values</h2> <div class="informaltable"><table class="informaltable" width="100%" border="0"> <colgroup> @@ -1223,10 +944,6 @@ <td class="define_keyword">#define</td> <td class="function_name"><a class="link" href="NMSetting8021x.html#NM-SETTING-802-1X-OPTIONAL:CAPS" title="NM_SETTING_802_1X_OPTIONAL">NM_SETTING_802_1X_OPTIONAL</a></td> </tr> -<tr> -<td class="datatype_keyword"> </td> -<td class="function_name"><a class="link" href="NMSetting8021x.html#NMSetting8021x-struct" title="NMSetting8021x">NMSetting8021x</a></td> -</tr> </tbody> </table></div> </div> @@ -1237,9 +954,6 @@ <span class="lineart">╰──</span> NMSetting8021xCKScheme <a href="/usr/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html">GFlags</a> <span class="lineart">╰──</span> NMSetting8021xAuthFlags - <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a> - <span class="lineart">╰──</span> <a class="link" href="NMSetting.html" title="NMSetting">NMSetting</a> - <span class="lineart">╰──</span> NMSetting8021x </pre> </div> <div class="refsect1"> @@ -1392,7 +1106,7 @@ nm_setting_802_1x_get_eap_method (<em class="parameter"><code><a class="link" hr nm_setting_802_1x_add_eap_method (<em class="parameter"><code><a class="link" href="NMSetting8021x.html" title="NMSetting8021x"><span class="type">NMSetting8021x</span></a> *setting</code></em>, <em class="parameter"><code>const <span class="type">char</span> *eap</code></em>);</pre> <p>Adds an allowed EAP method. The setting is not valid until at least one -EAP method has been added. See <a class="link" href="NMSetting8021x.html#NMSetting8021x--eap" title="The “eap” property"><span class="type">“eap”</span></a> property for a list of +EAP method has been added. See <a href="NMSetting8021x.html#NMSetting8021x--eap"><span class="type">“eap”</span></a> property for a list of allowed EAP methods.</p> <div class="refsect3"> <a name="nm-setting-802-1x-add-eap-method.parameters"></a><h4>Parameters</h4> @@ -1545,7 +1259,7 @@ nm_setting_802_1x_get_anonymous_identity (<em class="parameter"><code><a class="link" href="NMSetting8021x.html" title="NMSetting8021x"><span class="type">NMSetting8021x</span></a> *setting</code></em>);</pre> <p>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 <a class="link" href="NMSetting8021x.html#NMSetting8021x--identity" title="The “identity” property"><span class="type">“identity”</span></a> in +inner "phase 2" authentication will use the <a href="NMSetting8021x.html#NMSetting8021x--identity"><span class="type">“identity”</span></a> in a secure form, if applicable for that EAP method.</p> <div class="refsect3"> <a name="nm-setting-802-1x-get-anonymous-identity.parameters"></a><h4>Parameters</h4> @@ -1598,9 +1312,9 @@ nm_setting_802_1x_get_pac_file (<em class="parameter"><code><a class="link" href <a name="nm-setting-802-1x-get-system-ca-certs"></a><h3>nm_setting_802_1x_get_system_ca_certs ()</h3> <pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> nm_setting_802_1x_get_system_ca_certs (<em class="parameter"><code><a class="link" href="NMSetting8021x.html" title="NMSetting8021x"><span class="type">NMSetting8021x</span></a> *setting</code></em>);</pre> -<p>Sets the <a class="link" href="NMSetting8021x.html#NMSetting8021x--system-ca-certs" title="The “system-ca-certs” property"><span class="type">“system-ca-certs”</span></a> property. The -<a class="link" href="NMSetting8021x.html#NMSetting8021x--ca-path" title="The “ca-path” property"><span class="type">“ca-path”</span></a> and <a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-ca-path" title="The “phase2-ca-path” property"><span class="type">“phase2-ca-path”</span></a> -properties are ignored if the <a class="link" href="NMSetting8021x.html#NMSetting8021x--system-ca-certs" title="The “system-ca-certs” property"><span class="type">“system-ca-certs”</span></a> property is +<p>Sets the <a href="NMSetting8021x.html#NMSetting8021x--system-ca-certs"><span class="type">“system-ca-certs”</span></a> property. The +<a href="NMSetting8021x.html#NMSetting8021x--ca-path"><span class="type">“ca-path”</span></a> and <a href="NMSetting8021x.html#NMSetting8021x--phase2-ca-path"><span class="type">“phase2-ca-path”</span></a> +properties are ignored if the <a href="NMSetting8021x.html#NMSetting8021x--system-ca-certs"><span class="type">“system-ca-certs”</span></a> property is <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, 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.</p> @@ -1632,7 +1346,7 @@ nm_setting_802_1x_get_ca_path (<em class="parameter"><code><a class="link" href= <p>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 <a class="link" href="NMSetting8021x.html#NMSetting8021x--ca-cert" title="The “ca-cert” property"><span class="type">“ca-cert”</span></a> property to add more CA +used in addition to the <a href="NMSetting8021x.html#NMSetting8021x--ca-cert"><span class="type">“ca-cert”</span></a> property to add more CA certificates for verifying the network to client.</p> <div class="refsect3"> <a name="nm-setting-802-1x-get-ca-path.parameters"></a><h4>Parameters</h4> @@ -1662,7 +1376,7 @@ nm_setting_802_1x_get_phase2_ca_path (<em class="parameter"><code><a class="link <p>Returns the path of the "phase 2" 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 <a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-ca-cert" title="The “phase2-ca-cert” property"><span class="type">“phase2-ca-cert”</span></a> property +This may be used in addition to the <a href="NMSetting8021x.html#NMSetting8021x--phase2-ca-cert"><span class="type">“phase2-ca-cert”</span></a> property to add more CA certificates for verifying the network to client.</p> <div class="refsect3"> <a name="nm-setting-802-1x-get-phase2-ca-path.parameters"></a><h4>Parameters</h4> @@ -1817,7 +1531,7 @@ nm_setting_802_1x_set_ca_cert (<em class="parameter"><code><a class="link" href= <em class="parameter"><code><a class="link" href="NMSetting8021x.html#NMSetting8021xCKScheme" title="enum NMSetting8021xCKScheme"><span class="type">NMSetting8021xCKScheme</span></a> scheme</code></em>, <em class="parameter"><code><a class="link" href="NMSetting8021x.html#NMSetting8021xCKFormat" title="enum NMSetting8021xCKFormat"><span class="type">NMSetting8021xCKFormat</span></a> *out_format</code></em>, <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre> -<p>Reads a certificate from disk and sets the <a class="link" href="NMSetting8021x.html#NMSetting8021x--ca-cert" title="The “ca-cert” property"><span class="type">“ca-cert”</span></a> property +<p>Reads a certificate from disk and sets the <a href="NMSetting8021x.html#NMSetting8021x--ca-cert"><span class="type">“ca-cert”</span></a> property with the raw certificate data if using the <a class="link" href="NMSetting8021x.html#NM-SETTING-802-1X-CK-SCHEME-BLOB:CAPS"><code class="literal">NM_SETTING_802_1X_CK_SCHEME_BLOB</code></a> scheme, or with the path to the certificate file if using the <a class="link" href="NMSetting8021x.html#NM-SETTING-802-1X-CK-SCHEME-PATH:CAPS"><code class="literal">NM_SETTING_802_1X_CK_SCHEME_PATH</code></a> scheme.</p> @@ -1892,7 +1606,7 @@ nm_setting_802_1x_get_ca_cert_password <div class="refsect3"> <a name="nm-setting-802-1x-get-ca-cert-password.returns"></a><h4>Returns</h4> <p> the password used to access the CA certificate stored in -<a class="link" href="NMSetting8021x.html#NMSetting8021x--ca-cert" title="The “ca-cert” property"><span class="type">“ca-cert”</span></a> property. Only makes sense if the certificate +<a href="NMSetting8021x.html#NMSetting8021x--ca-cert"><span class="type">“ca-cert”</span></a> property. Only makes sense if the certificate is stored on a PKCS#11 token that requires a login.</p> </div> <p class="since">Since: 1.8</p> @@ -1921,7 +1635,7 @@ nm_setting_802_1x_get_ca_cert_password_flags <div class="refsect3"> <a name="nm-setting-802-1x-get-ca-cert-password-flags.returns"></a><h4>Returns</h4> <p> the <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a> pertaining to the -<a class="link" href="NMSetting8021x.html#NMSetting8021x--ca-cert-password" title="The “ca-cert-password” property"><span class="type">“ca-cert-password”</span></a></p> +<a href="NMSetting8021x.html#NMSetting8021x--ca-cert-password"><span class="type">“ca-cert-password”</span></a></p> </div> <p class="since">Since: 1.8</p> </div> @@ -1947,7 +1661,7 @@ nm_setting_802_1x_get_subject_match (<em class="parameter"><code><a class="link" </div> <div class="refsect3"> <a name="nm-setting-802-1x-get-subject-match.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSetting8021x.html#NMSetting8021x--subject-match" title="The “subject-match” property"><span class="type">“subject-match”</span></a> property. This is the +<p> the <a href="NMSetting8021x.html#NMSetting8021x--subject-match"><span class="type">“subject-match”</span></a> property. This is the substring to be matched against the subject of the authentication server certificate, or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> no subject verification is to be performed.</p> @@ -1960,7 +1674,7 @@ performed.</p> nm_setting_802_1x_get_num_altsubject_matches (<em class="parameter"><code><a class="link" href="NMSetting8021x.html" title="NMSetting8021x"><span class="type">NMSetting8021x</span></a> *setting</code></em>);</pre> <p>Returns the number of entries in the -<a class="link" href="NMSetting8021x.html#NMSetting8021x--altsubject-matches" title="The “altsubject-matches” property"><span class="type">“altsubject-matches”</span></a> property of this setting.</p> +<a href="NMSetting8021x.html#NMSetting8021x--altsubject-matches"><span class="type">“altsubject-matches”</span></a> property of this setting.</p> <div class="refsect3"> <a name="nm-setting-802-1x-get-num-altsubject-matches.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -2170,7 +1884,7 @@ nm_setting_802_1x_get_domain_suffix_match </div> <div class="refsect3"> <a name="nm-setting-802-1x-get-domain-suffix-match.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSetting8021x.html#NMSetting8021x--domain-suffix-match" title="The “domain-suffix-match” property"><span class="type">“domain-suffix-match”</span></a> property.</p> +<p> the <a href="NMSetting8021x.html#NMSetting8021x--domain-suffix-match"><span class="type">“domain-suffix-match”</span></a> property.</p> </div> <p class="since">Since: 1.2</p> </div> @@ -2196,7 +1910,7 @@ nm_setting_802_1x_get_domain_match (<em class="parameter"><code><a class="link" </div> <div class="refsect3"> <a name="nm-setting-802-1x-get-domain-match.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSetting8021x.html#NMSetting8021x--domain-match" title="The “domain-match” property"><span class="type">“domain-match”</span></a> property.</p> +<p> the <a href="NMSetting8021x.html#NMSetting8021x--domain-match"><span class="type">“domain-match”</span></a> property.</p> </div> <p class="since">Since: 1.24</p> </div> @@ -2330,7 +2044,7 @@ nm_setting_802_1x_set_client_cert (<em class="parameter"><code><a class="link" h <em class="parameter"><code><a class="link" href="NMSetting8021x.html#NMSetting8021xCKScheme" title="enum NMSetting8021xCKScheme"><span class="type">NMSetting8021xCKScheme</span></a> scheme</code></em>, <em class="parameter"><code><a class="link" href="NMSetting8021x.html#NMSetting8021xCKFormat" title="enum NMSetting8021xCKFormat"><span class="type">NMSetting8021xCKFormat</span></a> *out_format</code></em>, <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre> -<p>Reads a certificate from disk and sets the <a class="link" href="NMSetting8021x.html#NMSetting8021x--client-cert" title="The “client-cert” property"><span class="type">“client-cert”</span></a> +<p>Reads a certificate from disk and sets the <a href="NMSetting8021x.html#NMSetting8021x--client-cert"><span class="type">“client-cert”</span></a> property with the raw certificate data if using the <a class="link" href="NMSetting8021x.html#NM-SETTING-802-1X-CK-SCHEME-BLOB:CAPS"><code class="literal">NM_SETTING_802_1X_CK_SCHEME_BLOB</code></a> scheme, or with the path to the certificate file if using the <a class="link" href="NMSetting8021x.html#NM-SETTING-802-1X-CK-SCHEME-PATH:CAPS"><code class="literal">NM_SETTING_802_1X_CK_SCHEME_PATH</code></a> scheme.</p> @@ -2409,7 +2123,7 @@ nm_setting_802_1x_get_client_cert_password <div class="refsect3"> <a name="nm-setting-802-1x-get-client-cert-password.returns"></a><h4>Returns</h4> <p> the password used to access the client certificate stored in -<a class="link" href="NMSetting8021x.html#NMSetting8021x--client-cert" title="The “client-cert” property"><span class="type">“client-cert”</span></a> property. Only makes sense if the certificate +<a href="NMSetting8021x.html#NMSetting8021x--client-cert"><span class="type">“client-cert”</span></a> property. Only makes sense if the certificate is stored on a PKCS#11 token that requires a login.</p> </div> <p class="since">Since: 1.8</p> @@ -2438,7 +2152,7 @@ nm_setting_802_1x_get_client_cert_password_flags <div class="refsect3"> <a name="nm-setting-802-1x-get-client-cert-password-flags.returns"></a><h4>Returns</h4> <p> the <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a> pertaining to the -<a class="link" href="NMSetting8021x.html#NMSetting8021x--client-cert-password" title="The “client-cert-password” property"><span class="type">“client-cert-password”</span></a></p> +<a href="NMSetting8021x.html#NMSetting8021x--client-cert-password"><span class="type">“client-cert-password”</span></a></p> </div> <p class="since">Since: 1.8</p> </div> @@ -2465,7 +2179,7 @@ nm_setting_802_1x_get_phase1_peapver (<em class="parameter"><code><a class="link <div class="refsect3"> <a name="nm-setting-802-1x-get-phase1-peapver.returns"></a><h4>Returns</h4> <p> the "phase 1" PEAP version to be used when authenticating with -EAP-PEAP as contained in the <a class="link" href="NMSetting8021x.html#NMSetting8021x--phase1-peapver" title="The “phase1-peapver” property"><span class="type">“phase1-peapver”</span></a> property. Valid +EAP-PEAP as contained in the <a href="NMSetting8021x.html#NMSetting8021x--phase1-peapver"><span class="type">“phase1-peapver”</span></a> property. Valid values are <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> (unset), "0" (PEAP version 0), and "1" (PEAP version 1).</p> </div> </div> @@ -2494,7 +2208,7 @@ nm_setting_802_1x_get_phase1_peaplabel <a name="nm-setting-802-1x-get-phase1-peaplabel.returns"></a><h4>Returns</h4> <p> whether the "phase 1" PEAP label is new-style or old-style, to be used when authenticating with EAP-PEAP, as contained in the -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase1-peaplabel" title="The “phase1-peaplabel” property"><span class="type">“phase1-peaplabel”</span></a> property. Valid values are <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> (unset), +<a href="NMSetting8021x.html#NMSetting8021x--phase1-peaplabel"><span class="type">“phase1-peaplabel”</span></a> property. Valid values are <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> (unset), "0" (use old-style label), and "1" (use new-style label). See the wpa_supplicant documentation for more details.</p> </div> @@ -2523,7 +2237,7 @@ nm_setting_802_1x_get_phase1_fast_provisioning <div class="refsect3"> <a name="nm-setting-802-1x-get-phase1-fast-provisioning.returns"></a><h4>Returns</h4> <p> whether "phase 1" PEAP fast provisioning should be used, as specified -by the <a class="link" href="NMSetting8021x.html#NMSetting8021x--phase1-fast-provisioning" title="The “phase1-fast-provisioning” property"><span class="type">“phase1-fast-provisioning”</span></a> property. See the +by the <a href="NMSetting8021x.html#NMSetting8021x--phase1-fast-provisioning"><span class="type">“phase1-fast-provisioning”</span></a> property. See the wpa_supplicant documentation for more details.</p> </div> </div> @@ -2550,7 +2264,7 @@ nm_setting_802_1x_get_phase2_auth (<em class="parameter"><code><a class="link" h <div class="refsect3"> <a name="nm-setting-802-1x-get-phase2-auth.returns"></a><h4>Returns</h4> <p> the "phase 2" non-EAP (ex MD5) allowed authentication method as -specified by the <a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-auth" title="The “phase2-auth” property"><span class="type">“phase2-auth”</span></a> property.</p> +specified by the <a href="NMSetting8021x.html#NMSetting8021x--phase2-auth"><span class="type">“phase2-auth”</span></a> property.</p> </div> </div> <hr> @@ -2576,7 +2290,7 @@ nm_setting_802_1x_get_phase2_autheap (<em class="parameter"><code><a class="link <div class="refsect3"> <a name="nm-setting-802-1x-get-phase2-autheap.returns"></a><h4>Returns</h4> <p> the "phase 2" EAP-based (ex TLS) allowed authentication method as -specified by the <a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-autheap" title="The “phase2-autheap” property"><span class="type">“phase2-autheap”</span></a> property.</p> +specified by the <a href="NMSetting8021x.html#NMSetting8021x--phase2-autheap"><span class="type">“phase2-autheap”</span></a> property.</p> </div> </div> <hr> @@ -2717,7 +2431,7 @@ nm_setting_802_1x_set_phase2_ca_cert (<em class="parameter"><code><a class="link <em class="parameter"><code><a class="link" href="NMSetting8021x.html#NMSetting8021xCKScheme" title="enum NMSetting8021xCKScheme"><span class="type">NMSetting8021xCKScheme</span></a> scheme</code></em>, <em class="parameter"><code><a class="link" href="NMSetting8021x.html#NMSetting8021xCKFormat" title="enum NMSetting8021xCKFormat"><span class="type">NMSetting8021xCKFormat</span></a> *out_format</code></em>, <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre> -<p>Reads a certificate from disk and sets the <a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-ca-cert" title="The “phase2-ca-cert” property"><span class="type">“phase2-ca-cert”</span></a> +<p>Reads a certificate from disk and sets the <a href="NMSetting8021x.html#NMSetting8021x--phase2-ca-cert"><span class="type">“phase2-ca-cert”</span></a> property with the raw certificate data if using the <a class="link" href="NMSetting8021x.html#NM-SETTING-802-1X-CK-SCHEME-BLOB:CAPS"><code class="literal">NM_SETTING_802_1X_CK_SCHEME_BLOB</code></a> scheme, or with the path to the certificate file if using the <a class="link" href="NMSetting8021x.html#NM-SETTING-802-1X-CK-SCHEME-PATH:CAPS"><code class="literal">NM_SETTING_802_1X_CK_SCHEME_PATH</code></a> scheme.</p> @@ -2792,7 +2506,7 @@ nm_setting_802_1x_get_phase2_ca_cert_password <div class="refsect3"> <a name="nm-setting-802-1x-get-phase2-ca-cert-password.returns"></a><h4>Returns</h4> <p> the password used to access the "phase2" CA certificate stored in -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-ca-cert" title="The “phase2-ca-cert” property"><span class="type">“phase2-ca-cert”</span></a> property. Only makes sense if the certificate +<a href="NMSetting8021x.html#NMSetting8021x--phase2-ca-cert"><span class="type">“phase2-ca-cert”</span></a> property. Only makes sense if the certificate is stored on a PKCS#11 token that requires a login.</p> </div> <p class="since">Since: 1.8</p> @@ -2821,7 +2535,7 @@ nm_setting_802_1x_get_phase2_ca_cert_password_flags <div class="refsect3"> <a name="nm-setting-802-1x-get-phase2-ca-cert-password-flags.returns"></a><h4>Returns</h4> <p> the <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a> pertaining to the -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-private-key-password" title="The “phase2-private-key-password” property"><span class="type">“phase2-private-key-password”</span></a></p> +<a href="NMSetting8021x.html#NMSetting8021x--phase2-private-key-password"><span class="type">“phase2-private-key-password”</span></a></p> </div> <p class="since">Since: 1.8</p> </div> @@ -2848,7 +2562,7 @@ nm_setting_802_1x_get_phase2_subject_match </div> <div class="refsect3"> <a name="nm-setting-802-1x-get-phase2-subject-match.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-subject-match" title="The “phase2-subject-match” property"><span class="type">“phase2-subject-match”</span></a> property. This is +<p> the <a href="NMSetting8021x.html#NMSetting8021x--phase2-subject-match"><span class="type">“phase2-subject-match”</span></a> property. This is the substring to be matched against the subject of the "phase 2" authentication server certificate, or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> no subject verification is to be performed.</p> @@ -2861,7 +2575,7 @@ is to be performed.</p> nm_setting_802_1x_get_num_phase2_altsubject_matches (<em class="parameter"><code><a class="link" href="NMSetting8021x.html" title="NMSetting8021x"><span class="type">NMSetting8021x</span></a> *setting</code></em>);</pre> <p>Returns the number of entries in the -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-altsubject-matches" title="The “phase2-altsubject-matches” property"><span class="type">“phase2-altsubject-matches”</span></a> property of this setting.</p> +<a href="NMSetting8021x.html#NMSetting8021x--phase2-altsubject-matches"><span class="type">“phase2-altsubject-matches”</span></a> property of this setting.</p> <div class="refsect3"> <a name="nm-setting-802-1x-get-num-phase2-altsubject-matches.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -3072,7 +2786,7 @@ nm_setting_802_1x_get_phase2_domain_suffix_match </div> <div class="refsect3"> <a name="nm-setting-802-1x-get-phase2-domain-suffix-match.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-domain-suffix-match" title="The “phase2-domain-suffix-match” property"><span class="type">“phase2-domain-suffix-match”</span></a> property.</p> +<p> the <a href="NMSetting8021x.html#NMSetting8021x--phase2-domain-suffix-match"><span class="type">“phase2-domain-suffix-match”</span></a> property.</p> </div> <p class="since">Since: 1.2</p> </div> @@ -3099,7 +2813,7 @@ nm_setting_802_1x_get_phase2_domain_match </div> <div class="refsect3"> <a name="nm-setting-802-1x-get-phase2-domain-match.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-domain-match" title="The “phase2-domain-match” property"><span class="type">“phase2-domain-match”</span></a> property.</p> +<p> the <a href="NMSetting8021x.html#NMSetting8021x--phase2-domain-match"><span class="type">“phase2-domain-match”</span></a> property.</p> </div> <p class="since">Since: 1.24</p> </div> @@ -3238,7 +2952,7 @@ nm_setting_802_1x_set_phase2_client_cert <em class="parameter"><code><a class="link" href="NMSetting8021x.html#NMSetting8021xCKScheme" title="enum NMSetting8021xCKScheme"><span class="type">NMSetting8021xCKScheme</span></a> scheme</code></em>, <em class="parameter"><code><a class="link" href="NMSetting8021x.html#NMSetting8021xCKFormat" title="enum NMSetting8021xCKFormat"><span class="type">NMSetting8021xCKFormat</span></a> *out_format</code></em>, <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre> -<p>Reads a certificate from disk and sets the <a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-client-cert" title="The “phase2-client-cert” property"><span class="type">“phase2-client-cert”</span></a> +<p>Reads a certificate from disk and sets the <a href="NMSetting8021x.html#NMSetting8021x--phase2-client-cert"><span class="type">“phase2-client-cert”</span></a> property with the raw certificate data if using the <a class="link" href="NMSetting8021x.html#NM-SETTING-802-1X-CK-SCHEME-BLOB:CAPS"><code class="literal">NM_SETTING_802_1X_CK_SCHEME_BLOB</code></a> scheme, or with the path to the certificate file if using the <a class="link" href="NMSetting8021x.html#NM-SETTING-802-1X-CK-SCHEME-PATH:CAPS"><code class="literal">NM_SETTING_802_1X_CK_SCHEME_PATH</code></a> scheme.</p> @@ -3317,7 +3031,7 @@ nm_setting_802_1x_get_phase2_client_cert_password <div class="refsect3"> <a name="nm-setting-802-1x-get-phase2-client-cert-password.returns"></a><h4>Returns</h4> <p> the password used to access the "phase2" client certificate stored in -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-client-cert" title="The “phase2-client-cert” property"><span class="type">“phase2-client-cert”</span></a> property. Only makes sense if the certificate +<a href="NMSetting8021x.html#NMSetting8021x--phase2-client-cert"><span class="type">“phase2-client-cert”</span></a> property. Only makes sense if the certificate is stored on a PKCS#11 token that requires a login.</p> </div> <p class="since">Since: 1.8</p> @@ -3346,7 +3060,7 @@ nm_setting_802_1x_get_phase2_client_cert_password_flags <div class="refsect3"> <a name="nm-setting-802-1x-get-phase2-client-cert-password-flags.returns"></a><h4>Returns</h4> <p> the <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a> pertaining to the -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-client-cert-password" title="The “phase2-client-cert-password” property"><span class="type">“phase2-client-cert-password”</span></a></p> +<a href="NMSetting8021x.html#NMSetting8021x--phase2-client-cert-password"><span class="type">“phase2-client-cert-password”</span></a></p> </div> <p class="since">Since: 1.8</p> </div> @@ -3373,7 +3087,7 @@ nm_setting_802_1x_get_password (<em class="parameter"><code><a class="link" href <div class="refsect3"> <a name="nm-setting-802-1x-get-password.returns"></a><h4>Returns</h4> <p> the password used by the authentication method, if any, as specified -by the <a class="link" href="NMSetting8021x.html#NMSetting8021x--password" title="The “password” property"><span class="type">“password”</span></a> property</p> +by the <a href="NMSetting8021x.html#NMSetting8021x--password"><span class="type">“password”</span></a> property</p> </div> </div> <hr> @@ -3398,7 +3112,7 @@ nm_setting_802_1x_get_password_flags (<em class="parameter"><code><a class="link </div> <div class="refsect3"> <a name="nm-setting-802-1x-get-password-flags.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a> pertaining to the <a class="link" href="NMSetting8021x.html#NMSetting8021x--password" title="The “password” property"><span class="type">“password”</span></a></p> +<p> the <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a> pertaining to the <a href="NMSetting8021x.html#NMSetting8021x--password"><span class="type">“password”</span></a></p> </div> </div> <hr> @@ -3425,7 +3139,7 @@ nm_setting_802_1x_get_password_raw (<em class="parameter"><code><a class="link" <a name="nm-setting-802-1x-get-password-raw.returns"></a><h4>Returns</h4> <p>the password used by the authentication method as a UTF-8-encoded array of bytes, as specified by the -<a class="link" href="NMSetting8021x.html#NMSetting8021x--password-raw" title="The “password-raw” property"><span class="type">“password-raw”</span></a> property. </p> +<a href="NMSetting8021x.html#NMSetting8021x--password-raw"><span class="type">“password-raw”</span></a> property. </p> <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p> </div> </div> @@ -3453,7 +3167,7 @@ nm_setting_802_1x_get_password_raw_flags <div class="refsect3"> <a name="nm-setting-802-1x-get-password-raw-flags.returns"></a><h4>Returns</h4> <p> the <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a> pertaining to the -<a class="link" href="NMSetting8021x.html#NMSetting8021x--password-raw" title="The “password-raw” property"><span class="type">“password-raw”</span></a></p> +<a href="NMSetting8021x.html#NMSetting8021x--password-raw"><span class="type">“password-raw”</span></a></p> </div> </div> <hr> @@ -3479,7 +3193,7 @@ nm_setting_802_1x_get_pin (<em class="parameter"><code><a class="link" href="NMS <div class="refsect3"> <a name="nm-setting-802-1x-get-pin.returns"></a><h4>Returns</h4> <p> the PIN used by the authentication method, if any, as specified -by the <a class="link" href="NMSetting8021x.html#NMSetting8021x--pin" title="The “pin” property"><span class="type">“pin”</span></a> property</p> +by the <a href="NMSetting8021x.html#NMSetting8021x--pin"><span class="type">“pin”</span></a> property</p> </div> </div> <hr> @@ -3505,7 +3219,7 @@ nm_setting_802_1x_get_pin_flags (<em class="parameter"><code><a class="link" hre <div class="refsect3"> <a name="nm-setting-802-1x-get-pin-flags.returns"></a><h4>Returns</h4> <p> the <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a> pertaining to the -<a class="link" href="NMSetting8021x.html#NMSetting8021x--pin" title="The “pin” property"><span class="type">“pin”</span></a></p> +<a href="NMSetting8021x.html#NMSetting8021x--pin"><span class="type">“pin”</span></a></p> </div> </div> <hr> @@ -3649,14 +3363,14 @@ nm_setting_802_1x_set_private_key (<em class="parameter"><code><a class="link" h when EAP-TLS is used as either the "phase 1" or "phase 2" 802.1x authentication method.</p> <p>This function reads a private key from disk and sets the -<a class="link" href="NMSetting8021x.html#NMSetting8021x--private-key" title="The “private-key” property"><span class="type">“private-key”</span></a> property with the private key file data if using +<a href="NMSetting8021x.html#NMSetting8021x--private-key"><span class="type">“private-key”</span></a> property with the private key file data if using the <a class="link" href="NMSetting8021x.html#NM-SETTING-802-1X-CK-SCHEME-BLOB:CAPS"><code class="literal">NM_SETTING_802_1X_CK_SCHEME_BLOB</code></a> scheme, or with the path to the private key file if using the <a class="link" href="NMSetting8021x.html#NM-SETTING-802-1X-CK-SCHEME-PATH:CAPS"><code class="literal">NM_SETTING_802_1X_CK_SCHEME_PATH</code></a> scheme.</p> <p>If <em class="parameter"><code>password</code></em> is given, this function attempts to decrypt the private key to verify that <em class="parameter"><code>password</code></em> is correct, and if it is, updates the -<a class="link" href="NMSetting8021x.html#NMSetting8021x--private-key-password" title="The “private-key-password” property"><span class="type">“private-key-password”</span></a> property with the given <em class="parameter"><code>password</code></em> +<a href="NMSetting8021x.html#NMSetting8021x--private-key-password"><span class="type">“private-key-password”</span></a> property with the given <em class="parameter"><code>password</code></em> . If the decryption is unsuccessful, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> is returned, <em class="parameter"><code>error</code></em> is set, and no @@ -3747,7 +3461,7 @@ nm_setting_802_1x_get_private_key_password <a name="nm-setting-802-1x-get-private-key-password.returns"></a><h4>Returns</h4> <p> the private key password used to decrypt the private key if previously set with <a class="link" href="NMSetting8021x.html#nm-setting-802-1x-set-private-key" title="nm_setting_802_1x_set_private_key ()"><code class="function">nm_setting_802_1x_set_private_key()</code></a>, or the -<a class="link" href="NMSetting8021x.html#NMSetting8021x--private-key-password" title="The “private-key-password” property"><span class="type">“private-key-password”</span></a> property.</p> +<a href="NMSetting8021x.html#NMSetting8021x--private-key-password"><span class="type">“private-key-password”</span></a> property.</p> </div> </div> <hr> @@ -3774,7 +3488,7 @@ nm_setting_802_1x_get_private_key_password_flags <div class="refsect3"> <a name="nm-setting-802-1x-get-private-key-password-flags.returns"></a><h4>Returns</h4> <p> the <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a> pertaining to the -<a class="link" href="NMSetting8021x.html#NMSetting8021x--private-key-password" title="The “private-key-password” property"><span class="type">“private-key-password”</span></a></p> +<a href="NMSetting8021x.html#NMSetting8021x--private-key-password"><span class="type">“private-key-password”</span></a></p> </div> </div> <hr> @@ -3801,7 +3515,7 @@ nm_setting_802_1x_get_private_key_format <div class="refsect3"> <a name="nm-setting-802-1x-get-private-key-format.returns"></a><h4>Returns</h4> <p> the data format of the private key data stored in the -<a class="link" href="NMSetting8021x.html#NMSetting8021x--private-key" title="The “private-key” property"><span class="type">“private-key”</span></a> property</p> +<a href="NMSetting8021x.html#NMSetting8021x--private-key"><span class="type">“private-key”</span></a> property</p> </div> </div> <hr> @@ -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.</p> <p>This function reads a private key from disk and sets the -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-private-key" title="The “phase2-private-key” property"><span class="type">“phase2-private-key”</span></a> property with the private key file data if +<a href="NMSetting8021x.html#NMSetting8021x--phase2-private-key"><span class="type">“phase2-private-key”</span></a> property with the private key file data if using the <a class="link" href="NMSetting8021x.html#NM-SETTING-802-1X-CK-SCHEME-BLOB:CAPS"><code class="literal">NM_SETTING_802_1X_CK_SCHEME_BLOB</code></a> scheme, or with the path to the private key file if using the <a class="link" href="NMSetting8021x.html#NM-SETTING-802-1X-CK-SCHEME-PATH:CAPS"><code class="literal">NM_SETTING_802_1X_CK_SCHEME_PATH</code></a> scheme.</p> <p>If <em class="parameter"><code>password</code></em> is given, this function attempts to decrypt the private key to verify that <em class="parameter"><code>password</code></em> is correct, and if it is, updates the -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-private-key-password" title="The “phase2-private-key-password” property"><span class="type">“phase2-private-key-password”</span></a> property with the given +<a href="NMSetting8021x.html#NMSetting8021x--phase2-private-key-password"><span class="type">“phase2-private-key-password”</span></a> property with the given <em class="parameter"><code>password</code></em> . If the decryption is unsuccessful, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> is returned, <em class="parameter"><code>error</code></em> is @@ -4046,7 +3760,7 @@ nm_setting_802_1x_get_phase2_private_key_password <a name="nm-setting-802-1x-get-phase2-private-key-password.returns"></a><h4>Returns</h4> <p> the private key password used to decrypt the private key if previously set with <a class="link" href="NMSetting8021x.html#nm-setting-802-1x-set-phase2-private-key" title="nm_setting_802_1x_set_phase2_private_key ()"><code class="function">nm_setting_802_1x_set_phase2_private_key()</code></a> or the -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-private-key-password" title="The “phase2-private-key-password” property"><span class="type">“phase2-private-key-password”</span></a> property.</p> +<a href="NMSetting8021x.html#NMSetting8021x--phase2-private-key-password"><span class="type">“phase2-private-key-password”</span></a> property.</p> </div> </div> <hr> @@ -4073,7 +3787,7 @@ nm_setting_802_1x_get_phase2_private_key_password_flags <div class="refsect3"> <a name="nm-setting-802-1x-get-phase2-private-key-password-flags.returns"></a><h4>Returns</h4> <p> the <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a> pertaining to the -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-private-key-password" title="The “phase2-private-key-password” property"><span class="type">“phase2-private-key-password”</span></a></p> +<a href="NMSetting8021x.html#NMSetting8021x--phase2-private-key-password"><span class="type">“phase2-private-key-password”</span></a></p> </div> </div> <hr> @@ -4100,7 +3814,7 @@ nm_setting_802_1x_get_phase2_private_key_format <div class="refsect3"> <a name="nm-setting-802-1x-get-phase2-private-key-format.returns"></a><h4>Returns</h4> <p> the data format of the "phase 2" private key data stored in the -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-private-key" title="The “phase2-private-key” property"><span class="type">“phase2-private-key”</span></a> property</p> +<a href="NMSetting8021x.html#NMSetting8021x--phase2-private-key"><span class="type">“phase2-private-key”</span></a> property</p> </div> </div> <hr> @@ -4135,7 +3849,7 @@ nm_setting_802_1x_get_phase1_auth_flags <a name="nm-setting-802-1x-get-auth-timeout"></a><h3>nm_setting_802_1x_get_auth_timeout ()</h3> <pre class="programlisting"><span class="returnvalue">int</span> nm_setting_802_1x_get_auth_timeout (<em class="parameter"><code><a class="link" href="NMSetting8021x.html" title="NMSetting8021x"><span class="type">NMSetting8021x</span></a> *setting</code></em>);</pre> -<p>Returns the value contained in the <a class="link" href="NMSetting8021x.html#NMSetting8021x--auth-timeout" title="The “auth-timeout” property"><span class="type">“auth-timeout”</span></a> property.</p> +<p>Returns the value contained in the <a href="NMSetting8021x.html#NMSetting8021x--auth-timeout"><span class="type">“auth-timeout”</span></a> property.</p> <div class="refsect3"> <a name="nm-setting-802-1x-get-auth-timeout.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -4163,7 +3877,7 @@ global default value.</p> <a name="nm-setting-802-1x-get-optional"></a><h3>nm_setting_802_1x_get_optional ()</h3> <pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> nm_setting_802_1x_get_optional (<em class="parameter"><code><a class="link" href="NMSetting8021x.html" title="NMSetting8021x"><span class="type">NMSetting8021x</span></a> *setting</code></em>);</pre> -<p>Returns the value contained in the <a class="link" href="NMSetting8021x.html#NMSetting8021x--optional" title="The “optional” property"><span class="type">“optional”</span></a> property.</p> +<p>Returns the value contained in the <a href="NMSetting8021x.html#NMSetting8021x--optional"><span class="type">“optional”</span></a> property.</p> <div class="refsect3"> <a name="nm-setting-802-1x-get-optional.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -4643,648 +4357,6 @@ type.</p> <pre class="programlisting">#define NM_SETTING_802_1X_OPTIONAL "optional" </pre> </div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x-struct"></a><h3>NMSetting8021x</h3> -<pre class="programlisting">typedef struct _NMSetting8021x NMSetting8021x;</pre> -<p>IEEE 802.1x Authentication Settings</p> -</div> -</div> -<div class="refsect1"> -<a name="NMSetting8021x.property-details"></a><h2>Property Details</h2> -<div class="refsect2"> -<a name="NMSetting8021x--altsubject-matches"></a><h3>The <code class="literal">“altsubject-matches”</code> property</h3> -<pre class="programlisting"> “altsubject-matches” <a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></pre> -<p>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.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--anonymous-identity"></a><h3>The <code class="literal">“anonymous-identity”</code> property</h3> -<pre class="programlisting"> “anonymous-identity” <span class="type">char</span> *</pre> -<p>Anonymous identity string for EAP authentication methods. Used as the -unencrypted identity with EAP types that support different tunneled -identity like EAP-TTLS.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--auth-timeout"></a><h3>The <code class="literal">“auth-timeout”</code> property</h3> -<pre class="programlisting"> “auth-timeout” <span class="type">int</span></pre> -<p>A timeout for the authentication. Zero means the global default; if the -global default is not set, the authentication timeout is 25 seconds.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -<p>Allowed values: >= 0</p> -<p>Default value: 0</p> -<p class="since">Since: 1.8</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--ca-cert"></a><h3>The <code class="literal">“ca-cert”</code> property</h3> -<pre class="programlisting"> “ca-cert” <a href="https://developer.gnome.org/glib/unstable/glib-Byte-Arrays.html#GBytes"><span class="type">GBytes</span></a> *</pre> -<p>Contains the CA certificate if used by the EAP method specified in the -<a class="link" href="NMSetting8021x.html#NMSetting8021x--eap" title="The “eap” property"><span class="type">“eap”</span></a> property.</p> -<p>Certificate data is specified using a "scheme"; three are currently -supported: blob, path and pkcs<span class="type">11</span> 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.</p> -<p>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.</p> -<p>Setting this property directly is discouraged; use the -<a class="link" href="NMSetting8021x.html#nm-setting-802-1x-set-ca-cert" title="nm_setting_802_1x_set_ca_cert ()"><code class="function">nm_setting_802_1x_set_ca_cert()</code></a> function instead.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--ca-cert-password"></a><h3>The <code class="literal">“ca-cert-password”</code> property</h3> -<pre class="programlisting"> “ca-cert-password” <span class="type">char</span> *</pre> -<p>The password used to access the CA certificate stored in -<a class="link" href="NMSetting8021x.html#NMSetting8021x--ca-cert" title="The “ca-cert” property"><span class="type">“ca-cert”</span></a> property. Only makes sense if the certificate -is stored on a PKCS#11 token that requires a login.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.8</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--ca-cert-password-flags"></a><h3>The <code class="literal">“ca-cert-password-flags”</code> property</h3> -<pre class="programlisting"> “ca-cert-password-flags” <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a></pre> -<p>Flags indicating how to handle the <a class="link" href="NMSetting8021x.html#NMSetting8021x--ca-cert-password" title="The “ca-cert-password” property"><span class="type">“ca-cert-password”</span></a> property.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -<p class="since">Since: 1.8</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--ca-path"></a><h3>The <code class="literal">“ca-path”</code> property</h3> -<pre class="programlisting"> “ca-path” <span class="type">char</span> *</pre> -<p>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 <a class="link" href="NMSetting8021x.html#NMSetting8021x--ca-cert" title="The “ca-cert” property"><span class="type">“ca-cert”</span></a> property.</p> -<p>If NMSetting8021x:system-ca-certs is enabled and the built-in CA -path is an existing directory, then this setting is ignored.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--client-cert"></a><h3>The <code class="literal">“client-cert”</code> property</h3> -<pre class="programlisting"> “client-cert” <a href="https://developer.gnome.org/glib/unstable/glib-Byte-Arrays.html#GBytes"><span class="type">GBytes</span></a> *</pre> -<p>Contains the client certificate if used by the EAP method specified in -the <a class="link" href="NMSetting8021x.html#NMSetting8021x--eap" title="The “eap” property"><span class="type">“eap”</span></a> property.</p> -<p>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.</p> -<p>Setting this property directly is discouraged; use the -<a class="link" href="NMSetting8021x.html#nm-setting-802-1x-set-client-cert" title="nm_setting_802_1x_set_client_cert ()"><code class="function">nm_setting_802_1x_set_client_cert()</code></a> function instead.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--client-cert-password"></a><h3>The <code class="literal">“client-cert-password”</code> property</h3> -<pre class="programlisting"> “client-cert-password” <span class="type">char</span> *</pre> -<p>The password used to access the client certificate stored in -<a class="link" href="NMSetting8021x.html#NMSetting8021x--client-cert" title="The “client-cert” property"><span class="type">“client-cert”</span></a> property. Only makes sense if the certificate -is stored on a PKCS#11 token that requires a login.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.8</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--client-cert-password-flags"></a><h3>The <code class="literal">“client-cert-password-flags”</code> property</h3> -<pre class="programlisting"> “client-cert-password-flags” <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a></pre> -<p>Flags indicating how to handle the <a class="link" href="NMSetting8021x.html#NMSetting8021x--client-cert-password" title="The “client-cert-password” property"><span class="type">“client-cert-password”</span></a> property.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -<p class="since">Since: 1.8</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--domain-match"></a><h3>The <code class="literal">“domain-match”</code> property</h3> -<pre class="programlisting"> “domain-match” <span class="type">char</span> *</pre> -<p>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.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.24</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--domain-suffix-match"></a><h3>The <code class="literal">“domain-suffix-match”</code> property</h3> -<pre class="programlisting"> “domain-suffix-match” <span class="type">char</span> *</pre> -<p>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.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--eap"></a><h3>The <code class="literal">“eap”</code> property</h3> -<pre class="programlisting"> “eap” <a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></pre> -<p>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.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--identity"></a><h3>The <code class="literal">“identity”</code> property</h3> -<pre class="programlisting"> “identity” <span class="type">char</span> *</pre> -<p>Identity string for EAP authentication methods. Often the user's user or -login name.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--optional"></a><h3>The <code class="literal">“optional”</code> property</h3> -<pre class="programlisting"> “optional” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>Whether the 802.1X authentication is optional. If <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, the activation -will continue even after a timeout or an authentication failure. Setting -the property to <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> is currently allowed only for Ethernet connections. -If set to <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>, the activation can continue only after a successful -authentication.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -<p>Default value: FALSE</p> -<p class="since">Since: 1.22</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--pac-file"></a><h3>The <code class="literal">“pac-file”</code> property</h3> -<pre class="programlisting"> “pac-file” <span class="type">char</span> *</pre> -<p>UTF-8 encoded file path containing PAC for EAP-FAST.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--password"></a><h3>The <code class="literal">“password”</code> property</h3> -<pre class="programlisting"> “password” <span class="type">char</span> *</pre> -<p>UTF-8 encoded password used for EAP authentication methods. If both the -<a class="link" href="NMSetting8021x.html#NMSetting8021x--password" title="The “password” property"><span class="type">“password”</span></a> property and the <a class="link" href="NMSetting8021x.html#NMSetting8021x--password-raw" title="The “password-raw” property"><span class="type">“password-raw”</span></a> -property are specified, <a class="link" href="NMSetting8021x.html#NMSetting8021x--password" title="The “password” property"><span class="type">“password”</span></a> is preferred.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--password-flags"></a><h3>The <code class="literal">“password-flags”</code> property</h3> -<pre class="programlisting"> “password-flags” <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a></pre> -<p>Flags indicating how to handle the <a class="link" href="NMSetting8021x.html#NMSetting8021x--password" title="The “password” property"><span class="type">“password”</span></a> property.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--password-raw"></a><h3>The <code class="literal">“password-raw”</code> property</h3> -<pre class="programlisting"> “password-raw” <a href="https://developer.gnome.org/glib/unstable/glib-Byte-Arrays.html#GBytes"><span class="type">GBytes</span></a> *</pre> -<p>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 -<a class="link" href="NMSetting8021x.html#NMSetting8021x--password" title="The “password” property"><span class="type">“password”</span></a> property and the <a class="link" href="NMSetting8021x.html#NMSetting8021x--password-raw" title="The “password-raw” property"><span class="type">“password-raw”</span></a> -property are specified, <a class="link" href="NMSetting8021x.html#NMSetting8021x--password" title="The “password” property"><span class="type">“password”</span></a> is preferred.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--password-raw-flags"></a><h3>The <code class="literal">“password-raw-flags”</code> property</h3> -<pre class="programlisting"> “password-raw-flags” <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a></pre> -<p>Flags indicating how to handle the <a class="link" href="NMSetting8021x.html#NMSetting8021x--password-raw" title="The “password-raw” property"><span class="type">“password-raw”</span></a> property.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--phase1-auth-flags"></a><h3>The <code class="literal">“phase1-auth-flags”</code> property</h3> -<pre class="programlisting"> “phase1-auth-flags” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>Specifies authentication flags to use in "phase 1" outer -authentication using <a class="link" href="NMSetting8021x.html#NMSetting8021xAuthFlags" title="enum NMSetting8021xAuthFlags"><span class="type">NMSetting8021xAuthFlags</span></a> 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.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -<p>Default value: 0</p> -<p class="since">Since: 1.8</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--phase1-fast-provisioning"></a><h3>The <code class="literal">“phase1-fast-provisioning”</code> property</h3> -<pre class="programlisting"> “phase1-fast-provisioning” <span class="type">char</span> *</pre> -<p>Enables or disables in-line provisioning of EAP-FAST credentials when -FAST is specified as the EAP method in the <a class="link" href="NMSetting8021x.html#NMSetting8021x--eap" title="The “eap” property"><span class="type">“eap”</span></a> 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.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--phase1-peaplabel"></a><h3>The <code class="literal">“phase1-peaplabel”</code> property</h3> -<pre class="programlisting"> “phase1-peaplabel” <span class="type">char</span> *</pre> -<p>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.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--phase1-peapver"></a><h3>The <code class="literal">“phase1-peapver”</code> property</h3> -<pre class="programlisting"> “phase1-peapver” <span class="type">char</span> *</pre> -<p>Forces which PEAP version is used when PEAP is set as the EAP method in -the <a class="link" href="NMSetting8021x.html#NMSetting8021x--eap" title="The “eap” property"><span class="type">“eap”</span></a> 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.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--phase2-altsubject-matches"></a><h3>The <code class="literal">“phase2-altsubject-matches”</code> property</h3> -<pre class="programlisting"> “phase2-altsubject-matches” <a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></pre> -<p>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.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--phase2-auth"></a><h3>The <code class="literal">“phase2-auth”</code> property</h3> -<pre class="programlisting"> “phase2-auth” <span class="type">char</span> *</pre> -<p>Specifies the allowed "phase 2" inner authentication method when an EAP -method that uses an inner TLS tunnel is specified in the <a class="link" href="NMSetting8021x.html#NMSetting8021x--eap" title="The “eap” property"><span class="type">“eap”</span></a> -property. For TTLS this property selects one of the supported non-EAP -inner methods: "pap", "chap", "mschap", "mschapv2" while -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-autheap" title="The “phase2-autheap” property"><span class="type">“phase2-autheap”</span></a> 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 <a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-auth" title="The “phase2-auth” property"><span class="type">“phase2-auth”</span></a> and <a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-autheap" title="The “phase2-autheap” property"><span class="type">“phase2-autheap”</span></a> cannot -be specified.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--phase2-autheap"></a><h3>The <code class="literal">“phase2-autheap”</code> property</h3> -<pre class="programlisting"> “phase2-autheap” <span class="type">char</span> *</pre> -<p>Specifies the allowed "phase 2" inner EAP-based authentication method -when TTLS is specified in the <a class="link" href="NMSetting8021x.html#NMSetting8021x--eap" title="The “eap” property"><span class="type">“eap”</span></a> 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.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--phase2-ca-cert"></a><h3>The <code class="literal">“phase2-ca-cert”</code> property</h3> -<pre class="programlisting"> “phase2-ca-cert” <a href="https://developer.gnome.org/glib/unstable/glib-Byte-Arrays.html#GBytes"><span class="type">GBytes</span></a> *</pre> -<p>Contains the "phase 2" CA certificate if used by the EAP method specified -in the <a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-auth" title="The “phase2-auth” property"><span class="type">“phase2-auth”</span></a> or <a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-autheap" title="The “phase2-autheap” property"><span class="type">“phase2-autheap”</span></a> -properties.</p> -<p>Certificate data is specified using a "scheme"; three are currently -supported: blob, path and pkcs<span class="type">11</span> 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.</p> -<p>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.</p> -<p>Setting this property directly is discouraged; use the -<a class="link" href="NMSetting8021x.html#nm-setting-802-1x-set-phase2-ca-cert" title="nm_setting_802_1x_set_phase2_ca_cert ()"><code class="function">nm_setting_802_1x_set_phase2_ca_cert()</code></a> function instead.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--phase2-ca-cert-password"></a><h3>The <code class="literal">“phase2-ca-cert-password”</code> property</h3> -<pre class="programlisting"> “phase2-ca-cert-password” <span class="type">char</span> *</pre> -<p>The password used to access the "phase2" CA certificate stored in -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-ca-cert" title="The “phase2-ca-cert” property"><span class="type">“phase2-ca-cert”</span></a> property. Only makes sense if the certificate -is stored on a PKCS#11 token that requires a login.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.8</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--phase2-ca-cert-password-flags"></a><h3>The <code class="literal">“phase2-ca-cert-password-flags”</code> property</h3> -<pre class="programlisting"> “phase2-ca-cert-password-flags” <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a></pre> -<p>Flags indicating how to handle the <a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-ca-cert-password" title="The “phase2-ca-cert-password” property"><span class="type">“phase2-ca-cert-password”</span></a> property.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -<p class="since">Since: 1.8</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--phase2-ca-path"></a><h3>The <code class="literal">“phase2-ca-path”</code> property</h3> -<pre class="programlisting"> “phase2-ca-path” <span class="type">char</span> *</pre> -<p>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 <a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-ca-cert" title="The “phase2-ca-cert” property"><span class="type">“phase2-ca-cert”</span></a> property.</p> -<p>If NMSetting8021x:system-ca-certs is enabled and the built-in CA -path is an existing directory, then this setting is ignored.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--phase2-client-cert"></a><h3>The <code class="literal">“phase2-client-cert”</code> property</h3> -<pre class="programlisting"> “phase2-client-cert” <a href="https://developer.gnome.org/glib/unstable/glib-Byte-Arrays.html#GBytes"><span class="type">GBytes</span></a> *</pre> -<p>Contains the "phase 2" client certificate if used by the EAP method -specified in the <a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-auth" title="The “phase2-auth” property"><span class="type">“phase2-auth”</span></a> or -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-autheap" title="The “phase2-autheap” property"><span class="type">“phase2-autheap”</span></a> properties.</p> -<p>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.</p> -<p>Setting this property directly is discouraged; use the -<a class="link" href="NMSetting8021x.html#nm-setting-802-1x-set-phase2-client-cert" title="nm_setting_802_1x_set_phase2_client_cert ()"><code class="function">nm_setting_802_1x_set_phase2_client_cert()</code></a> function instead.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--phase2-client-cert-password"></a><h3>The <code class="literal">“phase2-client-cert-password”</code> property</h3> -<pre class="programlisting"> “phase2-client-cert-password” <span class="type">char</span> *</pre> -<p>The password used to access the "phase2" client certificate stored in -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-client-cert" title="The “phase2-client-cert” property"><span class="type">“phase2-client-cert”</span></a> property. Only makes sense if the certificate -is stored on a PKCS#11 token that requires a login.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.8</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--phase2-client-cert-password-flags"></a><h3>The <code class="literal">“phase2-client-cert-password-flags”</code> property</h3> -<pre class="programlisting"> “phase2-client-cert-password-flags” <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a></pre> -<p>Flags indicating how to handle the <a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-client-cert-password" title="The “phase2-client-cert-password” property"><span class="type">“phase2-client-cert-password”</span></a> property.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -<p class="since">Since: 1.8</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--phase2-domain-match"></a><h3>The <code class="literal">“phase2-domain-match”</code> property</h3> -<pre class="programlisting"> “phase2-domain-match” <span class="type">char</span> *</pre> -<p>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.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.24</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--phase2-domain-suffix-match"></a><h3>The <code class="literal">“phase2-domain-suffix-match”</code> property</h3> -<pre class="programlisting"> “phase2-domain-suffix-match” <span class="type">char</span> *</pre> -<p>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.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--phase2-private-key"></a><h3>The <code class="literal">“phase2-private-key”</code> property</h3> -<pre class="programlisting"> “phase2-private-key” <a href="https://developer.gnome.org/glib/unstable/glib-Byte-Arrays.html#GBytes"><span class="type">GBytes</span></a> *</pre> -<p>Contains the "phase 2" inner private key when the -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-auth" title="The “phase2-auth” property"><span class="type">“phase2-auth”</span></a> or <a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-autheap" title="The “phase2-autheap” property"><span class="type">“phase2-autheap”</span></a> property is -set to "tls".</p> -<p>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 <a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-private-key-password" title="The “phase2-private-key-password” property"><span class="type">“phase2-private-key-password”</span></a> -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 -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-private-key-password" title="The “phase2-private-key-password” property"><span class="type">“phase2-private-key-password”</span></a> property must be set to the -password used to decode the PKCS#12 private key and certificate.</p> -<p>Setting this property directly is discouraged; use the -<a class="link" href="NMSetting8021x.html#nm-setting-802-1x-set-phase2-private-key" title="nm_setting_802_1x_set_phase2_private_key ()"><code class="function">nm_setting_802_1x_set_phase2_private_key()</code></a> function instead.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--phase2-private-key-password"></a><h3>The <code class="literal">“phase2-private-key-password”</code> property</h3> -<pre class="programlisting"> “phase2-private-key-password” <span class="type">char</span> *</pre> -<p>The password used to decrypt the "phase 2" private key specified in the -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-private-key" title="The “phase2-private-key” property"><span class="type">“phase2-private-key”</span></a> 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 <a class="link" href="NMSetting8021x.html#nm-setting-802-1x-set-phase2-private-key" title="nm_setting_802_1x_set_phase2_private_key ()"><code class="function">nm_setting_802_1x_set_phase2_private_key()</code></a> -function.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--phase2-private-key-password-flags"></a><h3>The <code class="literal">“phase2-private-key-password-flags”</code> property</h3> -<pre class="programlisting"> “phase2-private-key-password-flags” <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a></pre> -<p>Flags indicating how to handle the -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-private-key-password" title="The “phase2-private-key-password” property"><span class="type">“phase2-private-key-password”</span></a> property.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--phase2-subject-match"></a><h3>The <code class="literal">“phase2-subject-match”</code> property</h3> -<pre class="programlisting"> “phase2-subject-match” <span class="type">char</span> *</pre> -<p>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.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--pin"></a><h3>The <code class="literal">“pin”</code> property</h3> -<pre class="programlisting"> “pin” <span class="type">char</span> *</pre> -<p>PIN used for EAP authentication methods.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--pin-flags"></a><h3>The <code class="literal">“pin-flags”</code> property</h3> -<pre class="programlisting"> “pin-flags” <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a></pre> -<p>Flags indicating how to handle the <a class="link" href="NMSetting8021x.html#NMSetting8021x--pin" title="The “pin” property"><span class="type">“pin”</span></a> property.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--private-key"></a><h3>The <code class="literal">“private-key”</code> property</h3> -<pre class="programlisting"> “private-key” <a href="https://developer.gnome.org/glib/unstable/glib-Byte-Arrays.html#GBytes"><span class="type">GBytes</span></a> *</pre> -<p>Contains the private key when the <a class="link" href="NMSetting8021x.html#NMSetting8021x--eap" title="The “eap” property"><span class="type">“eap”</span></a> property is set to -"tls".</p> -<p>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 <a class="link" href="NMSetting8021x.html#NMSetting8021x--private-key-password" title="The “private-key-password” property"><span class="type">“private-key-password”</span></a> -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.</p> -<p>Setting this property directly is discouraged; use the -<a class="link" href="NMSetting8021x.html#nm-setting-802-1x-set-private-key" title="nm_setting_802_1x_set_private_key ()"><code class="function">nm_setting_802_1x_set_private_key()</code></a> function instead.</p> -<p>WARNING: <a class="link" href="NMSetting8021x.html#NMSetting8021x--private-key" title="The “private-key” property"><span class="type">“private-key”</span></a> 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.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--private-key-password"></a><h3>The <code class="literal">“private-key-password”</code> property</h3> -<pre class="programlisting"> “private-key-password” <span class="type">char</span> *</pre> -<p>The password used to decrypt the private key specified in the -<a class="link" href="NMSetting8021x.html#NMSetting8021x--private-key" title="The “private-key” property"><span class="type">“private-key”</span></a> 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 <a class="link" href="NMSetting8021x.html#nm-setting-802-1x-set-private-key" title="nm_setting_802_1x_set_private_key ()"><code class="function">nm_setting_802_1x_set_private_key()</code></a> function.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--private-key-password-flags"></a><h3>The <code class="literal">“private-key-password-flags”</code> property</h3> -<pre class="programlisting"> “private-key-password-flags” <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a></pre> -<p>Flags indicating how to handle the <a class="link" href="NMSetting8021x.html#NMSetting8021x--private-key-password" title="The “private-key-password” property"><span class="type">“private-key-password”</span></a> -property.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--subject-match"></a><h3>The <code class="literal">“subject-match”</code> property</h3> -<pre class="programlisting"> “subject-match” <span class="type">char</span> *</pre> -<p>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.</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSetting8021x--system-ca-certs"></a><h3>The <code class="literal">“system-ca-certs”</code> property</h3> -<pre class="programlisting"> “system-ca-certs” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>When <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, overrides the <a class="link" href="NMSetting8021x.html#NMSetting8021x--ca-path" title="The “ca-path” property"><span class="type">“ca-path”</span></a> and -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-ca-path" title="The “phase2-ca-path” property"><span class="type">“phase2-ca-path”</span></a> 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 <a class="link" href="NMSetting8021x.html#NMSetting8021x--ca-cert" title="The “ca-cert” property"><span class="type">“ca-cert”</span></a> and -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-ca-cert" title="The “phase2-ca-cert” property"><span class="type">“phase2-ca-cert”</span></a> properties. If the path provided with ---system-ca-path is rather a file name (bundle of trusted CA certificates), -it overrides <a class="link" href="NMSetting8021x.html#NMSetting8021x--ca-cert" title="The “ca-cert” property"><span class="type">“ca-cert”</span></a> and <a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-ca-cert" title="The “phase2-ca-cert” property"><span class="type">“phase2-ca-cert”</span></a> -properties instead (sets ca_cert/ca_cert2 options for wpa_supplicant).</p> -<p>Owner: NMSetting8021x</p> -<p>Flags: Read / Write</p> -<p>Default value: FALSE</p> -</div> </div> </div> <div class="footer"> diff --git a/docs/libnm/html/NMSettingAdsl.html b/docs/libnm/html/NMSettingAdsl.html index b2efd9eb..5c7ba4c7 100644 --- a/docs/libnm/html/NMSettingAdsl.html +++ b/docs/libnm/html/NMSettingAdsl.html @@ -15,9 +15,7 @@ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle"> <td width="100%" align="left" class="shortcuts"> <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> - <a href="#NMSettingAdsl.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> - <a href="#NMSettingAdsl.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties"> <span class="dim">|</span> - <a href="#NMSettingAdsl.properties" class="shortcut">Properties</a></span> + <a href="#NMSettingAdsl.description" class="shortcut">Description</a></span> </td> <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> <td><a accesskey="u" href="ch03.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> @@ -105,57 +103,6 @@ </table></div> </div> <div class="refsect1"> -<a name="NMSettingAdsl.properties"></a><h2>Properties</h2> -<div class="informaltable"><table class="informaltable" border="0"> -<colgroup> -<col width="150px" class="properties_type"> -<col width="300px" class="properties_name"> -<col width="200px" class="properties_flags"> -</colgroup> -<tbody> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingAdsl.html#NMSettingAdsl--encapsulation" title="The “encapsulation” property">encapsulation</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingAdsl.html#NMSettingAdsl--password" title="The “password” property">password</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a></td> -<td class="property_name"><a class="link" href="NMSettingAdsl.html#NMSettingAdsl--password-flags" title="The “password-flags” property">password-flags</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingAdsl.html#NMSettingAdsl--protocol" title="The “protocol” property">protocol</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingAdsl.html#NMSettingAdsl--username" title="The “username” property">username</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingAdsl.html#NMSettingAdsl--vci" title="The “vci” property">vci</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingAdsl.html#NMSettingAdsl--vpi" title="The “vpi” property">vpi</a></td> -<td class="property_flags">Read / Write</td> -</tr> -</tbody> -</table></div> -</div> -<div class="refsect1"> <a name="NMSettingAdsl.other"></a><h2>Types and Values</h2> <div class="informaltable"><table class="informaltable" width="100%" border="0"> <colgroup> @@ -215,21 +162,10 @@ <td class="define_keyword">#define</td> <td class="function_name"><a class="link" href="NMSettingAdsl.html#NM-SETTING-ADSL-ENCAPSULATION-LLC:CAPS" title="NM_SETTING_ADSL_ENCAPSULATION_LLC">NM_SETTING_ADSL_ENCAPSULATION_LLC</a></td> </tr> -<tr> -<td class="datatype_keyword"> </td> -<td class="function_name"><a class="link" href="NMSettingAdsl.html#NMSettingAdsl-struct" title="NMSettingAdsl">NMSettingAdsl</a></td> -</tr> </tbody> </table></div> </div> <div class="refsect1"> -<a name="NMSettingAdsl.object-hierarchy"></a><h2>Object Hierarchy</h2> -<pre class="screen"> <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a> - <span class="lineart">╰──</span> <a class="link" href="NMSetting.html" title="NMSetting">NMSetting</a> - <span class="lineart">╰──</span> NMSettingAdsl -</pre> -</div> -<div class="refsect1"> <a name="NMSettingAdsl.description"></a><h2>Description</h2> <p>The <a class="link" href="NMSettingAdsl.html" title="NMSettingAdsl"><span class="type">NMSettingAdsl</span></a> object is a <a class="link" href="NMSetting.html" title="NMSetting"><span class="type">NMSetting</span></a> subclass that describes properties of ADSL connections.</p> @@ -268,7 +204,7 @@ nm_setting_adsl_get_username (<em class="parameter"><code><a class="link" href=" </div> <div class="refsect3"> <a name="nm-setting-adsl-get-username.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingAdsl.html#NMSettingAdsl--username" title="The “username” property"><span class="type">“username”</span></a> property of the setting</p> +<p> the <a href="NMSettingAdsl.html#NMSettingAdsl--username"><span class="type">“username”</span></a> property of the setting</p> </div> </div> <hr> @@ -293,7 +229,7 @@ nm_setting_adsl_get_password (<em class="parameter"><code><a class="link" href=" </div> <div class="refsect3"> <a name="nm-setting-adsl-get-password.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingAdsl.html#NMSettingAdsl--password" title="The “password” property"><span class="type">“password”</span></a> property of the setting</p> +<p> the <a href="NMSettingAdsl.html#NMSettingAdsl--password"><span class="type">“password”</span></a> property of the setting</p> </div> </div> <hr> @@ -318,7 +254,7 @@ nm_setting_adsl_get_protocol (<em class="parameter"><code><a class="link" href=" </div> <div class="refsect3"> <a name="nm-setting-adsl-get-protocol.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingAdsl.html#NMSettingAdsl--protocol" title="The “protocol” property"><span class="type">“protocol”</span></a> property of the setting</p> +<p> the <a href="NMSettingAdsl.html#NMSettingAdsl--protocol"><span class="type">“protocol”</span></a> property of the setting</p> </div> </div> <hr> @@ -343,7 +279,7 @@ nm_setting_adsl_get_encapsulation (<em class="parameter"><code><a class="link" h </div> <div class="refsect3"> <a name="nm-setting-adsl-get-encapsulation.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingAdsl.html#NMSettingAdsl--encapsulation" title="The “encapsulation” property"><span class="type">“encapsulation”</span></a> property of the setting</p> +<p> the <a href="NMSettingAdsl.html#NMSettingAdsl--encapsulation"><span class="type">“encapsulation”</span></a> property of the setting</p> </div> </div> <hr> @@ -368,7 +304,7 @@ nm_setting_adsl_get_vpi (<em class="parameter"><code><a class="link" href="NMSet </div> <div class="refsect3"> <a name="nm-setting-adsl-get-vpi.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingAdsl.html#NMSettingAdsl--vpi" title="The “vpi” property"><span class="type">“vpi”</span></a> property of the setting</p> +<p> the <a href="NMSettingAdsl.html#NMSettingAdsl--vpi"><span class="type">“vpi”</span></a> property of the setting</p> </div> </div> <hr> @@ -393,7 +329,7 @@ nm_setting_adsl_get_vci (<em class="parameter"><code><a class="link" href="NMSet </div> <div class="refsect3"> <a name="nm-setting-adsl-get-vci.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingAdsl.html#NMSettingAdsl--vci" title="The “vci” property"><span class="type">“vci”</span></a> property of the setting</p> +<p> the <a href="NMSettingAdsl.html#NMSettingAdsl--vci"><span class="type">“vci”</span></a> property of the setting</p> </div> </div> <hr> @@ -418,7 +354,7 @@ nm_setting_adsl_get_password_flags (<em class="parameter"><code><a class="link" </div> <div class="refsect3"> <a name="nm-setting-adsl-get-password-flags.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a> pertaining to the <a class="link" href="NMSettingAdsl.html#NMSettingAdsl--password" title="The “password” property"><span class="type">“password”</span></a></p> +<p> the <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a> pertaining to the <a href="NMSettingAdsl.html#NMSettingAdsl--password"><span class="type">“password”</span></a></p> </div> </div> </div> @@ -501,78 +437,6 @@ nm_setting_adsl_get_password_flags (<em class="parameter"><code><a class="link" <pre class="programlisting">#define NM_SETTING_ADSL_ENCAPSULATION_LLC "llc" </pre> </div> -<hr> -<div class="refsect2"> -<a name="NMSettingAdsl-struct"></a><h3>NMSettingAdsl</h3> -<pre class="programlisting">typedef struct _NMSettingAdsl NMSettingAdsl;</pre> -<p>ADSL Settings</p> -</div> -</div> -<div class="refsect1"> -<a name="NMSettingAdsl.property-details"></a><h2>Property Details</h2> -<div class="refsect2"> -<a name="NMSettingAdsl--encapsulation"></a><h3>The <code class="literal">“encapsulation”</code> property</h3> -<pre class="programlisting"> “encapsulation” <span class="type">char</span> *</pre> -<p>Encapsulation of ADSL connection. Can be "vcmux" or "llc".</p> -<p>Owner: NMSettingAdsl</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingAdsl--password"></a><h3>The <code class="literal">“password”</code> property</h3> -<pre class="programlisting"> “password” <span class="type">char</span> *</pre> -<p>Password used to authenticate with the ADSL service.</p> -<p>Owner: NMSettingAdsl</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingAdsl--password-flags"></a><h3>The <code class="literal">“password-flags”</code> property</h3> -<pre class="programlisting"> “password-flags” <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a></pre> -<p>Flags indicating how to handle the <a class="link" href="NMSettingAdsl.html#NMSettingAdsl--password" title="The “password” property"><span class="type">“password”</span></a> property.</p> -<p>Owner: NMSettingAdsl</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingAdsl--protocol"></a><h3>The <code class="literal">“protocol”</code> property</h3> -<pre class="programlisting"> “protocol” <span class="type">char</span> *</pre> -<p>ADSL connection protocol. Can be "pppoa", "pppoe" or "ipoatm".</p> -<p>Owner: NMSettingAdsl</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingAdsl--username"></a><h3>The <code class="literal">“username”</code> property</h3> -<pre class="programlisting"> “username” <span class="type">char</span> *</pre> -<p>Username used to authenticate with the ADSL service.</p> -<p>Owner: NMSettingAdsl</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingAdsl--vci"></a><h3>The <code class="literal">“vci”</code> property</h3> -<pre class="programlisting"> “vci” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>VCI of ADSL connection</p> -<p>Owner: NMSettingAdsl</p> -<p>Flags: Read / Write</p> -<p>Allowed values: <= 65536</p> -<p>Default value: 0</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingAdsl--vpi"></a><h3>The <code class="literal">“vpi”</code> property</h3> -<pre class="programlisting"> “vpi” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>VPI of ADSL connection</p> -<p>Owner: NMSettingAdsl</p> -<p>Flags: Read / Write</p> -<p>Allowed values: <= 65536</p> -<p>Default value: 0</p> -</div> </div> </div> <div class="footer"> diff --git a/docs/libnm/html/NMSettingBluetooth.html b/docs/libnm/html/NMSettingBluetooth.html index 234dd5ba..318b8b7c 100644 --- a/docs/libnm/html/NMSettingBluetooth.html +++ b/docs/libnm/html/NMSettingBluetooth.html @@ -15,9 +15,7 @@ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle"> <td width="100%" align="left" class="shortcuts"> <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> - <a href="#NMSettingBluetooth.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> - <a href="#NMSettingBluetooth.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties"> <span class="dim">|</span> - <a href="#NMSettingBluetooth.properties" class="shortcut">Properties</a></span> + <a href="#NMSettingBluetooth.description" class="shortcut">Description</a></span> </td> <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> <td><a accesskey="u" href="ch03.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> @@ -67,30 +65,6 @@ </table></div> </div> <div class="refsect1"> -<a name="NMSettingBluetooth.properties"></a><h2>Properties</h2> -<div class="informaltable"><table class="informaltable" border="0"> -<colgroup> -<col width="150px" class="properties_type"> -<col width="300px" class="properties_name"> -<col width="200px" class="properties_flags"> -</colgroup> -<tbody> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingBluetooth.html#NMSettingBluetooth--bdaddr" title="The “bdaddr” property">bdaddr</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingBluetooth.html#NMSettingBluetooth--type" title="The “type” property">type</a></td> -<td class="property_flags">Read / Write</td> -</tr> -</tbody> -</table></div> -</div> -<div class="refsect1"> <a name="NMSettingBluetooth.other"></a><h2>Types and Values</h2> <div class="informaltable"><table class="informaltable" width="100%" border="0"> <colgroup> @@ -122,21 +96,10 @@ <td class="define_keyword">#define</td> <td class="function_name"><a class="link" href="NMSettingBluetooth.html#NM-SETTING-BLUETOOTH-TYPE-NAP:CAPS" title="NM_SETTING_BLUETOOTH_TYPE_NAP">NM_SETTING_BLUETOOTH_TYPE_NAP</a></td> </tr> -<tr> -<td class="datatype_keyword"> </td> -<td class="function_name"><a class="link" href="NMSettingBluetooth.html#NMSettingBluetooth-struct" title="NMSettingBluetooth">NMSettingBluetooth</a></td> -</tr> </tbody> </table></div> </div> <div class="refsect1"> -<a name="NMSettingBluetooth.object-hierarchy"></a><h2>Object Hierarchy</h2> -<pre class="screen"> <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a> - <span class="lineart">╰──</span> <a class="link" href="NMSetting.html" title="NMSetting">NMSetting</a> - <span class="lineart">╰──</span> NMSettingBluetooth -</pre> -</div> -<div class="refsect1"> <a name="NMSettingBluetooth.description"></a><h2>Description</h2> <p>The <a class="link" href="NMSettingBluetooth.html" title="NMSettingBluetooth"><span class="type">NMSettingBluetooth</span></a> object is a <a class="link" href="NMSetting.html" title="NMSetting"><span class="type">NMSetting</span></a> subclass that describes properties necessary for connection to devices that provide network @@ -256,33 +219,6 @@ Access Point).</p> <p>Connection type describing a Bluetooth NAP (Network Access Point), which accepts PANU clients.</p> </div> -<hr> -<div class="refsect2"> -<a name="NMSettingBluetooth-struct"></a><h3>NMSettingBluetooth</h3> -<pre class="programlisting">typedef struct _NMSettingBluetooth NMSettingBluetooth;</pre> -<p>Bluetooth Settings</p> -</div> -</div> -<div class="refsect1"> -<a name="NMSettingBluetooth.property-details"></a><h2>Property Details</h2> -<div class="refsect2"> -<a name="NMSettingBluetooth--bdaddr"></a><h3>The <code class="literal">“bdaddr”</code> property</h3> -<pre class="programlisting"> “bdaddr” <span class="type">char</span> *</pre> -<p>The Bluetooth address of the device.</p> -<p>Owner: NMSettingBluetooth</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingBluetooth--type"></a><h3>The <code class="literal">“type”</code> property</h3> -<pre class="programlisting"> “type” <span class="type">char</span> *</pre> -<p>Either "dun" for Dial-Up Networking connections or "panu" for Personal -Area Networking connections to devices supporting the NAP profile.</p> -<p>Owner: NMSettingBluetooth</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> </div> </div> <div class="footer"> diff --git a/docs/libnm/html/NMSettingBond.html b/docs/libnm/html/NMSettingBond.html index 54beccd2..1f9b33d6 100644 --- a/docs/libnm/html/NMSettingBond.html +++ b/docs/libnm/html/NMSettingBond.html @@ -15,9 +15,7 @@ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle"> <td width="100%" align="left" class="shortcuts"> <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> - <a href="#NMSettingBond.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> - <a href="#NMSettingBond.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties"> <span class="dim">|</span> - <a href="#NMSettingBond.properties" class="shortcut">Properties</a></span> + <a href="#NMSettingBond.description" class="shortcut">Description</a></span> </td> <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> <td><a accesskey="u" href="ch03.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> @@ -121,22 +119,6 @@ </table></div> </div> <div class="refsect1"> -<a name="NMSettingBond.properties"></a><h2>Properties</h2> -<div class="informaltable"><table class="informaltable" border="0"> -<colgroup> -<col width="150px" class="properties_type"> -<col width="300px" class="properties_name"> -<col width="200px" class="properties_flags"> -</colgroup> -<tbody><tr> -<td class="property_type"> -<a href="https://developer.gnome.org/glib/unstable/glib-Hash-Tables.html#GHashTable"><span class="type">GHashTable</span></a> *</td> -<td class="property_name"><a class="link" href="NMSettingBond.html#NMSettingBond--options" title="The “options” property">options</a></td> -<td class="property_flags">Read / Write</td> -</tr></tbody> -</table></div> -</div> -<div class="refsect1"> <a name="NMSettingBond.other"></a><h2>Types and Values</h2> <div class="informaltable"><table class="informaltable" width="100%" border="0"> <colgroup> @@ -264,21 +246,10 @@ <td class="define_keyword">#define</td> <td class="function_name"><a class="link" href="NMSettingBond.html#NM-SETTING-BOND-OPTION-PEER-NOTIF-DELAY:CAPS" title="NM_SETTING_BOND_OPTION_PEER_NOTIF_DELAY">NM_SETTING_BOND_OPTION_PEER_NOTIF_DELAY</a></td> </tr> -<tr> -<td class="datatype_keyword"> </td> -<td class="function_name"><a class="link" href="NMSettingBond.html#NMSettingBond-struct" title="NMSettingBond">NMSettingBond</a></td> -</tr> </tbody> </table></div> </div> <div class="refsect1"> -<a name="NMSettingBond.object-hierarchy"></a><h2>Object Hierarchy</h2> -<pre class="screen"> <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a> - <span class="lineart">╰──</span> <a class="link" href="NMSetting.html" title="NMSetting">NMSetting</a> - <span class="lineart">╰──</span> NMSettingBond -</pre> -</div> -<div class="refsect1"> <a name="NMSettingBond.description"></a><h2>Description</h2> <p>The <a class="link" href="NMSettingBond.html" title="NMSettingBond"><span class="type">NMSettingBond</span></a> object is a <a class="link" href="NMSetting.html" title="NMSetting"><span class="type">NMSetting</span></a> subclass that describes properties necessary for bond connections.</p> @@ -606,7 +577,7 @@ nm_setting_bond_get_option_default (<em class="parameter"><code><a class="link" <div class="refsect3"> <a name="nm-setting-bond-get-option-default.returns"></a><h4>Returns</h4> <p> the value of the bond option if not overridden by an entry in -the <a class="link" href="NMSettingBond.html#NMSettingBond--options" title="The “options” property"><span class="type">“options”</span></a> property.</p> +the <a href="NMSettingBond.html#NMSettingBond--options"><span class="type">“options”</span></a> property.</p> </div> </div> <hr> @@ -827,21 +798,6 @@ to the connection.</p> <pre class="programlisting">#define NM_SETTING_BOND_OPTION_PEER_NOTIF_DELAY "peer_notif_delay" </pre> </div> -<hr> -<div class="refsect2"> -<a name="NMSettingBond-struct"></a><h3>NMSettingBond</h3> -<pre class="programlisting">typedef struct _NMSettingBond NMSettingBond;</pre> -<p>Bonding Settings</p> -</div> -</div> -<div class="refsect1"> -<a name="NMSettingBond.property-details"></a><h2>Property Details</h2> -<div class="refsect2"> -<a name="NMSettingBond--options"></a><h3>The <code class="literal">“options”</code> property</h3> -<pre class="programlisting"> “options” <a href="https://developer.gnome.org/glib/unstable/glib-Hash-Tables.html#GHashTable"><span class="type">GHashTable</span></a> *</pre> -<p>Owner: NMSettingBond</p> -<p>Flags: Read / Write</p> -</div> </div> </div> <div class="footer"> diff --git a/docs/libnm/html/NMSettingBridgePort.html b/docs/libnm/html/NMSettingBridgePort.html index dc7d9e72..66fc6a09 100644 --- a/docs/libnm/html/NMSettingBridgePort.html +++ b/docs/libnm/html/NMSettingBridgePort.html @@ -15,9 +15,7 @@ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle"> <td width="100%" align="left" class="shortcuts"> <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> - <a href="#NMSettingBridgePort.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> - <a href="#NMSettingBridgePort.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties"> <span class="dim">|</span> - <a href="#NMSettingBridgePort.properties" class="shortcut">Properties</a></span> + <a href="#NMSettingBridgePort.description" class="shortcut">Description</a></span> </td> <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> <td><a accesskey="u" href="ch03.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> @@ -125,39 +123,6 @@ </table></div> </div> <div class="refsect1"> -<a name="NMSettingBridgePort.properties"></a><h2>Properties</h2> -<div class="informaltable"><table class="informaltable" border="0"> -<colgroup> -<col width="150px" class="properties_type"> -<col width="300px" class="properties_name"> -<col width="200px" class="properties_flags"> -</colgroup> -<tbody> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingBridgePort.html#NMSettingBridgePort--hairpin-mode" title="The “hairpin-mode” property">hairpin-mode</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingBridgePort.html#NMSettingBridgePort--path-cost" title="The “path-cost” property">path-cost</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingBridgePort.html#NMSettingBridgePort--priority" title="The “priority” property">priority</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<a href="https://developer.gnome.org/glib/unstable/glib-Pointer-Arrays.html#GPtrArray"><span class="type">GPtrArray</span></a> *</td> -<td class="property_name"><a class="link" href="NMSettingBridgePort.html#NMSettingBridgePort--vlans" title="The “vlans” property">vlans</a></td> -<td class="property_flags">Read / Write</td> -</tr> -</tbody> -</table></div> -</div> -<div class="refsect1"> <a name="NMSettingBridgePort.other"></a><h2>Types and Values</h2> <div class="informaltable"><table class="informaltable" width="100%" border="0"> <colgroup> @@ -185,21 +150,10 @@ <td class="define_keyword">#define</td> <td class="function_name"><a class="link" href="NMSettingBridgePort.html#NM-SETTING-BRIDGE-PORT-VLANS:CAPS" title="NM_SETTING_BRIDGE_PORT_VLANS">NM_SETTING_BRIDGE_PORT_VLANS</a></td> </tr> -<tr> -<td class="datatype_keyword"> </td> -<td class="function_name"><a class="link" href="NMSettingBridgePort.html#NMSettingBridgePort-struct" title="NMSettingBridgePort">NMSettingBridgePort</a></td> -</tr> </tbody> </table></div> </div> <div class="refsect1"> -<a name="NMSettingBridgePort.object-hierarchy"></a><h2>Object Hierarchy</h2> -<pre class="screen"> <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a> - <span class="lineart">╰──</span> <a class="link" href="NMSetting.html" title="NMSetting">NMSetting</a> - <span class="lineart">╰──</span> NMSettingBridgePort -</pre> -</div> -<div class="refsect1"> <a name="NMSettingBridgePort.description"></a><h2>Description</h2> <p>The <a class="link" href="NMSettingBridgePort.html" title="NMSettingBridgePort"><span class="type">NMSettingBridgePort</span></a> object is a <a class="link" href="NMSetting.html" title="NMSetting"><span class="type">NMSetting</span></a> subclass that describes optional properties that apply to bridge ports.</p> @@ -239,7 +193,7 @@ nm_setting_bridge_port_get_priority (<em class="parameter"><code><a class="link" </div> <div class="refsect3"> <a name="nm-setting-bridge-port-get-priority.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingBridgePort.html#NMSettingBridgePort--priority" title="The “priority” property"><span class="type">“priority”</span></a> property of the setting</p> +<p> the <a href="NMSettingBridgePort.html#NMSettingBridgePort--priority"><span class="type">“priority”</span></a> property of the setting</p> </div> </div> <hr> @@ -264,7 +218,7 @@ nm_setting_bridge_port_get_path_cost (<em class="parameter"><code><a class="link </div> <div class="refsect3"> <a name="nm-setting-bridge-port-get-path-cost.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingBridgePort.html#NMSettingBridgePort--path-cost" title="The “path-cost” property"><span class="type">“path-cost”</span></a> property of the setting</p> +<p> the <a href="NMSettingBridgePort.html#NMSettingBridgePort--path-cost"><span class="type">“path-cost”</span></a> property of the setting</p> </div> </div> <hr> @@ -290,7 +244,7 @@ nm_setting_bridge_port_get_hairpin_mode </div> <div class="refsect3"> <a name="nm-setting-bridge-port-get-hairpin-mode.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingBridgePort.html#NMSettingBridgePort--hairpin-mode" title="The “hairpin-mode” property"><span class="type">“hairpin-mode”</span></a> property of the setting</p> +<p> the <a href="NMSettingBridgePort.html#NMSettingBridgePort--hairpin-mode"><span class="type">“hairpin-mode”</span></a> property of the setting</p> </div> </div> <hr> @@ -523,63 +477,6 @@ nm_setting_bridge_port_clear_vlans (<em class="parameter"><code><a class="link" <pre class="programlisting">#define NM_SETTING_BRIDGE_PORT_VLANS "vlans" </pre> </div> -<hr> -<div class="refsect2"> -<a name="NMSettingBridgePort-struct"></a><h3>NMSettingBridgePort</h3> -<pre class="programlisting">typedef struct _NMSettingBridgePort NMSettingBridgePort;</pre> -<p>Bridge Port Settings</p> -</div> -</div> -<div class="refsect1"> -<a name="NMSettingBridgePort.property-details"></a><h2>Property Details</h2> -<div class="refsect2"> -<a name="NMSettingBridgePort--hairpin-mode"></a><h3>The <code class="literal">“hairpin-mode”</code> property</h3> -<pre class="programlisting"> “hairpin-mode” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>Enables or disables "hairpin mode" for the port, which allows frames to -be sent back out through the port the frame was received on.</p> -<p>Owner: NMSettingBridgePort</p> -<p>Flags: Read / Write</p> -<p>Default value: FALSE</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingBridgePort--path-cost"></a><h3>The <code class="literal">“path-cost”</code> property</h3> -<pre class="programlisting"> “path-cost” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>The Spanning Tree Protocol (STP) port cost for destinations via this -port.</p> -<p>Owner: NMSettingBridgePort</p> -<p>Flags: Read / Write</p> -<p>Allowed values: <= 65535</p> -<p>Default value: 100</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingBridgePort--priority"></a><h3>The <code class="literal">“priority”</code> property</h3> -<pre class="programlisting"> “priority” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>The Spanning Tree Protocol (STP) priority of this bridge port.</p> -<p>Owner: NMSettingBridgePort</p> -<p>Flags: Read / Write</p> -<p>Allowed values: <= 63</p> -<p>Default value: 32</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingBridgePort--vlans"></a><h3>The <code class="literal">“vlans”</code> property</h3> -<pre class="programlisting"> “vlans” <a href="https://developer.gnome.org/glib/unstable/glib-Pointer-Arrays.html#GPtrArray"><span class="type">GPtrArray</span></a> *</pre> -<p>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.</p> -<p>In nmcli the VLAN list can be specified with the following -syntax:</p> -<p> $vid pvid [, $vid pvid]...</p> -<p>where $vid is either a single id between 1 and 4094 or a -range, represented as a couple of ids separated by a dash.</p> -<p><span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GPtrArray(NMBridgeVlan)]</span></p> -<p>Owner: NMSettingBridgePort</p> -<p>Flags: Read / Write</p> -<p class="since">Since: 1.18</p> -</div> </div> </div> <div class="footer"> diff --git a/docs/libnm/html/NMSettingCdma.html b/docs/libnm/html/NMSettingCdma.html index 1b846de4..3d62dad5 100644 --- a/docs/libnm/html/NMSettingCdma.html +++ b/docs/libnm/html/NMSettingCdma.html @@ -15,9 +15,7 @@ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle"> <td width="100%" align="left" class="shortcuts"> <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> - <a href="#NMSettingCdma.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> - <a href="#NMSettingCdma.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties"> <span class="dim">|</span> - <a href="#NMSettingCdma.properties" class="shortcut">Properties</a></span> + <a href="#NMSettingCdma.description" class="shortcut">Description</a></span> </td> <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> <td><a accesskey="u" href="ch03.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> @@ -90,46 +88,6 @@ </table></div> </div> <div class="refsect1"> -<a name="NMSettingCdma.properties"></a><h2>Properties</h2> -<div class="informaltable"><table class="informaltable" border="0"> -<colgroup> -<col width="150px" class="properties_type"> -<col width="300px" class="properties_name"> -<col width="200px" class="properties_flags"> -</colgroup> -<tbody> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingCdma.html#NMSettingCdma--mtu" title="The “mtu” property">mtu</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingCdma.html#NMSettingCdma--number" title="The “number” property">number</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingCdma.html#NMSettingCdma--password" title="The “password” property">password</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a></td> -<td class="property_name"><a class="link" href="NMSettingCdma.html#NMSettingCdma--password-flags" title="The “password-flags” property">password-flags</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingCdma.html#NMSettingCdma--username" title="The “username” property">username</a></td> -<td class="property_flags">Read / Write</td> -</tr> -</tbody> -</table></div> -</div> -<div class="refsect1"> <a name="NMSettingCdma.other"></a><h2>Types and Values</h2> <div class="informaltable"><table class="informaltable" width="100%" border="0"> <colgroup> @@ -161,21 +119,10 @@ <td class="define_keyword">#define</td> <td class="function_name"><a class="link" href="NMSettingCdma.html#NM-SETTING-CDMA-MTU:CAPS" title="NM_SETTING_CDMA_MTU">NM_SETTING_CDMA_MTU</a></td> </tr> -<tr> -<td class="datatype_keyword"> </td> -<td class="function_name"><a class="link" href="NMSettingCdma.html#NMSettingCdma-struct" title="NMSettingCdma">NMSettingCdma</a></td> -</tr> </tbody> </table></div> </div> <div class="refsect1"> -<a name="NMSettingCdma.object-hierarchy"></a><h2>Object Hierarchy</h2> -<pre class="screen"> <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a> - <span class="lineart">╰──</span> <a class="link" href="NMSetting.html" title="NMSetting">NMSetting</a> - <span class="lineart">╰──</span> NMSettingCdma -</pre> -</div> -<div class="refsect1"> <a name="NMSettingCdma.description"></a><h2>Description</h2> <p>The <a class="link" href="NMSettingCdma.html" title="NMSettingCdma"><span class="type">NMSettingCdma</span></a> object is a <a class="link" href="NMSetting.html" title="NMSetting"><span class="type">NMSetting</span></a> subclass that describes properties that allow connections to IS-95-based mobile broadband @@ -215,7 +162,7 @@ nm_setting_cdma_get_number (<em class="parameter"><code><a class="link" href="NM </div> <div class="refsect3"> <a name="nm-setting-cdma-get-number.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingCdma.html#NMSettingCdma--number" title="The “number” property"><span class="type">“number”</span></a> property of the setting</p> +<p> the <a href="NMSettingCdma.html#NMSettingCdma--number"><span class="type">“number”</span></a> property of the setting</p> </div> </div> <hr> @@ -240,7 +187,7 @@ nm_setting_cdma_get_username (<em class="parameter"><code><a class="link" href=" </div> <div class="refsect3"> <a name="nm-setting-cdma-get-username.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingCdma.html#NMSettingCdma--username" title="The “username” property"><span class="type">“username”</span></a> property of the setting</p> +<p> the <a href="NMSettingCdma.html#NMSettingCdma--username"><span class="type">“username”</span></a> property of the setting</p> </div> </div> <hr> @@ -265,7 +212,7 @@ nm_setting_cdma_get_password (<em class="parameter"><code><a class="link" href=" </div> <div class="refsect3"> <a name="nm-setting-cdma-get-password.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingCdma.html#NMSettingCdma--password" title="The “password” property"><span class="type">“password”</span></a> property of the setting</p> +<p> the <a href="NMSettingCdma.html#NMSettingCdma--password"><span class="type">“password”</span></a> property of the setting</p> </div> </div> <hr> @@ -290,7 +237,7 @@ nm_setting_cdma_get_password_flags (<em class="parameter"><code><a class="link" </div> <div class="refsect3"> <a name="nm-setting-cdma-get-password-flags.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a> pertaining to the <a class="link" href="NMSettingCdma.html#NMSettingCdma--password" title="The “password” property"><span class="type">“password”</span></a></p> +<p> the <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a> pertaining to the <a href="NMSettingCdma.html#NMSettingCdma--password"><span class="type">“password”</span></a></p> </div> </div> <hr> @@ -315,7 +262,7 @@ nm_setting_cdma_get_mtu (<em class="parameter"><code><a class="link" href="NMSet </div> <div class="refsect3"> <a name="nm-setting-cdma-get-mtu.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingCdma.html#NMSettingCdma--mtu" title="The “mtu” property"><span class="type">“mtu”</span></a> property of the setting</p> +<p> the <a href="NMSettingCdma.html#NMSettingCdma--mtu"><span class="type">“mtu”</span></a> property of the setting</p> </div> <p class="since">Since: 1.8</p> </div> @@ -357,66 +304,6 @@ nm_setting_cdma_get_mtu (<em class="parameter"><code><a class="link" href="NMSet <pre class="programlisting">#define NM_SETTING_CDMA_MTU "mtu" </pre> </div> -<hr> -<div class="refsect2"> -<a name="NMSettingCdma-struct"></a><h3>NMSettingCdma</h3> -<pre class="programlisting">typedef struct _NMSettingCdma NMSettingCdma;</pre> -<p>CDMA-based Mobile Broadband Settings</p> -</div> -</div> -<div class="refsect1"> -<a name="NMSettingCdma.property-details"></a><h2>Property Details</h2> -<div class="refsect2"> -<a name="NMSettingCdma--mtu"></a><h3>The <code class="literal">“mtu”</code> property</h3> -<pre class="programlisting"> “mtu” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>If non-zero, only transmit packets of the specified size or smaller, -breaking larger packets up into multiple frames.</p> -<p>Owner: NMSettingCdma</p> -<p>Flags: Read / Write</p> -<p>Default value: 0</p> -<p class="since">Since: 1.8</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingCdma--number"></a><h3>The <code class="literal">“number”</code> property</h3> -<pre class="programlisting"> “number” <span class="type">char</span> *</pre> -<p>The number to dial to establish the connection to the CDMA-based mobile -broadband network, if any. If not specified, the default number (<span class="type">777</span>) -is used when required.</p> -<p>Owner: NMSettingCdma</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingCdma--password"></a><h3>The <code class="literal">“password”</code> property</h3> -<pre class="programlisting"> “password” <span class="type">char</span> *</pre> -<p>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.</p> -<p>Owner: NMSettingCdma</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingCdma--password-flags"></a><h3>The <code class="literal">“password-flags”</code> property</h3> -<pre class="programlisting"> “password-flags” <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a></pre> -<p>Flags indicating how to handle the <a class="link" href="NMSettingCdma.html#NMSettingCdma--password" title="The “password” property"><span class="type">“password”</span></a> property.</p> -<p>Owner: NMSettingCdma</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingCdma--username"></a><h3>The <code class="literal">“username”</code> property</h3> -<pre class="programlisting"> “username” <span class="type">char</span> *</pre> -<p>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.</p> -<p>Owner: NMSettingCdma</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> </div> </div> <div class="footer"> diff --git a/docs/libnm/html/NMSettingConnection.html b/docs/libnm/html/NMSettingConnection.html index 9a77adbe..26337e4b 100644 --- a/docs/libnm/html/NMSettingConnection.html +++ b/docs/libnm/html/NMSettingConnection.html @@ -16,8 +16,7 @@ <td width="100%" align="left" class="shortcuts"> <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> <a href="#NMSettingConnection.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> - <a href="#NMSettingConnection.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties"> <span class="dim">|</span> - <a href="#NMSettingConnection.properties" class="shortcut">Properties</a></span> + <a href="#NMSettingConnection.object-hierarchy" class="shortcut">Object Hierarchy</a></span> </td> <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> <td><a accesskey="u" href="ch03.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> @@ -323,152 +322,6 @@ </table></div> </div> <div class="refsect1"> -<a name="NMSettingConnection.properties"></a><h2>Properties</h2> -<div class="informaltable"><table class="informaltable" border="0"> -<colgroup> -<col width="150px" class="properties_type"> -<col width="300px" class="properties_name"> -<col width="200px" class="properties_flags"> -</colgroup> -<tbody> -<tr> -<td class="property_type"><span class="type">int</span></td> -<td class="property_name"><a class="link" href="NMSettingConnection.html#NMSettingConnection--auth-retries" title="The “auth-retries” property">auth-retries</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingConnection.html#NMSettingConnection--autoconnect" title="The “autoconnect” property">autoconnect</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><span class="type">int</span></td> -<td class="property_name"><a class="link" href="NMSettingConnection.html#NMSettingConnection--autoconnect-priority" title="The “autoconnect-priority” property">autoconnect-priority</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><span class="type">int</span></td> -<td class="property_name"><a class="link" href="NMSettingConnection.html#NMSettingConnection--autoconnect-retries" title="The “autoconnect-retries” property">autoconnect-retries</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a class="link" href="NMSettingConnection.html#NMSettingConnectionAutoconnectSlaves" title="enum NMSettingConnectionAutoconnectSlaves"><span class="type">NMSettingConnectionAutoconnectSlaves</span></a></td> -<td class="property_name"><a class="link" href="NMSettingConnection.html#NMSettingConnection--autoconnect-slaves" title="The “autoconnect-slaves” property">autoconnect-slaves</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingConnection.html#NMSettingConnection--gateway-ping-timeout" title="The “gateway-ping-timeout” property">gateway-ping-timeout</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingConnection.html#NMSettingConnection--id" title="The “id” property">id</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingConnection.html#NMSettingConnection--interface-name" title="The “interface-name” property">interface-name</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><span class="type">int</span></td> -<td class="property_name"><a class="link" href="NMSettingConnection.html#NMSettingConnection--lldp" title="The “lldp” property">lldp</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><span class="type">int</span></td> -<td class="property_name"><a class="link" href="NMSettingConnection.html#NMSettingConnection--llmnr" title="The “llmnr” property">llmnr</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingConnection.html#NMSettingConnection--master" title="The “master” property">master</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><span class="type">int</span></td> -<td class="property_name"><a class="link" href="NMSettingConnection.html#NMSettingConnection--mdns" title="The “mdns” property">mdns</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a class="link" href="libnm-nm-dbus-interface.html#NMMetered" title="enum NMMetered"><span class="type">NMMetered</span></a></td> -<td class="property_name"><a class="link" href="NMSettingConnection.html#NMSettingConnection--metered" title="The “metered” property">metered</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingConnection.html#NMSettingConnection--mud-url" title="The “mud-url” property">mud-url</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><span class="type">int</span></td> -<td class="property_name"><a class="link" href="NMSettingConnection.html#NMSettingConnection--multi-connect" title="The “multi-connect” property">multi-connect</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></td> -<td class="property_name"><a class="link" href="NMSettingConnection.html#NMSettingConnection--permissions" title="The “permissions” property">permissions</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingConnection.html#NMSettingConnection--read-only" title="The “read-only” property">read-only</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></td> -<td class="property_name"><a class="link" href="NMSettingConnection.html#NMSettingConnection--secondaries" title="The “secondaries” property">secondaries</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingConnection.html#NMSettingConnection--slave-type" title="The “slave-type” property">slave-type</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingConnection.html#NMSettingConnection--stable-id" title="The “stable-id” property">stable-id</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a></td> -<td class="property_name"><a class="link" href="NMSettingConnection.html#NMSettingConnection--timestamp" title="The “timestamp” property">timestamp</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingConnection.html#NMSettingConnection--type" title="The “type” property">type</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingConnection.html#NMSettingConnection--uuid" title="The “uuid” property">uuid</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><span class="type">int</span></td> -<td class="property_name"><a class="link" href="NMSettingConnection.html#NMSettingConnection--wait-device-timeout" title="The “wait-device-timeout” property">wait-device-timeout</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingConnection.html#NMSettingConnection--zone" title="The “zone” property">zone</a></td> -<td class="property_flags">Read / Write</td> -</tr> -</tbody> -</table></div> -</div> -<div class="refsect1"> <a name="NMSettingConnection.other"></a><h2>Types and Values</h2> <div class="informaltable"><table class="informaltable" width="100%" border="0"> <colgroup> @@ -608,10 +461,6 @@ <td class="datatype_keyword">enum</td> <td class="function_name"><a class="link" href="NMSettingConnection.html#NMSettingConnectionLlmnr" title="enum NMSettingConnectionLlmnr">NMSettingConnectionLlmnr</a></td> </tr> -<tr> -<td class="datatype_keyword"> </td> -<td class="function_name"><a class="link" href="NMSettingConnection.html#NMSettingConnection-struct" title="NMSettingConnection">NMSettingConnection</a></td> -</tr> </tbody> </table></div> </div> @@ -622,9 +471,6 @@ <span class="lineart">├──</span> NMSettingConnectionLldp <span class="lineart">├──</span> NMSettingConnectionLlmnr <span class="lineart">╰──</span> NMSettingConnectionMdns - <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a> - <span class="lineart">╰──</span> <a class="link" href="NMSetting.html" title="NMSetting">NMSetting</a> - <span class="lineart">╰──</span> NMSettingConnection </pre> </div> <div class="refsect1"> @@ -651,7 +497,7 @@ nm_setting_connection_new (<em class="parameter"><code><span class="type">void</ <a name="nm-setting-connection-get-id"></a><h3>nm_setting_connection_get_id ()</h3> <pre class="programlisting">const <span class="returnvalue">char</span> * nm_setting_connection_get_id (<em class="parameter"><code><a class="link" href="NMSettingConnection.html" title="NMSettingConnection"><span class="type">NMSettingConnection</span></a> *setting</code></em>);</pre> -<p>Returns the <a class="link" href="NMSettingConnection.html#NMSettingConnection--id" title="The “id” property"><span class="type">“id”</span></a> property of the connection.</p> +<p>Returns the <a href="NMSettingConnection.html#NMSettingConnection--id"><span class="type">“id”</span></a> property of the connection.</p> <div class="refsect3"> <a name="nm-setting-connection-get-id.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -677,7 +523,7 @@ nm_setting_connection_get_id (<em class="parameter"><code><a class="link" href=" <a name="nm-setting-connection-get-uuid"></a><h3>nm_setting_connection_get_uuid ()</h3> <pre class="programlisting">const <span class="returnvalue">char</span> * nm_setting_connection_get_uuid (<em class="parameter"><code><a class="link" href="NMSettingConnection.html" title="NMSettingConnection"><span class="type">NMSettingConnection</span></a> *setting</code></em>);</pre> -<p>Returns the <a class="link" href="NMSettingConnection.html#NMSettingConnection--uuid" title="The “uuid” property"><span class="type">“uuid”</span></a> property of the connection.</p> +<p>Returns the <a href="NMSettingConnection.html#NMSettingConnection--uuid"><span class="type">“uuid”</span></a> property of the connection.</p> <div class="refsect3"> <a name="nm-setting-connection-get-uuid.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -703,7 +549,7 @@ nm_setting_connection_get_uuid (<em class="parameter"><code><a class="link" href <a name="nm-setting-connection-get-stable-id"></a><h3>nm_setting_connection_get_stable_id ()</h3> <pre class="programlisting">const <span class="returnvalue">char</span> * nm_setting_connection_get_stable_id (<em class="parameter"><code><a class="link" href="NMSettingConnection.html" title="NMSettingConnection"><span class="type">NMSettingConnection</span></a> *setting</code></em>);</pre> -<p>Returns the <a class="link" href="NMSettingConnection.html#NMSettingConnection--stable-id" title="The “stable-id” property"><span class="type">“stable_id”</span></a> property of the connection.</p> +<p>Returns the <a href="NMSettingConnection.html#NMSettingConnection--stable-id"><span class="type">“stable_id”</span></a> property of the connection.</p> <div class="refsect3"> <a name="nm-setting-connection-get-stable-id.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -731,7 +577,7 @@ nm_setting_connection_get_stable_id (<em class="parameter"><code><a class="link" <pre class="programlisting">const <span class="returnvalue">char</span> * nm_setting_connection_get_interface_name (<em class="parameter"><code><a class="link" href="NMSettingConnection.html" title="NMSettingConnection"><span class="type">NMSettingConnection</span></a> *setting</code></em>);</pre> -<p>Returns the <a class="link" href="NMSettingConnection.html#NMSettingConnection--interface-name" title="The “interface-name” property"><span class="type">“interface-name”</span></a> property of the connection.</p> +<p>Returns the <a href="NMSettingConnection.html#NMSettingConnection--interface-name"><span class="type">“interface-name”</span></a> property of the connection.</p> <div class="refsect3"> <a name="nm-setting-connection-get-interface-name.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -758,7 +604,7 @@ nm_setting_connection_get_interface_name <pre class="programlisting">const <span class="returnvalue">char</span> * nm_setting_connection_get_connection_type (<em class="parameter"><code><a class="link" href="NMSettingConnection.html" title="NMSettingConnection"><span class="type">NMSettingConnection</span></a> *setting</code></em>);</pre> -<p>Returns the <a class="link" href="NMSettingConnection.html#NMSettingConnection--type" title="The “type” property"><span class="type">“type”</span></a> property of the connection.</p> +<p>Returns the <a href="NMSettingConnection.html#NMSettingConnection--type"><span class="type">“type”</span></a> property of the connection.</p> <div class="refsect3"> <a name="nm-setting-connection-get-connection-type.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -784,7 +630,7 @@ nm_setting_connection_get_connection_type <a name="nm-setting-connection-get-autoconnect"></a><h3>nm_setting_connection_get_autoconnect ()</h3> <pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> nm_setting_connection_get_autoconnect (<em class="parameter"><code><a class="link" href="NMSettingConnection.html" title="NMSettingConnection"><span class="type">NMSettingConnection</span></a> *setting</code></em>);</pre> -<p>Returns the <a class="link" href="NMSettingConnection.html#NMSettingConnection--autoconnect" title="The “autoconnect” property"><span class="type">“autoconnect”</span></a> property of the connection.</p> +<p>Returns the <a href="NMSettingConnection.html#NMSettingConnection--autoconnect"><span class="type">“autoconnect”</span></a> property of the connection.</p> <div class="refsect3"> <a name="nm-setting-connection-get-autoconnect.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -811,7 +657,7 @@ nm_setting_connection_get_autoconnect (<em class="parameter"><code><a class="lin <pre class="programlisting"><span class="returnvalue">int</span> nm_setting_connection_get_autoconnect_priority (<em class="parameter"><code><a class="link" href="NMSettingConnection.html" title="NMSettingConnection"><span class="type">NMSettingConnection</span></a> *setting</code></em>);</pre> -<p>Returns the <a class="link" href="NMSettingConnection.html#NMSettingConnection--autoconnect-priority" title="The “autoconnect-priority” property"><span class="type">“autoconnect-priority”</span></a> property of the connection. +<p>Returns the <a href="NMSettingConnection.html#NMSettingConnection--autoconnect-priority"><span class="type">“autoconnect-priority”</span></a> property of the connection. The higher number, the higher priority.</p> <div class="refsect3"> <a name="nm-setting-connection-get-autoconnect-priority.parameters"></a><h4>Parameters</h4> @@ -839,7 +685,7 @@ The higher number, the higher priority.</p> <pre class="programlisting"><span class="returnvalue">int</span> nm_setting_connection_get_autoconnect_retries (<em class="parameter"><code><a class="link" href="NMSettingConnection.html" title="NMSettingConnection"><span class="type">NMSettingConnection</span></a> *setting</code></em>);</pre> -<p>Returns the <a class="link" href="NMSettingConnection.html#NMSettingConnection--autoconnect-retries" title="The “autoconnect-retries” property"><span class="type">“autoconnect-retries”</span></a> property of the connection. +<p>Returns the <a href="NMSettingConnection.html#NMSettingConnection--autoconnect-retries"><span class="type">“autoconnect-retries”</span></a> property of the connection. Zero means infinite, -1 means the global default value.</p> <div class="refsect3"> <a name="nm-setting-connection-get-autoconnect-retries.parameters"></a><h4>Parameters</h4> @@ -885,7 +731,7 @@ nm_setting_connection_get_multi_connect </div> <div class="refsect3"> <a name="nm-setting-connection-get-multi-connect.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingConnection.html#NMSettingConnection--multi-connect" title="The “multi-connect” property"><span class="type">“multi-connect”</span></a> property of the connection.</p> +<p> the <a href="NMSettingConnection.html#NMSettingConnection--multi-connect"><span class="type">“multi-connect”</span></a> property of the connection.</p> </div> <p class="since">Since: 1.14</p> </div> @@ -894,7 +740,7 @@ nm_setting_connection_get_multi_connect <a name="nm-setting-connection-get-timestamp"></a><h3>nm_setting_connection_get_timestamp ()</h3> <pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint64"><span class="returnvalue">guint64</span></a> nm_setting_connection_get_timestamp (<em class="parameter"><code><a class="link" href="NMSettingConnection.html" title="NMSettingConnection"><span class="type">NMSettingConnection</span></a> *setting</code></em>);</pre> -<p>Returns the <a class="link" href="NMSettingConnection.html#NMSettingConnection--timestamp" title="The “timestamp” property"><span class="type">“timestamp”</span></a> property of the connection.</p> +<p>Returns the <a href="NMSettingConnection.html#NMSettingConnection--timestamp"><span class="type">“timestamp”</span></a> property of the connection.</p> <div class="refsect3"> <a name="nm-setting-connection-get-timestamp.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -920,7 +766,7 @@ nm_setting_connection_get_timestamp (<em class="parameter"><code><a class="link" <a name="nm-setting-connection-get-read-only"></a><h3>nm_setting_connection_get_read_only ()</h3> <pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> nm_setting_connection_get_read_only (<em class="parameter"><code><a class="link" href="NMSettingConnection.html" title="NMSettingConnection"><span class="type">NMSettingConnection</span></a> *setting</code></em>);</pre> -<p>Returns the <a class="link" href="NMSettingConnection.html#NMSettingConnection--read-only" title="The “read-only” property"><span class="type">“read-only”</span></a> property of the connection.</p> +<p>Returns the <a href="NMSettingConnection.html#NMSettingConnection--read-only"><span class="type">“read-only”</span></a> property of the connection.</p> <div class="refsect3"> <a name="nm-setting-connection-get-read-only.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -947,7 +793,7 @@ nm_setting_connection_get_read_only (<em class="parameter"><code><a class="link" <pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint32"><span class="returnvalue">guint32</span></a> nm_setting_connection_get_num_permissions (<em class="parameter"><code><a class="link" href="NMSettingConnection.html" title="NMSettingConnection"><span class="type">NMSettingConnection</span></a> *setting</code></em>);</pre> -<p>Returns the number of entries in the <a class="link" href="NMSettingConnection.html#NMSettingConnection--permissions" title="The “permissions” property"><span class="type">“permissions”</span></a> +<p>Returns the number of entries in the <a href="NMSettingConnection.html#NMSettingConnection--permissions"><span class="type">“permissions”</span></a> property of this setting.</p> <div class="refsect3"> <a name="nm-setting-connection-get-num-permissions.parameters"></a><h4>Parameters</h4> @@ -978,7 +824,7 @@ nm_setting_connection_get_permission (<em class="parameter"><code><a class="link <em class="parameter"><code>const <span class="type">char</span> **out_ptype</code></em>, <em class="parameter"><code>const <span class="type">char</span> **out_pitem</code></em>, <em class="parameter"><code>const <span class="type">char</span> **out_detail</code></em>);</pre> -<p>Retrieve one of the entries of the <a class="link" href="NMSettingConnection.html#NMSettingConnection--permissions" title="The “permissions” property"><span class="type">“permissions”</span></a> property +<p>Retrieve one of the entries of the <a href="NMSettingConnection.html#NMSettingConnection--permissions"><span class="type">“permissions”</span></a> property of this setting.</p> <div class="refsect3"> <a name="nm-setting-connection-get-permission.parameters"></a><h4>Parameters</h4> @@ -1009,7 +855,7 @@ unless the entry is invalid, in which case it returns "invalid".</p></td> <td class="parameter_name"><p>out_pitem</p></td> <td class="parameter_description"><p>on return, the permission item (formatted according to <em class="parameter"><code>ptype</code></em> , see -<a class="link" href="NMSettingConnection.html#NMSettingConnection--permissions" title="The “permissions” property"><span class="type">“permissions”</span></a> for more detail</p></td> +<a href="NMSettingConnection.html#NMSettingConnection--permissions"><span class="type">“permissions”</span></a> for more detail</p></td> <td class="parameter_annotations"> </td> </tr> <tr> @@ -1031,7 +877,7 @@ was invalid</p> <a name="nm-setting-connection-get-zone"></a><h3>nm_setting_connection_get_zone ()</h3> <pre class="programlisting">const <span class="returnvalue">char</span> * nm_setting_connection_get_zone (<em class="parameter"><code><a class="link" href="NMSettingConnection.html" title="NMSettingConnection"><span class="type">NMSettingConnection</span></a> *setting</code></em>);</pre> -<p>Returns the <a class="link" href="NMSettingConnection.html#NMSettingConnection--zone" title="The “zone” property"><span class="type">“zone”</span></a> property of the connection.</p> +<p>Returns the <a href="NMSettingConnection.html#NMSettingConnection--zone"><span class="type">“zone”</span></a> property of the connection.</p> <div class="refsect3"> <a name="nm-setting-connection-get-zone.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -1099,7 +945,7 @@ nm_setting_connection_add_permission (<em class="parameter"><code><a class="link <p>Adds a permission to the connection's permission list. At this time, only the "user" permission type is supported, and <em class="parameter"><code>pitem</code></em> must be a username. See -<a class="link" href="NMSettingConnection.html#NMSettingConnection--permissions" title="The “permissions” property"><span class="type">“permissions”</span></a>: for more details.</p> +<a href="NMSettingConnection.html#NMSettingConnection--permissions"><span class="type">“permissions”</span></a>: for more details.</p> <div class="refsect3"> <a name="nm-setting-connection-add-permission.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -1188,7 +1034,7 @@ nm_setting_connection_remove_permission_by_value <p>Removes the permission from the connection. At this time, only the "user" permission type is supported, and <em class="parameter"><code>pitem</code></em> must -be a username. See <a class="link" href="NMSettingConnection.html#NMSettingConnection--permissions" title="The “permissions” property"><span class="type">“permissions”</span></a>: for more details.</p> +be a username. See <a href="NMSettingConnection.html#NMSettingConnection--permissions"><span class="type">“permissions”</span></a>: for more details.</p> <div class="refsect3"> <a name="nm-setting-connection-remove-permission-by-value.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -1232,7 +1078,7 @@ be a username. See <a class="link" href="NMSettingConnection.html#NMSettingConne <a name="nm-setting-connection-get-master"></a><h3>nm_setting_connection_get_master ()</h3> <pre class="programlisting">const <span class="returnvalue">char</span> * nm_setting_connection_get_master (<em class="parameter"><code><a class="link" href="NMSettingConnection.html" title="NMSettingConnection"><span class="type">NMSettingConnection</span></a> *setting</code></em>);</pre> -<p>Returns the <a class="link" href="NMSettingConnection.html#NMSettingConnection--master" title="The “master” property"><span class="type">“master”</span></a> property of the connection.</p> +<p>Returns the <a href="NMSettingConnection.html#NMSettingConnection--master"><span class="type">“master”</span></a> property of the connection.</p> <div class="refsect3"> <a name="nm-setting-connection-get-master.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -1295,7 +1141,7 @@ against <em class="parameter"><code>setting</code></em> <a name="nm-setting-connection-get-slave-type"></a><h3>nm_setting_connection_get_slave_type ()</h3> <pre class="programlisting">const <span class="returnvalue">char</span> * nm_setting_connection_get_slave_type (<em class="parameter"><code><a class="link" href="NMSettingConnection.html" title="NMSettingConnection"><span class="type">NMSettingConnection</span></a> *setting</code></em>);</pre> -<p>Returns the <a class="link" href="NMSettingConnection.html#NMSettingConnection--slave-type" title="The “slave-type” property"><span class="type">“slave-type”</span></a> property of the connection.</p> +<p>Returns the <a href="NMSettingConnection.html#NMSettingConnection--slave-type"><span class="type">“slave-type”</span></a> property of the connection.</p> <div class="refsect3"> <a name="nm-setting-connection-get-slave-type.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -1322,7 +1168,7 @@ nm_setting_connection_get_slave_type (<em class="parameter"><code><a class="link <pre class="programlisting"><a class="link" href="NMSettingConnection.html#NMSettingConnectionAutoconnectSlaves" title="enum NMSettingConnectionAutoconnectSlaves"><span class="returnvalue">NMSettingConnectionAutoconnectSlaves</span></a> nm_setting_connection_get_autoconnect_slaves (<em class="parameter"><code><a class="link" href="NMSettingConnection.html" title="NMSettingConnection"><span class="type">NMSettingConnection</span></a> *setting</code></em>);</pre> -<p>Returns the <a class="link" href="NMSettingConnection.html#NMSettingConnection--autoconnect-slaves" title="The “autoconnect-slaves” property"><span class="type">“autoconnect-slaves”</span></a> property of the connection.</p> +<p>Returns the <a href="NMSettingConnection.html#NMSettingConnection--autoconnect-slaves"><span class="type">“autoconnect-slaves”</span></a> property of the connection.</p> <div class="refsect3"> <a name="nm-setting-connection-get-autoconnect-slaves.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -1393,7 +1239,9 @@ nm_setting_connection_get_secondary (<em class="parameter"><code><a class="link" </tr> <tr> <td class="parameter_name"><p>idx</p></td> -<td class="parameter_description"><p>the zero-based index of the secondary connection UUID entry</p></td> +<td class="parameter_description"><p>the zero-based index of the secondary connection UUID entry. +Access one past the length of secondaries is ok and will return +<a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. Otherwise, it is a user error.</p></td> <td class="parameter_annotations"> </td> </tr> </tbody> @@ -1402,7 +1250,9 @@ nm_setting_connection_get_secondary (<em class="parameter"><code><a class="link" <div class="refsect3"> <a name="nm-setting-connection-get-secondary.returns"></a><h4>Returns</h4> <p> the secondary connection UUID at index <em class="parameter"><code>idx</code></em> -</p> +or +<a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if <em class="parameter"><code>idx</code></em> +is the number of secondaries.</p> </div> </div> <hr> @@ -1531,7 +1381,7 @@ nm_setting_connection_get_gateway_ping_timeout </div> <div class="refsect3"> <a name="nm-setting-connection-get-gateway-ping-timeout.returns"></a><h4>Returns</h4> -<p> the value contained in the <a class="link" href="NMSettingConnection.html#NMSettingConnection--gateway-ping-timeout" title="The “gateway-ping-timeout” property"><span class="type">“gateway-ping-timeout”</span></a> +<p> the value contained in the <a href="NMSettingConnection.html#NMSettingConnection--gateway-ping-timeout"><span class="type">“gateway-ping-timeout”</span></a> property.</p> </div> </div> @@ -1557,7 +1407,7 @@ nm_setting_connection_get_metered (<em class="parameter"><code><a class="link" h </div> <div class="refsect3"> <a name="nm-setting-connection-get-metered.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingConnection.html#NMSettingConnection--metered" title="The “metered” property"><span class="type">“metered”</span></a> property of the setting.</p> +<p> the <a href="NMSettingConnection.html#NMSettingConnection--metered"><span class="type">“metered”</span></a> property of the setting.</p> </div> <p class="since">Since: 1.2</p> </div> @@ -1566,7 +1416,7 @@ nm_setting_connection_get_metered (<em class="parameter"><code><a class="link" h <a name="nm-setting-connection-get-lldp"></a><h3>nm_setting_connection_get_lldp ()</h3> <pre class="programlisting"><a class="link" href="NMSettingConnection.html#NMSettingConnectionLldp" title="enum NMSettingConnectionLldp"><span class="returnvalue">NMSettingConnectionLldp</span></a> nm_setting_connection_get_lldp (<em class="parameter"><code><a class="link" href="NMSettingConnection.html" title="NMSettingConnection"><span class="type">NMSettingConnection</span></a> *setting</code></em>);</pre> -<p>Returns the <a class="link" href="NMSettingConnection.html#NMSettingConnection--lldp" title="The “lldp” property"><span class="type">“lldp”</span></a> property of the connection.</p> +<p>Returns the <a href="NMSettingConnection.html#NMSettingConnection--lldp"><span class="type">“lldp”</span></a> property of the connection.</p> <div class="refsect3"> <a name="nm-setting-connection-get-lldp.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -1595,7 +1445,7 @@ enabled for the connection.</p> <pre class="programlisting"><span class="returnvalue">int</span> nm_setting_connection_get_auth_retries (<em class="parameter"><code><a class="link" href="NMSettingConnection.html" title="NMSettingConnection"><span class="type">NMSettingConnection</span></a> *setting</code></em>);</pre> -<p>Returns the value contained in the <a class="link" href="NMSettingConnection.html#NMSettingConnection--auth-retries" title="The “auth-retries” property"><span class="type">“auth-retries”</span></a> property.</p> +<p>Returns the value contained in the <a href="NMSettingConnection.html#NMSettingConnection--auth-retries"><span class="type">“auth-retries”</span></a> property.</p> <div class="refsect3"> <a name="nm-setting-connection-get-auth-retries.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -1640,7 +1490,7 @@ nm_setting_connection_get_mdns (<em class="parameter"><code><a class="link" href </div> <div class="refsect3"> <a name="nm-setting-connection-get-mdns.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingConnection.html#NMSettingConnection--mdns" title="The “mdns” property"><span class="type">“mdns”</span></a> property of the setting.</p> +<p> the <a href="NMSettingConnection.html#NMSettingConnection--mdns"><span class="type">“mdns”</span></a> property of the setting.</p> </div> <p class="since">Since: 1.12</p> </div> @@ -1666,7 +1516,7 @@ nm_setting_connection_get_llmnr (<em class="parameter"><code><a class="link" hre </div> <div class="refsect3"> <a name="nm-setting-connection-get-llmnr.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingConnection.html#NMSettingConnection--llmnr" title="The “llmnr” property"><span class="type">“llmnr”</span></a> property of the setting.</p> +<p> the <a href="NMSettingConnection.html#NMSettingConnection--llmnr"><span class="type">“llmnr”</span></a> property of the setting.</p> </div> <p class="since">Since: 1.14</p> </div> @@ -1703,7 +1553,7 @@ the timeout in milliseconds. -1 is the default.</p> <a name="nm-setting-connection-get-mud-url"></a><h3>nm_setting_connection_get_mud_url ()</h3> <pre class="programlisting">const <span class="returnvalue">char</span> * nm_setting_connection_get_mud_url (<em class="parameter"><code><a class="link" href="NMSettingConnection.html" title="NMSettingConnection"><span class="type">NMSettingConnection</span></a> *setting</code></em>);</pre> -<p>Returns the value contained in the <a class="link" href="NMSettingConnection.html#NMSettingConnection--mud-url" title="The “mud-url” property"><span class="type">“mud-url”</span></a> +<p>Returns the value contained in the <a href="NMSettingConnection.html#NMSettingConnection--mud-url"><span class="type">“mud-url”</span></a> property.</p> <div class="refsect3"> <a name="nm-setting-connection-get-mud-url.parameters"></a><h4>Parameters</h4> @@ -2069,388 +1919,6 @@ master is activated</p> </div> <p class="since">Since: 1.14</p> </div> -<hr> -<div class="refsect2"> -<a name="NMSettingConnection-struct"></a><h3>NMSettingConnection</h3> -<pre class="programlisting">typedef struct _NMSettingConnection NMSettingConnection;</pre> -<p>General Connection Profile Settings</p> -</div> -</div> -<div class="refsect1"> -<a name="NMSettingConnection.property-details"></a><h2>Property Details</h2> -<div class="refsect2"> -<a name="NMSettingConnection--auth-retries"></a><h3>The <code class="literal">“auth-retries”</code> property</h3> -<pre class="programlisting"> “auth-retries” <span class="type">int</span></pre> -<p>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.</p> -<p>Currently, this only applies to 802-1x authentication.</p> -<p>Owner: NMSettingConnection</p> -<p>Flags: Read / Write</p> -<p>Allowed values: >= -1</p> -<p>Default value: -1</p> -<p class="since">Since: 1.10</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingConnection--autoconnect"></a><h3>The <code class="literal">“autoconnect”</code> property</h3> -<pre class="programlisting"> “autoconnect” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>Whether or not the connection should be automatically connected by -NetworkManager when the resources for the connection are available. -<a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to automatically activate the connection, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to require manual -intervention to activate the connection.</p> -<p>Note that autoconnect is not implemented for VPN profiles. See -<a class="link" href="NMSettingConnection.html#NMSettingConnection--secondaries" title="The “secondaries” property"><span class="type">“secondaries”</span></a> as an alternative to automatically -connect VPN profiles.</p> -<p>Owner: NMSettingConnection</p> -<p>Flags: Read / Write</p> -<p>Default value: TRUE</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingConnection--autoconnect-priority"></a><h3>The <code class="literal">“autoconnect-priority”</code> property</h3> -<pre class="programlisting"> “autoconnect-priority” <span class="type">int</span></pre> -<p>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.</p> -<p>Owner: NMSettingConnection</p> -<p>Flags: Read / Write</p> -<p>Allowed values: [-999,999]</p> -<p>Default value: 0</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingConnection--autoconnect-retries"></a><h3>The <code class="literal">“autoconnect-retries”</code> property</h3> -<pre class="programlisting"> “autoconnect-retries” <span class="type">int</span></pre> -<p>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.</p> -<p>Owner: NMSettingConnection</p> -<p>Flags: Read / Write</p> -<p>Allowed values: >= -1</p> -<p>Default value: -1</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingConnection--autoconnect-slaves"></a><h3>The <code class="literal">“autoconnect-slaves”</code> property</h3> -<pre class="programlisting"> “autoconnect-slaves” <a class="link" href="NMSettingConnection.html#NMSettingConnectionAutoconnectSlaves" title="enum NMSettingConnectionAutoconnectSlaves"><span class="type">NMSettingConnectionAutoconnectSlaves</span></a></pre> -<p>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 <a class="link" href="NMSettingConnection.html#NMSettingConnection--autoconnect" title="The “autoconnect” property"><span class="type">“autoconnect”</span></a>, -<a class="link" href="NMSettingConnection.html#NMSettingConnection--autoconnect-priority" title="The “autoconnect-priority” property"><span class="type">“autoconnect-priority”</span></a> and <a class="link" href="NMSettingConnection.html#NMSettingConnection--autoconnect-retries" title="The “autoconnect-retries” property"><span class="type">“autoconnect-retries”</span></a> -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.</p> -<p>Owner: NMSettingConnection</p> -<p>Flags: Read / Write</p> -<p>Default value: NM_SETTING_CONNECTION_AUTOCONNECT_SLAVES_DEFAULT</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingConnection--gateway-ping-timeout"></a><h3>The <code class="literal">“gateway-ping-timeout”</code> property</h3> -<pre class="programlisting"> “gateway-ping-timeout” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>If greater than zero, delay success of IP addressing until either the -timeout is reached, or an IP gateway replies to a ping.</p> -<p>Owner: NMSettingConnection</p> -<p>Flags: Read / Write</p> -<p>Allowed values: <= 600</p> -<p>Default value: 0</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingConnection--id"></a><h3>The <code class="literal">“id”</code> property</h3> -<pre class="programlisting"> “id” <span class="type">char</span> *</pre> -<p>A human readable unique identifier for the connection, like "Work Wi-Fi" -or "T-Mobile 3G".</p> -<p>Owner: NMSettingConnection</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingConnection--interface-name"></a><h3>The <code class="literal">“interface-name”</code> property</h3> -<pre class="programlisting"> “interface-name” <span class="type">char</span> *</pre> -<p>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).</p> -<p>For software devices this specifies the name of the created device.</p> -<p>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.</p> -<p>Owner: NMSettingConnection</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingConnection--lldp"></a><h3>The <code class="literal">“lldp”</code> property</h3> -<pre class="programlisting"> “lldp” <span class="type">int</span></pre> -<p>Whether LLDP is enabled for the connection.</p> -<p>Owner: NMSettingConnection</p> -<p>Flags: Read / Write</p> -<p>Default value: -1</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingConnection--llmnr"></a><h3>The <code class="literal">“llmnr”</code> property</h3> -<pre class="programlisting"> “llmnr” <span class="type">int</span></pre> -<p>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.</p> -<p>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").</p> -<p>This feature requires a plugin which supports LLMNR. Otherwise, the -setting has no effect. One such plugin is dns-systemd-resolved.</p> -<p>Owner: NMSettingConnection</p> -<p>Flags: Read / Write</p> -<p>Default value: -1</p> -<p class="since">Since: 1.14</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingConnection--master"></a><h3>The <code class="literal">“master”</code> property</h3> -<pre class="programlisting"> “master” <span class="type">char</span> *</pre> -<p>Interface name of the master device or UUID of the master connection.</p> -<p>Owner: NMSettingConnection</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingConnection--mdns"></a><h3>The <code class="literal">“mdns”</code> property</h3> -<pre class="programlisting"> “mdns” <span class="type">int</span></pre> -<p>Whether mDNS is enabled for the connection.</p> -<p>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").</p> -<p>This feature requires a plugin which supports mDNS. Otherwise, the -setting has no effect. One such plugin is dns-systemd-resolved.</p> -<p>Owner: NMSettingConnection</p> -<p>Flags: Read / Write</p> -<p>Default value: -1</p> -<p class="since">Since: 1.12</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingConnection--metered"></a><h3>The <code class="literal">“metered”</code> property</h3> -<pre class="programlisting"> “metered” <a class="link" href="libnm-nm-dbus-interface.html#NMMetered" title="enum NMMetered"><span class="type">NMMetered</span></a></pre> -<p>Whether the connection is metered.</p> -<p>When updating this property on a currently activated connection, -the change takes effect immediately.</p> -<p>Owner: NMSettingConnection</p> -<p>Flags: Read / Write</p> -<p>Default value: NM_METERED_UNKNOWN</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingConnection--mud-url"></a><h3>The <code class="literal">“mud-url”</code> property</h3> -<pre class="programlisting"> “mud-url” <span class="type">char</span> *</pre> -<p>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://".</p> -<p>The special value "none" is allowed to indicate that no MUD URL is used.</p> -<p>If the per-profile value is unspecified (the default), a global connection default gets -consulted. If still unspecified, the ultimate default is "none".</p> -<p>Owner: NMSettingConnection</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.26</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingConnection--multi-connect"></a><h3>The <code class="literal">“multi-connect”</code> property</h3> -<pre class="programlisting"> “multi-connect” <span class="type">int</span></pre> -<p>Specifies whether the profile can be active multiple times at a particular -moment. The value is of type <a class="link" href="libnm-nm-dbus-interface.html#NMConnectionMultiConnect" title="enum NMConnectionMultiConnect"><span class="type">NMConnectionMultiConnect</span></a>.</p> -<p>Owner: NMSettingConnection</p> -<p>Flags: Read / Write</p> -<p>Default value: 0</p> -<p class="since">Since: 1.14</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingConnection--permissions"></a><h3>The <code class="literal">“permissions”</code> property</h3> -<pre class="programlisting"> “permissions” <a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></pre> -<p>An array of strings defining what access a given user has to this -connection. If this is <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> 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".</p> -<p>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.</p> -<p>Owner: NMSettingConnection</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingConnection--read-only"></a><h3>The <code class="literal">“read-only”</code> property</h3> -<pre class="programlisting"> “read-only” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p><a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if the connection can be modified using the provided settings -service's D-Bus interface with the right privileges, or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the -connection is read-only and cannot be modified.</p> -<p>Owner: NMSettingConnection</p> -<p>Flags: Read / Write</p> -<p>Default value: FALSE</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingConnection--secondaries"></a><h3>The <code class="literal">“secondaries”</code> property</h3> -<pre class="programlisting"> “secondaries” <a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></pre> -<p>List of connection UUIDs that should be activated when the base -connection itself is activated. Currently, only VPN connections are -supported.</p> -<p>Owner: NMSettingConnection</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingConnection--slave-type"></a><h3>The <code class="literal">“slave-type”</code> property</h3> -<pre class="programlisting"> “slave-type” <span class="type">char</span> *</pre> -<p>Setting name of the device type of this slave's master connection (eg, -<a class="link" href="NMSettingBond.html#NM-SETTING-BOND-SETTING-NAME:CAPS" title="NM_SETTING_BOND_SETTING_NAME"><code class="literal">NM_SETTING_BOND_SETTING_NAME</code></a>), or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if this connection is not a -slave.</p> -<p>Owner: NMSettingConnection</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingConnection--stable-id"></a><h3>The <code class="literal">“stable-id”</code> property</h3> -<pre class="programlisting"> “stable-id” <span class="type">char</span> *</pre> -<p>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.</p> -<p>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].</p> -<p>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.</p> -<p>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.</p> -<p>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.</p> -<p>Owner: NMSettingConnection</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.4</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingConnection--timestamp"></a><h3>The <code class="literal">“timestamp”</code> property</h3> -<pre class="programlisting"> “timestamp” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a></pre> -<p>The time, in seconds since the Unix Epoch, that the connection was last -_successfully_ fully activated.</p> -<p>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).</p> -<p>Owner: NMSettingConnection</p> -<p>Flags: Read / Write</p> -<p>Default value: 0</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingConnection--type"></a><h3>The <code class="literal">“type”</code> property</h3> -<pre class="programlisting"> “type” <span class="type">char</span> *</pre> -<p>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).</p> -<p>Owner: NMSettingConnection</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingConnection--uuid"></a><h3>The <code class="literal">“uuid”</code> property</h3> -<pre class="programlisting"> “uuid” <span class="type">char</span> *</pre> -<p>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 -<a class="link" href="NMSettingConnection.html#NMSettingConnection--id" title="The “id” property"><span class="type">“id”</span></a> property or <a class="link" href="NMSettingIP4Config.html" title="NMSettingIP4Config"><span class="type">NMSettingIP4Config</span></a> changes, but -might need to be re-created when the Wi-Fi SSID, mobile broadband network -provider, or <a class="link" href="NMSettingConnection.html#NMSettingConnection--type" title="The “type” property"><span class="type">“type”</span></a> property changes.</p> -<p>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 <a class="link" href="libnm-nm-utils.html#nm-utils-uuid-generate" title="nm_utils_uuid_generate ()"><code class="function">nm_utils_uuid_generate()</code></a> or -<code class="function">nm_utils_uuid_generate_from_string()</code>.</p> -<p>Owner: NMSettingConnection</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingConnection--wait-device-timeout"></a><h3>The <code class="literal">“wait-device-timeout”</code> property</h3> -<pre class="programlisting"> “wait-device-timeout” <span class="type">int</span></pre> -<p>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.</p> -<p>The value 0 means no wait time. The default value is -1, which -currently has the same meaning as no wait time.</p> -<p>Owner: NMSettingConnection</p> -<p>Flags: Read / Write</p> -<p>Allowed values: >= -1</p> -<p>Default value: -1</p> -<p class="since">Since: 1.20</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingConnection--zone"></a><h3>The <code class="literal">“zone”</code> property</h3> -<pre class="programlisting"> “zone” <span class="type">char</span> *</pre> -<p>The trust level of a the connection. Free form case-insensitive string -(for example "Home", "Work", "Public"). <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> or unspecified zone means -the connection will be placed in the default zone as defined by the -firewall.</p> -<p>When updating this property on a currently activated connection, -the change takes effect immediately.</p> -<p>Owner: NMSettingConnection</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> </div> </div> <div class="footer"> diff --git a/docs/libnm/html/NMSettingDcb.html b/docs/libnm/html/NMSettingDcb.html index 1f045b12..7c2467d0 100644 --- a/docs/libnm/html/NMSettingDcb.html +++ b/docs/libnm/html/NMSettingDcb.html @@ -16,8 +16,7 @@ <td width="100%" align="left" class="shortcuts"> <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> <a href="#NMSettingDcb.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> - <a href="#NMSettingDcb.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties"> <span class="dim">|</span> - <a href="#NMSettingDcb.properties" class="shortcut">Properties</a></span> + <a href="#NMSettingDcb.object-hierarchy" class="shortcut">Object Hierarchy</a></span> </td> <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> <td><a accesskey="u" href="ch03.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> @@ -220,100 +219,6 @@ </table></div> </div> <div class="refsect1"> -<a name="NMSettingDcb.properties"></a><h2>Properties</h2> -<div class="informaltable"><table class="informaltable" border="0"> -<colgroup> -<col width="150px" class="properties_type"> -<col width="300px" class="properties_name"> -<col width="200px" class="properties_flags"> -</colgroup> -<tbody> -<tr> -<td class="property_type"><a class="link" href="NMSettingDcb.html#NMSettingDcbFlags" title="enum NMSettingDcbFlags"><span class="type">NMSettingDcbFlags</span></a></td> -<td class="property_name"><a class="link" href="NMSettingDcb.html#NMSettingDcb--app-fcoe-flags" title="The “app-fcoe-flags” property">app-fcoe-flags</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingDcb.html#NMSettingDcb--app-fcoe-mode" title="The “app-fcoe-mode” property">app-fcoe-mode</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><span class="type">int</span></td> -<td class="property_name"><a class="link" href="NMSettingDcb.html#NMSettingDcb--app-fcoe-priority" title="The “app-fcoe-priority” property">app-fcoe-priority</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a class="link" href="NMSettingDcb.html#NMSettingDcbFlags" title="enum NMSettingDcbFlags"><span class="type">NMSettingDcbFlags</span></a></td> -<td class="property_name"><a class="link" href="NMSettingDcb.html#NMSettingDcb--app-fip-flags" title="The “app-fip-flags” property">app-fip-flags</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><span class="type">int</span></td> -<td class="property_name"><a class="link" href="NMSettingDcb.html#NMSettingDcb--app-fip-priority" title="The “app-fip-priority” property">app-fip-priority</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a class="link" href="NMSettingDcb.html#NMSettingDcbFlags" title="enum NMSettingDcbFlags"><span class="type">NMSettingDcbFlags</span></a></td> -<td class="property_name"><a class="link" href="NMSettingDcb.html#NMSettingDcb--app-iscsi-flags" title="The “app-iscsi-flags” property">app-iscsi-flags</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><span class="type">int</span></td> -<td class="property_name"><a class="link" href="NMSettingDcb.html#NMSettingDcb--app-iscsi-priority" title="The “app-iscsi-priority” property">app-iscsi-priority</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<a href="https://developer.gnome.org/glib/unstable/glib-Arrays.html#GArray"><span class="type">GArray</span></a> *</td> -<td class="property_name"><a class="link" href="NMSettingDcb.html#NMSettingDcb--priority-bandwidth" title="The “priority-bandwidth” property">priority-bandwidth</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<a href="https://developer.gnome.org/glib/unstable/glib-Arrays.html#GArray"><span class="type">GArray</span></a> *</td> -<td class="property_name"><a class="link" href="NMSettingDcb.html#NMSettingDcb--priority-flow-control" title="The “priority-flow-control” property">priority-flow-control</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a class="link" href="NMSettingDcb.html#NMSettingDcbFlags" title="enum NMSettingDcbFlags"><span class="type">NMSettingDcbFlags</span></a></td> -<td class="property_name"><a class="link" href="NMSettingDcb.html#NMSettingDcb--priority-flow-control-flags" title="The “priority-flow-control-flags” property">priority-flow-control-flags</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<a href="https://developer.gnome.org/glib/unstable/glib-Arrays.html#GArray"><span class="type">GArray</span></a> *</td> -<td class="property_name"><a class="link" href="NMSettingDcb.html#NMSettingDcb--priority-group-bandwidth" title="The “priority-group-bandwidth” property">priority-group-bandwidth</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a class="link" href="NMSettingDcb.html#NMSettingDcbFlags" title="enum NMSettingDcbFlags"><span class="type">NMSettingDcbFlags</span></a></td> -<td class="property_name"><a class="link" href="NMSettingDcb.html#NMSettingDcb--priority-group-flags" title="The “priority-group-flags” property">priority-group-flags</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<a href="https://developer.gnome.org/glib/unstable/glib-Arrays.html#GArray"><span class="type">GArray</span></a> *</td> -<td class="property_name"><a class="link" href="NMSettingDcb.html#NMSettingDcb--priority-group-id" title="The “priority-group-id” property">priority-group-id</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<a href="https://developer.gnome.org/glib/unstable/glib-Arrays.html#GArray"><span class="type">GArray</span></a> *</td> -<td class="property_name"><a class="link" href="NMSettingDcb.html#NMSettingDcb--priority-strict-bandwidth" title="The “priority-strict-bandwidth” property">priority-strict-bandwidth</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<a href="https://developer.gnome.org/glib/unstable/glib-Arrays.html#GArray"><span class="type">GArray</span></a> *</td> -<td class="property_name"><a class="link" href="NMSettingDcb.html#NMSettingDcb--priority-traffic-class" title="The “priority-traffic-class” property">priority-traffic-class</a></td> -<td class="property_flags">Read / Write</td> -</tr> -</tbody> -</table></div> -</div> -<div class="refsect1"> <a name="NMSettingDcb.other"></a><h2>Types and Values</h2> <div class="informaltable"><table class="informaltable" width="100%" border="0"> <colgroup> @@ -397,10 +302,6 @@ <td class="define_keyword">#define</td> <td class="function_name"><a class="link" href="NMSettingDcb.html#NM-SETTING-DCB-PRIORITY-TRAFFIC-CLASS:CAPS" title="NM_SETTING_DCB_PRIORITY_TRAFFIC_CLASS">NM_SETTING_DCB_PRIORITY_TRAFFIC_CLASS</a></td> </tr> -<tr> -<td class="datatype_keyword"> </td> -<td class="function_name"><a class="link" href="NMSettingDcb.html#NMSettingDcb-struct" title="NMSettingDcb">NMSettingDcb</a></td> -</tr> </tbody> </table></div> </div> @@ -408,9 +309,6 @@ <a name="NMSettingDcb.object-hierarchy"></a><h2>Object Hierarchy</h2> <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html">GFlags</a> <span class="lineart">╰──</span> NMSettingDcbFlags - <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a> - <span class="lineart">╰──</span> <a class="link" href="NMSetting.html" title="NMSetting">NMSetting</a> - <span class="lineart">╰──</span> NMSettingDcb </pre> </div> <div class="refsect1"> @@ -456,7 +354,7 @@ nm_setting_dcb_get_app_fcoe_flags (<em class="parameter"><code><a class="link" h </div> <div class="refsect3"> <a name="nm-setting-dcb-get-app-fcoe-flags.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingDcb.html#NMSettingDcb--app-fcoe-flags" title="The “app-fcoe-flags” property"><span class="type">“app-fcoe-flags”</span></a> property of the setting</p> +<p> the <a href="NMSettingDcb.html#NMSettingDcb--app-fcoe-flags"><span class="type">“app-fcoe-flags”</span></a> property of the setting</p> </div> </div> <hr> @@ -481,7 +379,7 @@ nm_setting_dcb_get_app_fcoe_priority (<em class="parameter"><code><a class="link </div> <div class="refsect3"> <a name="nm-setting-dcb-get-app-fcoe-priority.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingDcb.html#NMSettingDcb--app-fcoe-priority" title="The “app-fcoe-priority” property"><span class="type">“app-fcoe-priority”</span></a> property of the setting</p> +<p> the <a href="NMSettingDcb.html#NMSettingDcb--app-fcoe-priority"><span class="type">“app-fcoe-priority”</span></a> property of the setting</p> </div> </div> <hr> @@ -506,7 +404,7 @@ nm_setting_dcb_get_app_fcoe_mode (<em class="parameter"><code><a class="link" hr </div> <div class="refsect3"> <a name="nm-setting-dcb-get-app-fcoe-mode.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingDcb.html#NMSettingDcb--app-fcoe-mode" title="The “app-fcoe-mode” property"><span class="type">“app-fcoe-mode”</span></a> property of the setting</p> +<p> the <a href="NMSettingDcb.html#NMSettingDcb--app-fcoe-mode"><span class="type">“app-fcoe-mode”</span></a> property of the setting</p> </div> </div> <hr> @@ -531,7 +429,7 @@ nm_setting_dcb_get_app_iscsi_flags (<em class="parameter"><code><a class="link" </div> <div class="refsect3"> <a name="nm-setting-dcb-get-app-iscsi-flags.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingDcb.html#NMSettingDcb--app-iscsi-flags" title="The “app-iscsi-flags” property"><span class="type">“app-iscsi-flags”</span></a> property of the setting</p> +<p> the <a href="NMSettingDcb.html#NMSettingDcb--app-iscsi-flags"><span class="type">“app-iscsi-flags”</span></a> property of the setting</p> </div> </div> <hr> @@ -556,7 +454,7 @@ nm_setting_dcb_get_app_iscsi_priority (<em class="parameter"><code><a class="lin </div> <div class="refsect3"> <a name="nm-setting-dcb-get-app-iscsi-priority.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingDcb.html#NMSettingDcb--app-iscsi-priority" title="The “app-iscsi-priority” property"><span class="type">“app-iscsi-priority”</span></a> property of the setting</p> +<p> the <a href="NMSettingDcb.html#NMSettingDcb--app-iscsi-priority"><span class="type">“app-iscsi-priority”</span></a> property of the setting</p> </div> </div> <hr> @@ -581,7 +479,7 @@ nm_setting_dcb_get_app_fip_flags (<em class="parameter"><code><a class="link" hr </div> <div class="refsect3"> <a name="nm-setting-dcb-get-app-fip-flags.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingDcb.html#NMSettingDcb--app-fip-flags" title="The “app-fip-flags” property"><span class="type">“app-fip-flags”</span></a> property of the setting</p> +<p> the <a href="NMSettingDcb.html#NMSettingDcb--app-fip-flags"><span class="type">“app-fip-flags”</span></a> property of the setting</p> </div> </div> <hr> @@ -606,7 +504,7 @@ nm_setting_dcb_get_app_fip_priority (<em class="parameter"><code><a class="link" </div> <div class="refsect3"> <a name="nm-setting-dcb-get-app-fip-priority.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingDcb.html#NMSettingDcb--app-fip-priority" title="The “app-fip-priority” property"><span class="type">“app-fip-priority”</span></a> property of the setting</p> +<p> the <a href="NMSettingDcb.html#NMSettingDcb--app-fip-priority"><span class="type">“app-fip-priority”</span></a> property of the setting</p> </div> </div> <hr> @@ -632,7 +530,7 @@ nm_setting_dcb_get_priority_flow_control_flags </div> <div class="refsect3"> <a name="nm-setting-dcb-get-priority-flow-control-flags.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingDcb.html#NMSettingDcb--priority-flow-control-flags" title="The “priority-flow-control-flags” property"><span class="type">“priority-flow-control-flags”</span></a> property of the setting</p> +<p> the <a href="NMSettingDcb.html#NMSettingDcb--priority-flow-control-flags"><span class="type">“priority-flow-control-flags”</span></a> property of the setting</p> </div> </div> <hr> @@ -679,7 +577,7 @@ nm_setting_dcb_set_priority_flow_control (<em class="parameter"><code><a class="link" href="NMSettingDcb.html" title="NMSettingDcb"><span class="type">NMSettingDcb</span></a> *setting</code></em>, <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> user_priority</code></em>, <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> enabled</code></em>);</pre> -<p>These values are only valid when <a class="link" href="NMSettingDcb.html#NMSettingDcb--priority-flow-control" title="The “priority-flow-control” property"><span class="type">“priority-flow-control”</span></a> includes +<p>These values are only valid when <a href="NMSettingDcb.html#NMSettingDcb--priority-flow-control"><span class="type">“priority-flow-control”</span></a> includes the <a class="link" href="NMSettingDcb.html#NM-SETTING-DCB-FLAG-ENABLE:CAPS"><code class="literal">NM_SETTING_DCB_FLAG_ENABLE</code></a> flag.</p> <div class="refsect3"> <a name="nm-setting-dcb-set-priority-flow-control.parameters"></a><h4>Parameters</h4> @@ -732,7 +630,7 @@ nm_setting_dcb_get_priority_group_flags </div> <div class="refsect3"> <a name="nm-setting-dcb-get-priority-group-flags.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingDcb.html#NMSettingDcb--priority-group-flags" title="The “priority-group-flags” property"><span class="type">“priority-group-flags”</span></a> property of the setting</p> +<p> the <a href="NMSettingDcb.html#NMSettingDcb--priority-group-flags"><span class="type">“priority-group-flags”</span></a> property of the setting</p> </div> </div> <hr> @@ -767,7 +665,7 @@ nm_setting_dcb_get_priority_group_id (<em class="parameter"><code><a class="link <a name="nm-setting-dcb-get-priority-group-id.returns"></a><h4>Returns</h4> <p> the group number <em class="parameter"><code>user_priority</code></em> is assigned to. These values are -only valid when <a class="link" href="NMSettingDcb.html#NMSettingDcb--priority-group-flags" title="The “priority-group-flags” property"><span class="type">“priority-group-flags”</span></a> includes the +only valid when <a href="NMSettingDcb.html#NMSettingDcb--priority-group-flags"><span class="type">“priority-group-flags”</span></a> includes the <a class="link" href="NMSettingDcb.html#NM-SETTING-DCB-FLAG-ENABLE:CAPS"><code class="literal">NM_SETTING_DCB_FLAG_ENABLE</code></a> flag.</p> </div> </div> @@ -778,7 +676,7 @@ only valid when <a class="link" href="NMSettingDcb.html#NMSettingDcb--priority-g nm_setting_dcb_set_priority_group_id (<em class="parameter"><code><a class="link" href="NMSettingDcb.html" title="NMSettingDcb"><span class="type">NMSettingDcb</span></a> *setting</code></em>, <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> user_priority</code></em>, <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> group_id</code></em>);</pre> -<p>These values are only valid when <a class="link" href="NMSettingDcb.html#NMSettingDcb--priority-group-flags" title="The “priority-group-flags” property"><span class="type">“priority-group-flags”</span></a> includes +<p>These values are only valid when <a href="NMSettingDcb.html#NMSettingDcb--priority-group-flags"><span class="type">“priority-group-flags”</span></a> includes the <a class="link" href="NMSettingDcb.html#NM-SETTING-DCB-FLAG-ENABLE:CAPS"><code class="literal">NM_SETTING_DCB_FLAG_ENABLE</code></a> flag.</p> <div class="refsect3"> <a name="nm-setting-dcb-set-priority-group-id.parameters"></a><h4>Parameters</h4> @@ -843,7 +741,7 @@ nm_setting_dcb_get_priority_group_bandwidth <a name="nm-setting-dcb-get-priority-group-bandwidth.returns"></a><h4>Returns</h4> <p> the bandwidth percentage assigned to <em class="parameter"><code>group_id</code></em> . These values are -only valid when <a class="link" href="NMSettingDcb.html#NMSettingDcb--priority-group-flags" title="The “priority-group-flags” property"><span class="type">“priority-group-flags”</span></a> includes the +only valid when <a href="NMSettingDcb.html#NMSettingDcb--priority-group-flags"><span class="type">“priority-group-flags”</span></a> includes the <a class="link" href="NMSettingDcb.html#NM-SETTING-DCB-FLAG-ENABLE:CAPS"><code class="literal">NM_SETTING_DCB_FLAG_ENABLE</code></a> flag.</p> </div> </div> @@ -855,7 +753,7 @@ nm_setting_dcb_set_priority_group_bandwidth (<em class="parameter"><code><a class="link" href="NMSettingDcb.html" title="NMSettingDcb"><span class="type">NMSettingDcb</span></a> *setting</code></em>, <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> group_id</code></em>, <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> bandwidth_percent</code></em>);</pre> -<p>These values are only valid when <a class="link" href="NMSettingDcb.html#NMSettingDcb--priority-group-flags" title="The “priority-group-flags” property"><span class="type">“priority-group-flags”</span></a> includes +<p>These values are only valid when <a href="NMSettingDcb.html#NMSettingDcb--priority-group-flags"><span class="type">“priority-group-flags”</span></a> includes the <a class="link" href="NMSettingDcb.html#NM-SETTING-DCB-FLAG-ENABLE:CAPS"><code class="literal">NM_SETTING_DCB_FLAG_ENABLE</code></a> flag.</p> <div class="refsect3"> <a name="nm-setting-dcb-set-priority-group-bandwidth.parameters"></a><h4>Parameters</h4> @@ -918,7 +816,7 @@ nm_setting_dcb_get_priority_bandwidth (<em class="parameter"><code><a class="lin <a name="nm-setting-dcb-get-priority-bandwidth.returns"></a><h4>Returns</h4> <p> the allowed bandwidth percentage of <em class="parameter"><code>user_priority</code></em> in its priority group. -These values are only valid when <a class="link" href="NMSettingDcb.html#NMSettingDcb--priority-group-flags" title="The “priority-group-flags” property"><span class="type">“priority-group-flags”</span></a> includes the +These values are only valid when <a href="NMSettingDcb.html#NMSettingDcb--priority-group-flags"><span class="type">“priority-group-flags”</span></a> includes the <a class="link" href="NMSettingDcb.html#NM-SETTING-DCB-FLAG-ENABLE:CAPS"><code class="literal">NM_SETTING_DCB_FLAG_ENABLE</code></a> flag.</p> </div> </div> @@ -929,7 +827,7 @@ These values are only valid when <a class="link" href="NMSettingDcb.html#NMSetti nm_setting_dcb_set_priority_bandwidth (<em class="parameter"><code><a class="link" href="NMSettingDcb.html" title="NMSettingDcb"><span class="type">NMSettingDcb</span></a> *setting</code></em>, <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> user_priority</code></em>, <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> bandwidth_percent</code></em>);</pre> -<p>These values are only valid when <a class="link" href="NMSettingDcb.html#NMSettingDcb--priority-group-flags" title="The “priority-group-flags” property"><span class="type">“priority-group-flags”</span></a> includes +<p>These values are only valid when <a href="NMSettingDcb.html#NMSettingDcb--priority-group-flags"><span class="type">“priority-group-flags”</span></a> includes the <a class="link" href="NMSettingDcb.html#NM-SETTING-DCB-FLAG-ENABLE:CAPS"><code class="literal">NM_SETTING_DCB_FLAG_ENABLE</code></a> flag.</p> <div class="refsect3"> <a name="nm-setting-dcb-set-priority-bandwidth.parameters"></a><h4>Parameters</h4> @@ -995,7 +893,7 @@ nm_setting_dcb_get_priority_strict_bandwidth <p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>user_priority</code></em> may use all of the bandwidth allocated to its assigned group, or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if not. These values are only valid when -<a class="link" href="NMSettingDcb.html#NMSettingDcb--priority-group-flags" title="The “priority-group-flags” property"><span class="type">“priority-group-flags”</span></a> includes the <a class="link" href="NMSettingDcb.html#NM-SETTING-DCB-FLAG-ENABLE:CAPS"><code class="literal">NM_SETTING_DCB_FLAG_ENABLE</code></a> flag.</p> +<a href="NMSettingDcb.html#NMSettingDcb--priority-group-flags"><span class="type">“priority-group-flags”</span></a> includes the <a class="link" href="NMSettingDcb.html#NM-SETTING-DCB-FLAG-ENABLE:CAPS"><code class="literal">NM_SETTING_DCB_FLAG_ENABLE</code></a> flag.</p> </div> </div> <hr> @@ -1006,7 +904,7 @@ nm_setting_dcb_set_priority_strict_bandwidth (<em class="parameter"><code><a class="link" href="NMSettingDcb.html" title="NMSettingDcb"><span class="type">NMSettingDcb</span></a> *setting</code></em>, <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> user_priority</code></em>, <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> strict</code></em>);</pre> -<p>These values are only valid when <a class="link" href="NMSettingDcb.html#NMSettingDcb--priority-group-flags" title="The “priority-group-flags” property"><span class="type">“priority-group-flags”</span></a> includes +<p>These values are only valid when <a href="NMSettingDcb.html#NMSettingDcb--priority-group-flags"><span class="type">“priority-group-flags”</span></a> includes the <a class="link" href="NMSettingDcb.html#NM-SETTING-DCB-FLAG-ENABLE:CAPS"><code class="literal">NM_SETTING_DCB_FLAG_ENABLE</code></a> flag.</p> <div class="refsect3"> <a name="nm-setting-dcb-set-priority-strict-bandwidth.parameters"></a><h4>Parameters</h4> @@ -1071,7 +969,7 @@ nm_setting_dcb_get_priority_traffic_class <a name="nm-setting-dcb-get-priority-traffic-class.returns"></a><h4>Returns</h4> <p> the traffic class assigned to <em class="parameter"><code>user_priority</code></em> . These values are only -valid when <a class="link" href="NMSettingDcb.html#NMSettingDcb--priority-group-flags" title="The “priority-group-flags” property"><span class="type">“priority-group-flags”</span></a> includes the +valid when <a href="NMSettingDcb.html#NMSettingDcb--priority-group-flags"><span class="type">“priority-group-flags”</span></a> includes the <a class="link" href="NMSettingDcb.html#NM-SETTING-DCB-FLAG-ENABLE:CAPS"><code class="literal">NM_SETTING_DCB_FLAG_ENABLE</code></a> flag.</p> </div> </div> @@ -1242,179 +1140,6 @@ peer configuration advertisements</p> <pre class="programlisting">#define NM_SETTING_DCB_PRIORITY_TRAFFIC_CLASS "priority-traffic-class" </pre> </div> -<hr> -<div class="refsect2"> -<a name="NMSettingDcb-struct"></a><h3>NMSettingDcb</h3> -<pre class="programlisting">typedef struct _NMSettingDcb NMSettingDcb;</pre> -<p>Data Center Bridging Settings</p> -</div> -</div> -<div class="refsect1"> -<a name="NMSettingDcb.property-details"></a><h2>Property Details</h2> -<div class="refsect2"> -<a name="NMSettingDcb--app-fcoe-flags"></a><h3>The <code class="literal">“app-fcoe-flags”</code> property</h3> -<pre class="programlisting"> “app-fcoe-flags” <a class="link" href="NMSettingDcb.html#NMSettingDcbFlags" title="enum NMSettingDcbFlags"><span class="type">NMSettingDcbFlags</span></a></pre> -<p>Specifies the <a class="link" href="NMSettingDcb.html#NMSettingDcbFlags" title="enum NMSettingDcbFlags"><span class="type">NMSettingDcbFlags</span></a> for the DCB FCoE application. Flags may -be any combination of <a class="link" href="NMSettingDcb.html#NM-SETTING-DCB-FLAG-ENABLE:CAPS"><code class="literal">NM_SETTING_DCB_FLAG_ENABLE</code></a>, -<a class="link" href="NMSettingDcb.html#NM-SETTING-DCB-FLAG-ADVERTISE:CAPS"><code class="literal">NM_SETTING_DCB_FLAG_ADVERTISE</code></a>, and <a class="link" href="NMSettingDcb.html#NM-SETTING-DCB-FLAG-WILLING:CAPS"><code class="literal">NM_SETTING_DCB_FLAG_WILLING</code></a>.</p> -<p>Owner: NMSettingDcb</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingDcb--app-fcoe-mode"></a><h3>The <code class="literal">“app-fcoe-mode”</code> property</h3> -<pre class="programlisting"> “app-fcoe-mode” <span class="type">char</span> *</pre> -<p>The FCoE controller mode; either <a class="link" href="NMSettingDcb.html#NM-SETTING-DCB-FCOE-MODE-FABRIC:CAPS" title="NM_SETTING_DCB_FCOE_MODE_FABRIC"><code class="literal">NM_SETTING_DCB_FCOE_MODE_FABRIC</code></a> -(default) or <a class="link" href="NMSettingDcb.html#NM-SETTING-DCB-FCOE-MODE-VN2VN:CAPS" title="NM_SETTING_DCB_FCOE_MODE_VN2VN"><code class="literal">NM_SETTING_DCB_FCOE_MODE_VN2VN</code></a>.</p> -<p>Owner: NMSettingDcb</p> -<p>Flags: Read / Write</p> -<p>Default value: "fabric"</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingDcb--app-fcoe-priority"></a><h3>The <code class="literal">“app-fcoe-priority”</code> property</h3> -<pre class="programlisting"> “app-fcoe-priority” <span class="type">int</span></pre> -<p>The highest User Priority (0 - 7) which FCoE frames should use, or -1 for -default priority. Only used when the <a class="link" href="NMSettingDcb.html#NMSettingDcb--app-fcoe-flags" title="The “app-fcoe-flags” property"><span class="type">“app-fcoe-flags”</span></a> -property includes the <a class="link" href="NMSettingDcb.html#NM-SETTING-DCB-FLAG-ENABLE:CAPS"><code class="literal">NM_SETTING_DCB_FLAG_ENABLE</code></a> flag.</p> -<p>Owner: NMSettingDcb</p> -<p>Flags: Read / Write</p> -<p>Allowed values: [-1,7]</p> -<p>Default value: -1</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingDcb--app-fip-flags"></a><h3>The <code class="literal">“app-fip-flags”</code> property</h3> -<pre class="programlisting"> “app-fip-flags” <a class="link" href="NMSettingDcb.html#NMSettingDcbFlags" title="enum NMSettingDcbFlags"><span class="type">NMSettingDcbFlags</span></a></pre> -<p>Specifies the <a class="link" href="NMSettingDcb.html#NMSettingDcbFlags" title="enum NMSettingDcbFlags"><span class="type">NMSettingDcbFlags</span></a> for the DCB FIP application. Flags may -be any combination of <a class="link" href="NMSettingDcb.html#NM-SETTING-DCB-FLAG-ENABLE:CAPS"><code class="literal">NM_SETTING_DCB_FLAG_ENABLE</code></a>, -<a class="link" href="NMSettingDcb.html#NM-SETTING-DCB-FLAG-ADVERTISE:CAPS"><code class="literal">NM_SETTING_DCB_FLAG_ADVERTISE</code></a>, and <a class="link" href="NMSettingDcb.html#NM-SETTING-DCB-FLAG-WILLING:CAPS"><code class="literal">NM_SETTING_DCB_FLAG_WILLING</code></a>.</p> -<p>Owner: NMSettingDcb</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingDcb--app-fip-priority"></a><h3>The <code class="literal">“app-fip-priority”</code> property</h3> -<pre class="programlisting"> “app-fip-priority” <span class="type">int</span></pre> -<p>The highest User Priority (0 - 7) which FIP frames should use, or -1 for -default priority. Only used when the <a class="link" href="NMSettingDcb.html#NMSettingDcb--app-fip-flags" title="The “app-fip-flags” property"><span class="type">“app-fip-flags”</span></a> -property includes the <a class="link" href="NMSettingDcb.html#NM-SETTING-DCB-FLAG-ENABLE:CAPS"><code class="literal">NM_SETTING_DCB_FLAG_ENABLE</code></a> flag.</p> -<p>Owner: NMSettingDcb</p> -<p>Flags: Read / Write</p> -<p>Allowed values: [-1,7]</p> -<p>Default value: -1</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingDcb--app-iscsi-flags"></a><h3>The <code class="literal">“app-iscsi-flags”</code> property</h3> -<pre class="programlisting"> “app-iscsi-flags” <a class="link" href="NMSettingDcb.html#NMSettingDcbFlags" title="enum NMSettingDcbFlags"><span class="type">NMSettingDcbFlags</span></a></pre> -<p>Specifies the <a class="link" href="NMSettingDcb.html#NMSettingDcbFlags" title="enum NMSettingDcbFlags"><span class="type">NMSettingDcbFlags</span></a> for the DCB iSCSI application. Flags -may be any combination of <a class="link" href="NMSettingDcb.html#NM-SETTING-DCB-FLAG-ENABLE:CAPS"><code class="literal">NM_SETTING_DCB_FLAG_ENABLE</code></a>, -<a class="link" href="NMSettingDcb.html#NM-SETTING-DCB-FLAG-ADVERTISE:CAPS"><code class="literal">NM_SETTING_DCB_FLAG_ADVERTISE</code></a>, and <a class="link" href="NMSettingDcb.html#NM-SETTING-DCB-FLAG-WILLING:CAPS"><code class="literal">NM_SETTING_DCB_FLAG_WILLING</code></a>.</p> -<p>Owner: NMSettingDcb</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingDcb--app-iscsi-priority"></a><h3>The <code class="literal">“app-iscsi-priority”</code> property</h3> -<pre class="programlisting"> “app-iscsi-priority” <span class="type">int</span></pre> -<p>The highest User Priority (0 - 7) which iSCSI frames should use, or -1 -for default priority. Only used when the <a class="link" href="NMSettingDcb.html#NMSettingDcb--app-iscsi-flags" title="The “app-iscsi-flags” property"><span class="type">“app-iscsi-flags”</span></a> -property includes the <a class="link" href="NMSettingDcb.html#NM-SETTING-DCB-FLAG-ENABLE:CAPS"><code class="literal">NM_SETTING_DCB_FLAG_ENABLE</code></a> flag.</p> -<p>Owner: NMSettingDcb</p> -<p>Flags: Read / Write</p> -<p>Allowed values: [-1,7]</p> -<p>Default value: -1</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingDcb--priority-bandwidth"></a><h3>The <code class="literal">“priority-bandwidth”</code> property</h3> -<pre class="programlisting"> “priority-bandwidth” <a href="https://developer.gnome.org/glib/unstable/glib-Arrays.html#GArray"><span class="type">GArray</span></a> *</pre> -<p>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.</p> -<p><span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GArray(guint)]</span></p> -<p>Owner: NMSettingDcb</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingDcb--priority-flow-control"></a><h3>The <code class="literal">“priority-flow-control”</code> property</h3> -<pre class="programlisting"> “priority-flow-control” <a href="https://developer.gnome.org/glib/unstable/glib-Arrays.html#GArray"><span class="type">GArray</span></a> *</pre> -<p>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.</p> -<p><span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GArray(gboolean)]</span></p> -<p>Owner: NMSettingDcb</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingDcb--priority-flow-control-flags"></a><h3>The <code class="literal">“priority-flow-control-flags”</code> property</h3> -<pre class="programlisting"> “priority-flow-control-flags” <a class="link" href="NMSettingDcb.html#NMSettingDcbFlags" title="enum NMSettingDcbFlags"><span class="type">NMSettingDcbFlags</span></a></pre> -<p>Specifies the <a class="link" href="NMSettingDcb.html#NMSettingDcbFlags" title="enum NMSettingDcbFlags"><span class="type">NMSettingDcbFlags</span></a> for DCB Priority Flow Control (PFC). -Flags may be any combination of <a class="link" href="NMSettingDcb.html#NM-SETTING-DCB-FLAG-ENABLE:CAPS"><code class="literal">NM_SETTING_DCB_FLAG_ENABLE</code></a>, -<a class="link" href="NMSettingDcb.html#NM-SETTING-DCB-FLAG-ADVERTISE:CAPS"><code class="literal">NM_SETTING_DCB_FLAG_ADVERTISE</code></a>, and <a class="link" href="NMSettingDcb.html#NM-SETTING-DCB-FLAG-WILLING:CAPS"><code class="literal">NM_SETTING_DCB_FLAG_WILLING</code></a>.</p> -<p>Owner: NMSettingDcb</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingDcb--priority-group-bandwidth"></a><h3>The <code class="literal">“priority-group-bandwidth”</code> property</h3> -<pre class="programlisting"> “priority-group-bandwidth” <a href="https://developer.gnome.org/glib/unstable/glib-Arrays.html#GArray"><span class="type">GArray</span></a> *</pre> -<p>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.</p> -<p><span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GArray(guint)]</span></p> -<p>Owner: NMSettingDcb</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingDcb--priority-group-flags"></a><h3>The <code class="literal">“priority-group-flags”</code> property</h3> -<pre class="programlisting"> “priority-group-flags” <a class="link" href="NMSettingDcb.html#NMSettingDcbFlags" title="enum NMSettingDcbFlags"><span class="type">NMSettingDcbFlags</span></a></pre> -<p>Specifies the <a class="link" href="NMSettingDcb.html#NMSettingDcbFlags" title="enum NMSettingDcbFlags"><span class="type">NMSettingDcbFlags</span></a> for DCB Priority Groups. Flags may be -any combination of <a class="link" href="NMSettingDcb.html#NM-SETTING-DCB-FLAG-ENABLE:CAPS"><code class="literal">NM_SETTING_DCB_FLAG_ENABLE</code></a>, -<a class="link" href="NMSettingDcb.html#NM-SETTING-DCB-FLAG-ADVERTISE:CAPS"><code class="literal">NM_SETTING_DCB_FLAG_ADVERTISE</code></a>, and <a class="link" href="NMSettingDcb.html#NM-SETTING-DCB-FLAG-WILLING:CAPS"><code class="literal">NM_SETTING_DCB_FLAG_WILLING</code></a>.</p> -<p>Owner: NMSettingDcb</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingDcb--priority-group-id"></a><h3>The <code class="literal">“priority-group-id”</code> property</h3> -<pre class="programlisting"> “priority-group-id” <a href="https://developer.gnome.org/glib/unstable/glib-Arrays.html#GArray"><span class="type">GArray</span></a> *</pre> -<p>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.</p> -<p><span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GArray(guint)]</span></p> -<p>Owner: NMSettingDcb</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingDcb--priority-strict-bandwidth"></a><h3>The <code class="literal">“priority-strict-bandwidth”</code> property</h3> -<pre class="programlisting"> “priority-strict-bandwidth” <a href="https://developer.gnome.org/glib/unstable/glib-Arrays.html#GArray"><span class="type">GArray</span></a> *</pre> -<p>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.</p> -<p><span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GArray(gboolean)]</span></p> -<p>Owner: NMSettingDcb</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingDcb--priority-traffic-class"></a><h3>The <code class="literal">“priority-traffic-class”</code> property</h3> -<pre class="programlisting"> “priority-traffic-class” <a href="https://developer.gnome.org/glib/unstable/glib-Arrays.html#GArray"><span class="type">GArray</span></a> *</pre> -<p>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.</p> -<p><span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GArray(guint)]</span></p> -<p>Owner: NMSettingDcb</p> -<p>Flags: Read / Write</p> -</div> </div> </div> <div class="footer"> diff --git a/docs/libnm/html/NMSettingDummy.html b/docs/libnm/html/NMSettingDummy.html index 7e66dd45..40233dfb 100644 --- a/docs/libnm/html/NMSettingDummy.html +++ b/docs/libnm/html/NMSettingDummy.html @@ -15,8 +15,7 @@ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle"> <td width="100%" align="left" class="shortcuts"> <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> - <a href="#NMSettingDummy.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> - <a href="#NMSettingDummy.object-hierarchy" class="shortcut">Object Hierarchy</a></span> + <a href="#NMSettingDummy.description" class="shortcut">Description</a></span> </td> <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> <td><a accesskey="u" href="ch03.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> @@ -56,26 +55,13 @@ <col width="150px" class="other_proto_type"> <col class="other_proto_name"> </colgroup> -<tbody> -<tr> +<tbody><tr> <td class="define_keyword">#define</td> <td class="function_name"><a class="link" href="NMSettingDummy.html#NM-SETTING-DUMMY-SETTING-NAME:CAPS" title="NM_SETTING_DUMMY_SETTING_NAME">NM_SETTING_DUMMY_SETTING_NAME</a></td> -</tr> -<tr> -<td class="datatype_keyword"> </td> -<td class="function_name"><a class="link" href="NMSettingDummy.html#NMSettingDummy-struct" title="NMSettingDummy">NMSettingDummy</a></td> -</tr> -</tbody> +</tr></tbody> </table></div> </div> <div class="refsect1"> -<a name="NMSettingDummy.object-hierarchy"></a><h2>Object Hierarchy</h2> -<pre class="screen"> <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a> - <span class="lineart">╰──</span> <a class="link" href="NMSetting.html" title="NMSetting">NMSetting</a> - <span class="lineart">╰──</span> NMSettingDummy -</pre> -</div> -<div class="refsect1"> <a name="NMSettingDummy.description"></a><h2>Description</h2> <p>The <a class="link" href="NMSettingDummy.html" title="NMSettingDummy"><span class="type">NMSettingDummy</span></a> object is a <a class="link" href="NMSetting.html" title="NMSetting"><span class="type">NMSetting</span></a> subclass that describes properties necessary for connection to dummy devices</p> @@ -102,12 +88,6 @@ nm_setting_dummy_new (<em class="parameter"><code><span class="type">void</span> <pre class="programlisting">#define NM_SETTING_DUMMY_SETTING_NAME "dummy" </pre> </div> -<hr> -<div class="refsect2"> -<a name="NMSettingDummy-struct"></a><h3>NMSettingDummy</h3> -<pre class="programlisting">typedef struct _NMSettingDummy NMSettingDummy;</pre> -<p>Dummy Link Settings</p> -</div> </div> </div> <div class="footer"> diff --git a/docs/libnm/html/NMSettingEthtool.html b/docs/libnm/html/NMSettingEthtool.html index c2e2f431..05cbfff1 100644 --- a/docs/libnm/html/NMSettingEthtool.html +++ b/docs/libnm/html/NMSettingEthtool.html @@ -65,6 +65,14 @@ </tr> <tr> <td class="function_type"> +<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> +</td> +<td class="function_name"> +<a class="link" href="NMSettingEthtool.html#nm-ethtool-optname-is-pause" title="nm_ethtool_optname_is_pause ()">nm_ethtool_optname_is_pause</a> <span class="c_punctuation">()</span> +</td> +</tr> +<tr> +<td class="function_type"> <a class="link" href="NMSetting.html" title="NMSetting"><span class="returnvalue">NMSetting</span></a> * </td> <td class="function_name"> @@ -204,6 +212,32 @@ nm_ethtool_optname_is_ring (<em class="parameter"><code>const <span class="type" </div> <hr> <div class="refsect2"> +<a name="nm-ethtool-optname-is-pause"></a><h3>nm_ethtool_optname_is_pause ()</h3> +<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> +nm_ethtool_optname_is_pause (<em class="parameter"><code>const <span class="type">char</span> *optname</code></em>);</pre> +<p>Checks whether <em class="parameter"><code>optname</code></em> + is a valid option name for a pause setting.</p> +<p><code class="literal">Returns</code>: <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if <em class="parameter"><code>optname</code></em> + is valid</p> +<div class="refsect3"> +<a name="nm-ethtool-optname-is-pause.parameters"></a><h4>Parameters</h4> +<div class="informaltable"><table class="informaltable" width="100%" border="0"> +<colgroup> +<col width="150px" class="parameters_name"> +<col class="parameters_description"> +<col width="200px" class="parameters_annotations"> +</colgroup> +<tbody><tr> +<td class="parameter_name"><p>optname</p></td> +<td class="parameter_description"><p>the option name to check. </p></td> +<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td> +</tr></tbody> +</table></div> +</div> +<p class="since">Since: 1.32</p> +</div> +<hr> +<div class="refsect2"> <a name="nm-setting-ethtool-new"></a><h3>nm_setting_ethtool_new ()</h3> <pre class="programlisting"><a class="link" href="NMSetting.html" title="NMSetting"><span class="returnvalue">NMSetting</span></a> * nm_setting_ethtool_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre> diff --git a/docs/libnm/html/NMSettingGeneric.html b/docs/libnm/html/NMSettingGeneric.html index 17224abd..e11413df 100644 --- a/docs/libnm/html/NMSettingGeneric.html +++ b/docs/libnm/html/NMSettingGeneric.html @@ -15,8 +15,7 @@ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle"> <td width="100%" align="left" class="shortcuts"> <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> - <a href="#NMSettingGeneric.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> - <a href="#NMSettingGeneric.object-hierarchy" class="shortcut">Object Hierarchy</a></span> + <a href="#NMSettingGeneric.description" class="shortcut">Description</a></span> </td> <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> <td><a accesskey="u" href="ch03.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> @@ -56,26 +55,13 @@ <col width="150px" class="other_proto_type"> <col class="other_proto_name"> </colgroup> -<tbody> -<tr> +<tbody><tr> <td class="define_keyword">#define</td> <td class="function_name"><a class="link" href="NMSettingGeneric.html#NM-SETTING-GENERIC-SETTING-NAME:CAPS" title="NM_SETTING_GENERIC_SETTING_NAME">NM_SETTING_GENERIC_SETTING_NAME</a></td> -</tr> -<tr> -<td class="datatype_keyword"> </td> -<td class="function_name"><a class="link" href="NMSettingGeneric.html#NMSettingGeneric-struct" title="NMSettingGeneric">NMSettingGeneric</a></td> -</tr> -</tbody> +</tr></tbody> </table></div> </div> <div class="refsect1"> -<a name="NMSettingGeneric.object-hierarchy"></a><h2>Object Hierarchy</h2> -<pre class="screen"> <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a> - <span class="lineart">╰──</span> <a class="link" href="NMSetting.html" title="NMSetting">NMSetting</a> - <span class="lineart">╰──</span> NMSettingGeneric -</pre> -</div> -<div class="refsect1"> <a name="NMSettingGeneric.description"></a><h2>Description</h2> <p>The <a class="link" href="NMSettingGeneric.html" title="NMSettingGeneric"><span class="type">NMSettingGeneric</span></a> object is a <a class="link" href="NMSetting.html" title="NMSetting"><span class="type">NMSetting</span></a> subclass that describes optional properties that apply to "generic" devices (ie, devices that @@ -104,12 +90,6 @@ nm_setting_generic_new (<em class="parameter"><code><span class="type">void</spa <pre class="programlisting">#define NM_SETTING_GENERIC_SETTING_NAME "generic" </pre> </div> -<hr> -<div class="refsect2"> -<a name="NMSettingGeneric-struct"></a><h3>NMSettingGeneric</h3> -<pre class="programlisting">typedef struct _NMSettingGeneric NMSettingGeneric;</pre> -<p>Generic Link Settings</p> -</div> </div> </div> <div class="footer"> diff --git a/docs/libnm/html/NMSettingGsm.html b/docs/libnm/html/NMSettingGsm.html index 652b6a48..0231362c 100644 --- a/docs/libnm/html/NMSettingGsm.html +++ b/docs/libnm/html/NMSettingGsm.html @@ -15,9 +15,7 @@ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle"> <td width="100%" align="left" class="shortcuts"> <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> - <a href="#NMSettingGsm.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> - <a href="#NMSettingGsm.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties"> <span class="dim">|</span> - <a href="#NMSettingGsm.properties" class="shortcut">Properties</a></span> + <a href="#NMSettingGsm.description" class="shortcut">Description</a></span> </td> <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> <td><a accesskey="u" href="ch03.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> @@ -156,97 +154,6 @@ </table></div> </div> <div class="refsect1"> -<a name="NMSettingGsm.properties"></a><h2>Properties</h2> -<div class="informaltable"><table class="informaltable" border="0"> -<colgroup> -<col width="150px" class="properties_type"> -<col width="300px" class="properties_name"> -<col width="200px" class="properties_flags"> -</colgroup> -<tbody> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingGsm.html#NMSettingGsm--apn" title="The “apn” property">apn</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingGsm.html#NMSettingGsm--auto-config" title="The “auto-config” property">auto-config</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingGsm.html#NMSettingGsm--device-id" title="The “device-id” property">device-id</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingGsm.html#NMSettingGsm--home-only" title="The “home-only” property">home-only</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingGsm.html#NMSettingGsm--mtu" title="The “mtu” property">mtu</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingGsm.html#NMSettingGsm--network-id" title="The “network-id” property">network-id</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingGsm.html#NMSettingGsm--number" title="The “number” property">number</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingGsm.html#NMSettingGsm--password" title="The “password” property">password</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a></td> -<td class="property_name"><a class="link" href="NMSettingGsm.html#NMSettingGsm--password-flags" title="The “password-flags” property">password-flags</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingGsm.html#NMSettingGsm--pin" title="The “pin” property">pin</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a></td> -<td class="property_name"><a class="link" href="NMSettingGsm.html#NMSettingGsm--pin-flags" title="The “pin-flags” property">pin-flags</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingGsm.html#NMSettingGsm--sim-id" title="The “sim-id” property">sim-id</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingGsm.html#NMSettingGsm--sim-operator-id" title="The “sim-operator-id” property">sim-operator-id</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingGsm.html#NMSettingGsm--username" title="The “username” property">username</a></td> -<td class="property_flags">Read / Write</td> -</tr> -</tbody> -</table></div> -</div> -<div class="refsect1"> <a name="NMSettingGsm.other"></a><h2>Types and Values</h2> <div class="informaltable"><table class="informaltable" width="100%" border="0"> <colgroup> @@ -314,21 +221,10 @@ <td class="define_keyword">#define</td> <td class="function_name"><a class="link" href="NMSettingGsm.html#NM-SETTING-GSM-NUMBER:CAPS" title="NM_SETTING_GSM_NUMBER">NM_SETTING_GSM_NUMBER</a></td> </tr> -<tr> -<td class="datatype_keyword"> </td> -<td class="function_name"><a class="link" href="NMSettingGsm.html#NMSettingGsm-struct" title="NMSettingGsm">NMSettingGsm</a></td> -</tr> </tbody> </table></div> </div> <div class="refsect1"> -<a name="NMSettingGsm.object-hierarchy"></a><h2>Object Hierarchy</h2> -<pre class="screen"> <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a> - <span class="lineart">╰──</span> <a class="link" href="NMSetting.html" title="NMSetting">NMSetting</a> - <span class="lineart">╰──</span> NMSettingGsm -</pre> -</div> -<div class="refsect1"> <a name="NMSettingGsm.description"></a><h2>Description</h2> <p>The <a class="link" href="NMSettingGsm.html" title="NMSettingGsm"><span class="type">NMSettingGsm</span></a> object is a <a class="link" href="NMSetting.html" title="NMSetting"><span class="type">NMSetting</span></a> subclass that describes properties that allow connections to 3GPP-based mobile broadband @@ -368,7 +264,7 @@ nm_setting_gsm_get_auto_config (<em class="parameter"><code><a class="link" href </div> <div class="refsect3"> <a name="nm-setting-gsm-get-auto-config.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingGsm.html#NMSettingGsm--auto-config" title="The “auto-config” property"><span class="type">“auto-config”</span></a> property of the setting</p> +<p> the <a href="NMSettingGsm.html#NMSettingGsm--auto-config"><span class="type">“auto-config”</span></a> property of the setting</p> </div> <p class="since">Since: 1.22</p> </div> @@ -394,7 +290,7 @@ nm_setting_gsm_get_username (<em class="parameter"><code><a class="link" href="N </div> <div class="refsect3"> <a name="nm-setting-gsm-get-username.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingGsm.html#NMSettingGsm--username" title="The “username” property"><span class="type">“username”</span></a> property of the setting</p> +<p> the <a href="NMSettingGsm.html#NMSettingGsm--username"><span class="type">“username”</span></a> property of the setting</p> </div> </div> <hr> @@ -419,7 +315,7 @@ nm_setting_gsm_get_password (<em class="parameter"><code><a class="link" href="N </div> <div class="refsect3"> <a name="nm-setting-gsm-get-password.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingGsm.html#NMSettingGsm--password" title="The “password” property"><span class="type">“password”</span></a> property of the setting</p> +<p> the <a href="NMSettingGsm.html#NMSettingGsm--password"><span class="type">“password”</span></a> property of the setting</p> </div> </div> <hr> @@ -444,7 +340,7 @@ nm_setting_gsm_get_apn (<em class="parameter"><code><a class="link" href="NMSett </div> <div class="refsect3"> <a name="nm-setting-gsm-get-apn.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingGsm.html#NMSettingGsm--apn" title="The “apn” property"><span class="type">“apn”</span></a> property of the setting</p> +<p> the <a href="NMSettingGsm.html#NMSettingGsm--apn"><span class="type">“apn”</span></a> property of the setting</p> </div> </div> <hr> @@ -469,7 +365,7 @@ nm_setting_gsm_get_network_id (<em class="parameter"><code><a class="link" href= </div> <div class="refsect3"> <a name="nm-setting-gsm-get-network-id.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingGsm.html#NMSettingGsm--network-id" title="The “network-id” property"><span class="type">“network-id”</span></a> property of the setting</p> +<p> the <a href="NMSettingGsm.html#NMSettingGsm--network-id"><span class="type">“network-id”</span></a> property of the setting</p> </div> </div> <hr> @@ -494,7 +390,7 @@ nm_setting_gsm_get_pin (<em class="parameter"><code><a class="link" href="NMSett </div> <div class="refsect3"> <a name="nm-setting-gsm-get-pin.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingGsm.html#NMSettingGsm--pin" title="The “pin” property"><span class="type">“pin”</span></a> property of the setting</p> +<p> the <a href="NMSettingGsm.html#NMSettingGsm--pin"><span class="type">“pin”</span></a> property of the setting</p> </div> </div> <hr> @@ -519,7 +415,7 @@ nm_setting_gsm_get_home_only (<em class="parameter"><code><a class="link" href=" </div> <div class="refsect3"> <a name="nm-setting-gsm-get-home-only.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingGsm.html#NMSettingGsm--home-only" title="The “home-only” property"><span class="type">“home-only”</span></a> property of the setting</p> +<p> the <a href="NMSettingGsm.html#NMSettingGsm--home-only"><span class="type">“home-only”</span></a> property of the setting</p> </div> </div> <hr> @@ -544,7 +440,7 @@ nm_setting_gsm_get_device_id (<em class="parameter"><code><a class="link" href=" </div> <div class="refsect3"> <a name="nm-setting-gsm-get-device-id.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingGsm.html#NMSettingGsm--device-id" title="The “device-id” property"><span class="type">“device-id”</span></a> property of the setting</p> +<p> the <a href="NMSettingGsm.html#NMSettingGsm--device-id"><span class="type">“device-id”</span></a> property of the setting</p> </div> <p class="since">Since: 1.2</p> </div> @@ -570,7 +466,7 @@ nm_setting_gsm_get_sim_id (<em class="parameter"><code><a class="link" href="NMS </div> <div class="refsect3"> <a name="nm-setting-gsm-get-sim-id.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingGsm.html#NMSettingGsm--sim-id" title="The “sim-id” property"><span class="type">“sim-id”</span></a> property of the setting</p> +<p> the <a href="NMSettingGsm.html#NMSettingGsm--sim-id"><span class="type">“sim-id”</span></a> property of the setting</p> </div> <p class="since">Since: 1.2</p> </div> @@ -596,7 +492,7 @@ nm_setting_gsm_get_sim_operator_id (<em class="parameter"><code><a class="link" </div> <div class="refsect3"> <a name="nm-setting-gsm-get-sim-operator-id.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingGsm.html#NMSettingGsm--sim-operator-id" title="The “sim-operator-id” property"><span class="type">“sim-operator-id”</span></a> property of the setting</p> +<p> the <a href="NMSettingGsm.html#NMSettingGsm--sim-operator-id"><span class="type">“sim-operator-id”</span></a> property of the setting</p> </div> <p class="since">Since: 1.2</p> </div> @@ -622,7 +518,7 @@ nm_setting_gsm_get_mtu (<em class="parameter"><code><a class="link" href="NMSett </div> <div class="refsect3"> <a name="nm-setting-gsm-get-mtu.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingGsm.html#NMSettingGsm--mtu" title="The “mtu” property"><span class="type">“mtu”</span></a> property of the setting</p> +<p> the <a href="NMSettingGsm.html#NMSettingGsm--mtu"><span class="type">“mtu”</span></a> property of the setting</p> </div> <p class="since">Since: 1.8</p> </div> @@ -652,7 +548,7 @@ nm_setting_gsm_get_number (<em class="parameter"><code><a class="link" href="NMS </div> <div class="refsect3"> <a name="nm-setting-gsm-get-number.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingGsm.html#NMSettingGsm--number" title="The “number” property"><span class="type">“number”</span></a> property of the setting</p> +<p> the <a href="NMSettingGsm.html#NMSettingGsm--number"><span class="type">“number”</span></a> property of the setting</p> </div> </div> <hr> @@ -677,7 +573,7 @@ nm_setting_gsm_get_pin_flags (<em class="parameter"><code><a class="link" href=" </div> <div class="refsect3"> <a name="nm-setting-gsm-get-pin-flags.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a> pertaining to the <a class="link" href="NMSettingGsm.html#NMSettingGsm--pin" title="The “pin” property"><span class="type">“pin”</span></a></p> +<p> the <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a> pertaining to the <a href="NMSettingGsm.html#NMSettingGsm--pin"><span class="type">“pin”</span></a></p> </div> </div> <hr> @@ -702,7 +598,7 @@ nm_setting_gsm_get_password_flags (<em class="parameter"><code><a class="link" h </div> <div class="refsect3"> <a name="nm-setting-gsm-get-password-flags.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a> pertaining to the <a class="link" href="NMSettingGsm.html#NMSettingGsm--password" title="The “password” property"><span class="type">“password”</span></a></p> +<p> the <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a> pertaining to the <a href="NMSettingGsm.html#NMSettingGsm--password"><span class="type">“password”</span></a></p> </div> </div> </div> @@ -797,177 +693,6 @@ nm_setting_gsm_get_password_flags (<em class="parameter"><code><a class="link" h <pre class="programlisting">#define NM_SETTING_GSM_NUMBER "number" </pre> </div> -<hr> -<div class="refsect2"> -<a name="NMSettingGsm-struct"></a><h3>NMSettingGsm</h3> -<pre class="programlisting">typedef struct _NMSettingGsm NMSettingGsm;</pre> -<p>GSM-based Mobile Broadband Settings</p> -</div> -</div> -<div class="refsect1"> -<a name="NMSettingGsm.property-details"></a><h2>Property Details</h2> -<div class="refsect2"> -<a name="NMSettingGsm--apn"></a><h3>The <code class="literal">“apn”</code> property</h3> -<pre class="programlisting"> “apn” <span class="type">char</span> *</pre> -<p>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.</p> -<p>Owner: NMSettingGsm</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingGsm--auto-config"></a><h3>The <code class="literal">“auto-config”</code> property</h3> -<pre class="programlisting"> “auto-config” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>When <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, 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.</p> -<p>Owner: NMSettingGsm</p> -<p>Flags: Read / Write</p> -<p>Default value: FALSE</p> -<p class="since">Since: 1.22</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingGsm--device-id"></a><h3>The <code class="literal">“device-id”</code> property</h3> -<pre class="programlisting"> “device-id” <span class="type">char</span> *</pre> -<p>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.</p> -<p>Owner: NMSettingGsm</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingGsm--home-only"></a><h3>The <code class="literal">“home-only”</code> property</h3> -<pre class="programlisting"> “home-only” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>When <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, only connections to the home network will be allowed. -Connections to roaming networks will not be made.</p> -<p>Owner: NMSettingGsm</p> -<p>Flags: Read / Write</p> -<p>Default value: FALSE</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingGsm--mtu"></a><h3>The <code class="literal">“mtu”</code> property</h3> -<pre class="programlisting"> “mtu” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>If non-zero, only transmit packets of the specified size or smaller, -breaking larger packets up into multiple frames.</p> -<p>Owner: NMSettingGsm</p> -<p>Flags: Read / Write</p> -<p>Default value: 0</p> -<p class="since">Since: 1.8</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingGsm--network-id"></a><h3>The <code class="literal">“network-id”</code> property</h3> -<pre class="programlisting"> “network-id” <span class="type">char</span> *</pre> -<p>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.</p> -<p>Owner: NMSettingGsm</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingGsm--number"></a><h3>The <code class="literal">“number”</code> property</h3> -<pre class="programlisting"> “number” <span class="type">char</span> *</pre> -<p>Legacy setting that used to help establishing PPP data sessions for -GSM-based modems.</p> -<div class="warning"> -<p><code class="literal">NMSettingGsm:number</code> has been deprecated since version 1.16 and should not be used in newly-written code.</p> -<p>User-provided values for this setting are no longer used.</p> -</div> -<p>Owner: NMSettingGsm</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingGsm--password"></a><h3>The <code class="literal">“password”</code> property</h3> -<pre class="programlisting"> “password” <span class="type">char</span> *</pre> -<p>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.</p> -<p>Owner: NMSettingGsm</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingGsm--password-flags"></a><h3>The <code class="literal">“password-flags”</code> property</h3> -<pre class="programlisting"> “password-flags” <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a></pre> -<p>Flags indicating how to handle the <a class="link" href="NMSettingGsm.html#NMSettingGsm--password" title="The “password” property"><span class="type">“password”</span></a> property.</p> -<p>Owner: NMSettingGsm</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingGsm--pin"></a><h3>The <code class="literal">“pin”</code> property</h3> -<pre class="programlisting"> “pin” <span class="type">char</span> *</pre> -<p>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.</p> -<p>Owner: NMSettingGsm</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingGsm--pin-flags"></a><h3>The <code class="literal">“pin-flags”</code> property</h3> -<pre class="programlisting"> “pin-flags” <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a></pre> -<p>Flags indicating how to handle the <a class="link" href="NMSettingGsm.html#NMSettingGsm--pin" title="The “pin” property"><span class="type">“pin”</span></a> property.</p> -<p>Owner: NMSettingGsm</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingGsm--sim-id"></a><h3>The <code class="literal">“sim-id”</code> property</h3> -<pre class="programlisting"> “sim-id” <span class="type">char</span> *</pre> -<p>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 <a class="link" href="NMSettingGsm.html#NMSettingGsm--device-id" title="The “device-id” property"><span class="type">“device-id”</span></a> which contains a -SIM card matching the given identifier.</p> -<p>Owner: NMSettingGsm</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingGsm--sim-operator-id"></a><h3>The <code class="literal">“sim-operator-id”</code> property</h3> -<pre class="programlisting"> “sim-operator-id” <span class="type">char</span> *</pre> -<p>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 -<a class="link" href="NMSettingGsm.html#NMSettingGsm--device-id" title="The “device-id” property"><span class="type">“device-id”</span></a> and <a class="link" href="NMSettingGsm.html#NMSettingGsm--sim-id" title="The “sim-id” property"><span class="type">“sim-id”</span></a> which contains a SIM -card provisioned by the given operator.</p> -<p>Owner: NMSettingGsm</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingGsm--username"></a><h3>The <code class="literal">“username”</code> property</h3> -<pre class="programlisting"> “username” <span class="type">char</span> *</pre> -<p>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.</p> -<p>Owner: NMSettingGsm</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> </div> </div> <div class="footer"> diff --git a/docs/libnm/html/NMSettingIP4Config.html b/docs/libnm/html/NMSettingIP4Config.html index 328d05b2..6c0038ff 100644 --- a/docs/libnm/html/NMSettingIP4Config.html +++ b/docs/libnm/html/NMSettingIP4Config.html @@ -15,9 +15,7 @@ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle"> <td width="100%" align="left" class="shortcuts"> <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> - <a href="#NMSettingIP4Config.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> - <a href="#NMSettingIP4Config.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties"> <span class="dim">|</span> - <a href="#NMSettingIP4Config.properties" class="shortcut">Properties</a></span> + <a href="#NMSettingIP4Config.description" class="shortcut">Description</a></span> </td> <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> <td><a accesskey="u" href="ch03.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> @@ -74,36 +72,6 @@ </table></div> </div> <div class="refsect1"> -<a name="NMSettingIP4Config.properties"></a><h2>Properties</h2> -<div class="informaltable"><table class="informaltable" border="0"> -<colgroup> -<col width="150px" class="properties_type"> -<col width="300px" class="properties_name"> -<col width="200px" class="properties_flags"> -</colgroup> -<tbody> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingIP4Config.html#NMSettingIP4Config--dhcp-client-id" title="The “dhcp-client-id” property">dhcp-client-id</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingIP4Config.html#NMSettingIP4Config--dhcp-fqdn" title="The “dhcp-fqdn” property">dhcp-fqdn</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingIP4Config.html#NMSettingIP4Config--dhcp-vendor-class-identifier" title="The “dhcp-vendor-class-identifier” property">dhcp-vendor-class-identifier</a></td> -<td class="property_flags">Read / Write</td> -</tr> -</tbody> -</table></div> -</div> -<div class="refsect1"> <a name="NMSettingIP4Config.other"></a><h2>Types and Values</h2> <div class="informaltable"><table class="informaltable" width="100%" border="0"> <colgroup> @@ -147,28 +115,16 @@ <td class="define_keyword">#define</td> <td class="function_name"><a class="link" href="NMSettingIP4Config.html#NM-SETTING-IP4-CONFIG-METHOD-DISABLED:CAPS" title="NM_SETTING_IP4_CONFIG_METHOD_DISABLED">NM_SETTING_IP4_CONFIG_METHOD_DISABLED</a></td> </tr> -<tr> -<td class="datatype_keyword"> </td> -<td class="function_name"><a class="link" href="NMSettingIP4Config.html#NMSettingIP4Config-struct" title="NMSettingIP4Config">NMSettingIP4Config</a></td> -</tr> </tbody> </table></div> </div> <div class="refsect1"> -<a name="NMSettingIP4Config.object-hierarchy"></a><h2>Object Hierarchy</h2> -<pre class="screen"> <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a> - <span class="lineart">╰──</span> <a class="link" href="NMSetting.html" title="NMSetting">NMSetting</a> - <span class="lineart">╰──</span> <a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig">NMSettingIPConfig</a> - <span class="lineart">╰──</span> NMSettingIP4Config -</pre> -</div> -<div class="refsect1"> <a name="NMSettingIP4Config.description"></a><h2>Description</h2> <p>The <a class="link" href="NMSettingIP4Config.html" title="NMSettingIP4Config"><span class="type">NMSettingIP4Config</span></a> object is a <a class="link" href="NMSetting.html" title="NMSetting"><span class="type">NMSetting</span></a> subclass that describes properties related to IPv4 addressing, routing, and Domain Name Service.</p> <p><a class="link" href="NMSettingIP4Config.html" title="NMSettingIP4Config"><span class="type">NMSettingIP4Config</span></a> has few properties or methods of its own; it inherits almost everything from <a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig"><span class="type">NMSettingIPConfig</span></a>.</p> -<p>NetworkManager supports 5 values for the <a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--method" title="The “method” property"><span class="type">“method”</span></a> property +<p>NetworkManager supports 5 values for the <a href="NMSettingIPConfig.html#NMSettingIPConfig--method"><span class="type">“method”</span></a> 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 (<em class="parameter"><code><span class="type">void</ <pre class="programlisting">const <span class="returnvalue">char</span> * nm_setting_ip4_config_get_dhcp_client_id (<em class="parameter"><code><a class="link" href="NMSettingIP4Config.html" title="NMSettingIP4Config"><span class="type">NMSettingIP4Config</span></a> *setting</code></em>);</pre> -<p>Returns the value contained in the <a class="link" href="NMSettingIP4Config.html#NMSettingIP4Config--dhcp-client-id" title="The “dhcp-client-id” property"><span class="type">“dhcp-client-id”</span></a> +<p>Returns the value contained in the <a href="NMSettingIP4Config.html#NMSettingIP4Config--dhcp-client-id"><span class="type">“dhcp-client-id”</span></a> property.</p> <div class="refsect3"> <a name="nm-setting-ip4-config-get-dhcp-client-id.parameters"></a><h4>Parameters</h4> @@ -228,7 +184,7 @@ addresses via DHCP.</p> <a name="nm-setting-ip4-config-get-dhcp-fqdn"></a><h3>nm_setting_ip4_config_get_dhcp_fqdn ()</h3> <pre class="programlisting">const <span class="returnvalue">char</span> * nm_setting_ip4_config_get_dhcp_fqdn (<em class="parameter"><code><a class="link" href="NMSettingIP4Config.html" title="NMSettingIP4Config"><span class="type">NMSettingIP4Config</span></a> *setting</code></em>);</pre> -<p>Returns the value contained in the <a class="link" href="NMSettingIP4Config.html#NMSettingIP4Config--dhcp-fqdn" title="The “dhcp-fqdn” property"><span class="type">“dhcp-fqdn”</span></a> +<p>Returns the value contained in the <a href="NMSettingIP4Config.html#NMSettingIP4Config--dhcp-fqdn"><span class="type">“dhcp-fqdn”</span></a> property.</p> <div class="refsect3"> <a name="nm-setting-ip4-config-get-dhcp-fqdn.parameters"></a><h4>Parameters</h4> @@ -257,7 +213,7 @@ property.</p> <pre class="programlisting">const <span class="returnvalue">char</span> * nm_setting_ip4_config_get_dhcp_vendor_class_identifier (<em class="parameter"><code><a class="link" href="NMSettingIP4Config.html" title="NMSettingIP4Config"><span class="type">NMSettingIP4Config</span></a> *setting</code></em>);</pre> -<p>Returns the value contained in the <a class="link" href="NMSettingIP4Config.html#NMSettingIP4Config--dhcp-vendor-class-identifier" title="The “dhcp-vendor-class-identifier” property"><span class="type">“dhcp_vendor_class_identifier”</span></a> +<p>Returns the value contained in the <a href="NMSettingIP4Config.html#NMSettingIP4Config--dhcp-vendor-class-identifier"><span class="type">“dhcp_vendor_class_identifier”</span></a> property.</p> <div class="refsect3"> <a name="nm-setting-ip4-config-get-dhcp-vendor-class-identifier.parameters"></a><h4>Parameters</h4> @@ -350,74 +306,6 @@ through that interface to the default network.</p> </pre> <p>This connection does not use or require IPv4 address and it should be disabled.</p> </div> -<hr> -<div class="refsect2"> -<a name="NMSettingIP4Config-struct"></a><h3>NMSettingIP4Config</h3> -<pre class="programlisting">typedef struct _NMSettingIP4Config NMSettingIP4Config;</pre> -<p>IPv4 Settings</p> -</div> -</div> -<div class="refsect1"> -<a name="NMSettingIP4Config.property-details"></a><h2>Property Details</h2> -<div class="refsect2"> -<a name="NMSettingIP4Config--dhcp-client-id"></a><h3>The <code class="literal">“dhcp-client-id”</code> property</h3> -<pre class="programlisting"> “dhcp-client-id” <span class="type">char</span> *</pre> -<p>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.</p> -<p>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.</p> -<p>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.</p> -<p>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.</p> -<p>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.</p> -<p>If unset, a globally configured default is used. If still unset, the default -depends on the DHCP plugin.</p> -<p>Owner: NMSettingIP4Config</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIP4Config--dhcp-fqdn"></a><h3>The <code class="literal">“dhcp-fqdn”</code> property</h3> -<pre class="programlisting"> “dhcp-fqdn” <span class="type">char</span> *</pre> -<p>If the <a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-send-hostname" title="The “dhcp-send-hostname” property"><span class="type">“dhcp-send-hostname”</span></a> property is <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, then the -specified FQDN will be sent to the DHCP server when acquiring a lease. This -property and <a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-hostname" title="The “dhcp-hostname” property"><span class="type">“dhcp-hostname”</span></a> are mutually exclusive and -cannot be set at the same time.</p> -<p>Owner: NMSettingIP4Config</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIP4Config--dhcp-vendor-class-identifier"></a><h3>The <code class="literal">“dhcp-vendor-class-identifier”</code> property</h3> -<pre class="programlisting"> “dhcp-vendor-class-identifier” <span class="type">char</span> *</pre> -<p>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.</p> -<p>Since 1.28</p> -<p>Owner: NMSettingIP4Config</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> </div> </div> <div class="footer"> diff --git a/docs/libnm/html/NMSettingIP6Config.html b/docs/libnm/html/NMSettingIP6Config.html index b343cb77..c421f761 100644 --- a/docs/libnm/html/NMSettingIP6Config.html +++ b/docs/libnm/html/NMSettingIP6Config.html @@ -16,8 +16,7 @@ <td width="100%" align="left" class="shortcuts"> <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> <a href="#NMSettingIP6Config.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> - <a href="#NMSettingIP6Config.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties"> <span class="dim">|</span> - <a href="#NMSettingIP6Config.properties" class="shortcut">Properties</a></span> + <a href="#NMSettingIP6Config.object-hierarchy" class="shortcut">Object Hierarchy</a></span> </td> <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> <td><a accesskey="u" href="ch03.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> @@ -91,45 +90,6 @@ </table></div> </div> <div class="refsect1"> -<a name="NMSettingIP6Config.properties"></a><h2>Properties</h2> -<div class="informaltable"><table class="informaltable" border="0"> -<colgroup> -<col width="150px" class="properties_type"> -<col width="300px" class="properties_name"> -<col width="200px" class="properties_flags"> -</colgroup> -<tbody> -<tr> -<td class="property_type"><span class="type">int</span></td> -<td class="property_name"><a class="link" href="NMSettingIP6Config.html#NMSettingIP6Config--addr-gen-mode" title="The “addr-gen-mode” property">addr-gen-mode</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingIP6Config.html#NMSettingIP6Config--dhcp-duid" title="The “dhcp-duid” property">dhcp-duid</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a class="link" href="NMSettingIP6Config.html#NMSettingIP6ConfigPrivacy" title="enum NMSettingIP6ConfigPrivacy"><span class="type">NMSettingIP6ConfigPrivacy</span></a></td> -<td class="property_name"><a class="link" href="NMSettingIP6Config.html#NMSettingIP6Config--ip6-privacy" title="The “ip6-privacy” property">ip6-privacy</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><span class="type">int</span></td> -<td class="property_name"><a class="link" href="NMSettingIP6Config.html#NMSettingIP6Config--ra-timeout" title="The “ra-timeout” property">ra-timeout</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingIP6Config.html#NMSettingIP6Config--token" title="The “token” property">token</a></td> -<td class="property_flags">Read / Write</td> -</tr> -</tbody> -</table></div> -</div> -<div class="refsect1"> <a name="NMSettingIP6Config.other"></a><h2>Types and Values</h2> <div class="informaltable"><table class="informaltable" width="100%" border="0"> <colgroup> @@ -197,10 +157,6 @@ <td class="datatype_keyword">enum</td> <td class="function_name"><a class="link" href="NMSettingIP6Config.html#NMSettingIP6ConfigAddrGenMode" title="enum NMSettingIP6ConfigAddrGenMode">NMSettingIP6ConfigAddrGenMode</a></td> </tr> -<tr> -<td class="datatype_keyword"> </td> -<td class="function_name"><a class="link" href="NMSettingIP6Config.html#NMSettingIP6Config-struct" title="NMSettingIP6Config">NMSettingIP6Config</a></td> -</tr> </tbody> </table></div> </div> @@ -209,10 +165,6 @@ <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html">GEnum</a> <span class="lineart">├──</span> NMSettingIP6ConfigAddrGenMode <span class="lineart">╰──</span> NMSettingIP6ConfigPrivacy - <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a> - <span class="lineart">╰──</span> <a class="link" href="NMSetting.html" title="NMSetting">NMSetting</a> - <span class="lineart">╰──</span> <a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig">NMSettingIPConfig</a> - <span class="lineart">╰──</span> NMSettingIP6Config </pre> </div> <div class="refsect1"> @@ -221,7 +173,7 @@ properties related to IPv6 addressing, routing, and Domain Name Service</p> <p><a class="link" href="NMSettingIP6Config.html" title="NMSettingIP6Config"><span class="type">NMSettingIP6Config</span></a> has few properties or methods of its own; it inherits almost everything from <a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig"><span class="type">NMSettingIPConfig</span></a>.</p> -<p>NetworkManager supports 7 values for the <a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--method" title="The “method” property"><span class="type">“method”</span></a> property +<p>NetworkManager supports 7 values for the <a href="NMSettingIPConfig.html#NMSettingIPConfig--method"><span class="type">“method”</span></a> 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 (<em class="parameter"><code><span class="type">void</ <a name="nm-setting-ip6-config-get-ip6-privacy"></a><h3>nm_setting_ip6_config_get_ip6_privacy ()</h3> <pre class="programlisting"><a class="link" href="NMSettingIP6Config.html#NMSettingIP6ConfigPrivacy" title="enum NMSettingIP6ConfigPrivacy"><span class="returnvalue">NMSettingIP6ConfigPrivacy</span></a> nm_setting_ip6_config_get_ip6_privacy (<em class="parameter"><code><a class="link" href="NMSettingIP6Config.html" title="NMSettingIP6Config"><span class="type">NMSettingIP6Config</span></a> *setting</code></em>);</pre> -<p>Returns the value contained in the <a class="link" href="NMSettingIP6Config.html#NMSettingIP6Config--ip6-privacy" title="The “ip6-privacy” property"><span class="type">“ip6-privacy”</span></a> +<p>Returns the value contained in the <a href="NMSettingIP6Config.html#NMSettingIP6Config--ip6-privacy"><span class="type">“ip6-privacy”</span></a> property.</p> <div class="refsect3"> <a name="nm-setting-ip6-config-get-ip6-privacy.parameters"></a><h4>Parameters</h4> @@ -279,7 +231,7 @@ property.</p> <pre class="programlisting"><a class="link" href="NMSettingIP6Config.html#NMSettingIP6ConfigAddrGenMode" title="enum NMSettingIP6ConfigAddrGenMode"><span class="returnvalue">NMSettingIP6ConfigAddrGenMode</span></a> nm_setting_ip6_config_get_addr_gen_mode (<em class="parameter"><code><a class="link" href="NMSettingIP6Config.html" title="NMSettingIP6Config"><span class="type">NMSettingIP6Config</span></a> *setting</code></em>);</pre> -<p>Returns the value contained in the <a class="link" href="NMSettingIP6Config.html#NMSettingIP6Config--addr-gen-mode" title="The “addr-gen-mode” property"><span class="type">“addr-gen-mode”</span></a> +<p>Returns the value contained in the <a href="NMSettingIP6Config.html#NMSettingIP6Config--addr-gen-mode"><span class="type">“addr-gen-mode”</span></a> property.</p> <div class="refsect3"> <a name="nm-setting-ip6-config-get-addr-gen-mode.parameters"></a><h4>Parameters</h4> @@ -307,7 +259,7 @@ property.</p> <a name="nm-setting-ip6-config-get-token"></a><h3>nm_setting_ip6_config_get_token ()</h3> <pre class="programlisting">const <span class="returnvalue">char</span> * nm_setting_ip6_config_get_token (<em class="parameter"><code><a class="link" href="NMSettingIP6Config.html" title="NMSettingIP6Config"><span class="type">NMSettingIP6Config</span></a> *setting</code></em>);</pre> -<p>Returns the value contained in the <a class="link" href="NMSettingIP6Config.html#NMSettingIP6Config--token" title="The “token” property"><span class="type">“token”</span></a> +<p>Returns the value contained in the <a href="NMSettingIP6Config.html#NMSettingIP6Config--token"><span class="type">“token”</span></a> property.</p> <div class="refsect3"> <a name="nm-setting-ip6-config-get-token.parameters"></a><h4>Parameters</h4> @@ -335,7 +287,7 @@ property.</p> <a name="nm-setting-ip6-config-get-dhcp-duid"></a><h3>nm_setting_ip6_config_get_dhcp_duid ()</h3> <pre class="programlisting">const <span class="returnvalue">char</span> * nm_setting_ip6_config_get_dhcp_duid (<em class="parameter"><code><a class="link" href="NMSettingIP6Config.html" title="NMSettingIP6Config"><span class="type">NMSettingIP6Config</span></a> *setting</code></em>);</pre> -<p>Returns the value contained in the <a class="link" href="NMSettingIP6Config.html#NMSettingIP6Config--dhcp-duid" title="The “dhcp-duid” property"><span class="type">“dhcp-duid”</span></a> +<p>Returns the value contained in the <a href="NMSettingIP6Config.html#NMSettingIP6Config--dhcp-duid"><span class="type">“dhcp-duid”</span></a> property.</p> <div class="refsect3"> <a name="nm-setting-ip6-config-get-dhcp-duid.parameters"></a><h4>Parameters</h4> @@ -571,126 +523,6 @@ specified by RFC7217.</p> </div> <p class="since">Since: 1.2</p> </div> -<hr> -<div class="refsect2"> -<a name="NMSettingIP6Config-struct"></a><h3>NMSettingIP6Config</h3> -<pre class="programlisting">typedef struct _NMSettingIP6Config NMSettingIP6Config;</pre> -<p>IPv6 Settings</p> -</div> -</div> -<div class="refsect1"> -<a name="NMSettingIP6Config.property-details"></a><h2>Property Details</h2> -<div class="refsect2"> -<a name="NMSettingIP6Config--addr-gen-mode"></a><h3>The <code class="literal">“addr-gen-mode”</code> property</h3> -<pre class="programlisting"> “addr-gen-mode” <span class="type">int</span></pre> -<p>Configure method for creating the address for use with RFC4862 IPv6 -Stateless Address Autoconfiguration. The permitted values are: -<a class="link" href="NMSettingIP6Config.html#NM-SETTING-IP6-CONFIG-ADDR-GEN-MODE-EUI64:CAPS"><code class="literal">NM_SETTING_IP6_CONFIG_ADDR_GEN_MODE_EUI64</code></a> or -<a class="link" href="NMSettingIP6Config.html#NM-SETTING-IP6-CONFIG-ADDR-GEN-MODE-STABLE-PRIVACY:CAPS"><code class="literal">NM_SETTING_IP6_CONFIG_ADDR_GEN_MODE_STABLE_PRIVACY</code></a>.</p> -<p>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.</p> -<p>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.</p> -<p>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.</p> -<p>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.</p> -<p>Owner: NMSettingIP6Config</p> -<p>Flags: Read / Write</p> -<p>Default value: 1</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIP6Config--dhcp-duid"></a><h3>The <code class="literal">“dhcp-duid”</code> property</h3> -<pre class="programlisting"> “dhcp-duid” <span class="type">char</span> *</pre> -<p>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.</p> -<p>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.</p> -<p>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.</p> -<p>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").</p> -<p>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.</p> -<p>Owner: NMSettingIP6Config</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.12</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIP6Config--ip6-privacy"></a><h3>The <code class="literal">“ip6-privacy”</code> property</h3> -<pre class="programlisting"> “ip6-privacy” <a class="link" href="NMSettingIP6Config.html#NMSettingIP6ConfigPrivacy" title="enum NMSettingIP6ConfigPrivacy"><span class="type">NMSettingIP6ConfigPrivacy</span></a></pre> -<p>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).</p> -<p>Having a per-connection setting set to "-1" (unknown) means fallback to -global configuration "ipv6.ip6-privacy".</p> -<p>If also global configuration is unspecified or set to "-1", fallback to read -"/proc/sys/net/ipv6/conf/default/use_tempaddr".</p> -<p>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.</p> -<p>Owner: NMSettingIP6Config</p> -<p>Flags: Read / Write</p> -<p>Default value: NM_SETTING_IP6_CONFIG_PRIVACY_UNKNOWN</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIP6Config--ra-timeout"></a><h3>The <code class="literal">“ra-timeout”</code> property</h3> -<pre class="programlisting"> “ra-timeout” <span class="type">int</span></pre> -<p>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.</p> -<p>Set to 2147483647 (MAXINT32) for infinity.</p> -<p>Owner: NMSettingIP6Config</p> -<p>Flags: Read / Write</p> -<p>Allowed values: >= 0</p> -<p>Default value: 0</p> -<p class="since">Since: 1.24</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIP6Config--token"></a><h3>The <code class="literal">“token”</code> property</h3> -<pre class="programlisting"> “token” <span class="type">char</span> *</pre> -<p>Configure the token for draft-chown-6man-tokenised-ipv6-identifiers-02 -IPv6 tokenized interface identifiers. Useful with eui64 addr-gen-mode.</p> -<p>Owner: NMSettingIP6Config</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.4</p> -</div> </div> </div> <div class="footer"> diff --git a/docs/libnm/html/NMSettingIPConfig.html b/docs/libnm/html/NMSettingIPConfig.html index 5a9a903e..e19560b5 100644 --- a/docs/libnm/html/NMSettingIPConfig.html +++ b/docs/libnm/html/NMSettingIPConfig.html @@ -16,8 +16,7 @@ <td width="100%" align="left" class="shortcuts"> <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> <a href="#NMSettingIPConfig.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> - <a href="#NMSettingIPConfig.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties"> <span class="dim">|</span> - <a href="#NMSettingIPConfig.properties" class="shortcut">Properties</a></span> + <a href="#NMSettingIPConfig.object-hierarchy" class="shortcut">Object Hierarchy</a></span> </td> <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> <td><a accesskey="u" href="ch03.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> @@ -692,6 +691,22 @@ addressing, routing, and name service properties</p> </tr> <tr> <td class="function_type"> +<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> +</td> +<td class="function_name"> +<a class="link" href="NMSettingIPConfig.html#nm-ip-routing-rule-get-uid-range" title="nm_ip_routing_rule_get_uid_range ()">nm_ip_routing_rule_get_uid_range</a> <span class="c_punctuation">()</span> +</td> +</tr> +<tr> +<td class="function_type"> +<span class="returnvalue">void</span> +</td> +<td class="function_name"> +<a class="link" href="NMSettingIPConfig.html#nm-ip-routing-rule-set-uid-range" title="nm_ip_routing_rule_set_uid_range ()">nm_ip_routing_rule_set_uid_range</a> <span class="c_punctuation">()</span> +</td> +</tr> +<tr> +<td class="function_type"> <span class="returnvalue">int</span> </td> <td class="function_name"> @@ -1109,6 +1124,14 @@ addressing, routing, and name service properties</p> </td> </tr> <tr> +<td class="function_type"> +<span class="returnvalue">int</span> +</td> +<td class="function_name"> +<a class="link" href="NMSettingIPConfig.html#nm-setting-ip-config-get-required-timeout" title="nm_setting_ip_config_get_required_timeout ()">nm_setting_ip_config_get_required_timeout</a> <span class="c_punctuation">()</span> +</td> +</tr> +<tr> <td class="function_type">const <span class="returnvalue">char</span> * </td> <td class="function_name"> @@ -1157,129 +1180,6 @@ addressing, routing, and name service properties</p> </tbody> </table></div> </div> -<div class="refsect1"> -<a name="NMSettingIPConfig.properties"></a><h2>Properties</h2> -<div class="informaltable"><table class="informaltable" border="0"> -<colgroup> -<col width="150px" class="properties_type"> -<col width="300px" class="properties_name"> -<col width="200px" class="properties_flags"> -</colgroup> -<tbody> -<tr> -<td class="property_type"> -<a href="https://developer.gnome.org/glib/unstable/glib-Pointer-Arrays.html#GPtrArray"><span class="type">GPtrArray</span></a> *</td> -<td class="property_name"><a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--addresses" title="The “addresses” property">addresses</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><span class="type">int</span></td> -<td class="property_name"><a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--dad-timeout" title="The “dad-timeout” property">dad-timeout</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-hostname" title="The “dhcp-hostname” property">dhcp-hostname</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-hostname-flags" title="The “dhcp-hostname-flags” property">dhcp-hostname-flags</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-iaid" title="The “dhcp-iaid” property">dhcp-iaid</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></td> -<td class="property_name"><a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-reject-servers" title="The “dhcp-reject-servers” property">dhcp-reject-servers</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-send-hostname" title="The “dhcp-send-hostname” property">dhcp-send-hostname</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><span class="type">int</span></td> -<td class="property_name"><a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-timeout" title="The “dhcp-timeout” property">dhcp-timeout</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></td> -<td class="property_name"><a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--dns" title="The “dns” property">dns</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></td> -<td class="property_name"><a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--dns-options" title="The “dns-options” property">dns-options</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><span class="type">int</span></td> -<td class="property_name"><a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--dns-priority" title="The “dns-priority” property">dns-priority</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></td> -<td class="property_name"><a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--dns-search" title="The “dns-search” property">dns-search</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--gateway" title="The “gateway” property">gateway</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--ignore-auto-dns" title="The “ignore-auto-dns” property">ignore-auto-dns</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--ignore-auto-routes" title="The “ignore-auto-routes” property">ignore-auto-routes</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--may-fail" title="The “may-fail” property">may-fail</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--method" title="The “method” property">method</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--never-default" title="The “never-default” property">never-default</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint64"><span class="type">gint64</span></a></td> -<td class="property_name"><a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--route-metric" title="The “route-metric” property">route-metric</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--route-table" title="The “route-table” property">route-table</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<a href="https://developer.gnome.org/glib/unstable/glib-Pointer-Arrays.html#GPtrArray"><span class="type">GPtrArray</span></a> *</td> -<td class="property_name"><a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--routes" title="The “routes” property">routes</a></td> -<td class="property_flags">Read / Write</td> -</tr> -</tbody> -</table></div> -</div> <a name="NMIPAddress"></a><a name="NMIPRoute"></a><a name="NMIPRoutingRule"></a><div class="refsect1"> <a name="NMSettingIPConfig.other"></a><h2>Types and Values</h2> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -1450,6 +1350,10 @@ addressing, routing, and name service properties</p> </tr> <tr> <td class="define_keyword">#define</td> +<td class="function_name"><a class="link" href="NMSettingIPConfig.html#NM-SETTING-IP-CONFIG-REQUIRED-TIMEOUT:CAPS" title="NM_SETTING_IP_CONFIG_REQUIRED_TIMEOUT">NM_SETTING_IP_CONFIG_REQUIRED_TIMEOUT</a></td> +</tr> +<tr> +<td class="define_keyword">#define</td> <td class="function_name"><a class="link" href="NMSettingIPConfig.html#NM-SETTING-IP-CONFIG-DHCP-IAID:CAPS" title="NM_SETTING_IP_CONFIG_DHCP_IAID">NM_SETTING_IP_CONFIG_DHCP_IAID</a></td> </tr> <tr> @@ -1529,10 +1433,6 @@ addressing, routing, and name service properties</p> <td class="function_name"><a class="link" href="NMSettingIPConfig.html#NM-SETTING-DNS-OPTION-TRUST-AD:CAPS" title="NM_SETTING_DNS_OPTION_TRUST_AD">NM_SETTING_DNS_OPTION_TRUST_AD</a></td> </tr> <tr> -<td class="datatype_keyword"> </td> -<td class="function_name"><a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig-struct" title="NMSettingIPConfig">NMSettingIPConfig</a></td> -</tr> -<tr> <td class="datatype_keyword">enum</td> <td class="function_name"><a class="link" href="NMSettingIPConfig.html#NMDhcpHostnameFlags" title="enum NMDhcpHostnameFlags">NMDhcpHostnameFlags</a></td> </tr> @@ -1549,11 +1449,6 @@ addressing, routing, and name service properties</p> <span class="lineart">├──</span> NMDhcpHostnameFlags <span class="lineart">├──</span> NMIPAddressCmpFlags <span class="lineart">╰──</span> NMIPRoutingRuleAsStringFlags - <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a> - <span class="lineart">╰──</span> <a class="link" href="NMSetting.html" title="NMSetting">NMSetting</a> - <span class="lineart">╰──</span> NMSettingIPConfig - <span class="lineart">├──</span> <a class="link" href="NMSettingIP4Config.html" title="NMSettingIP4Config">NMSettingIP4Config</a> - <span class="lineart">╰──</span> <a class="link" href="NMSettingIP6Config.html" title="NMSettingIP6Config">NMSettingIP6Config</a> </pre> </div> <div class="refsect1"> @@ -1819,9 +1714,13 @@ nm_ip_address_dup (<em class="parameter"><code><a class="link" href="NMSettingIP <div class="refsect3"> <a name="nm-ip-address-dup.returns"></a><h4>Returns</h4> <p>a copy of <em class="parameter"><code>address</code></em> -. </p> +</p> +<p>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. </p> <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p> </div> +<p class="since">Since: 1.32</p> </div> <hr> <div class="refsect2"> @@ -2416,9 +2315,13 @@ nm_ip_route_dup (<em class="parameter"><code><a class="link" href="NMSettingIPCo <div class="refsect3"> <a name="nm-ip-route-dup.returns"></a><h4>Returns</h4> <p>a copy of <em class="parameter"><code>route</code></em> -. </p> +</p> +<p>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. </p> <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p> </div> +<p class="since">Since: 1.32</p> </div> <hr> <div class="refsect2"> @@ -4176,6 +4079,86 @@ unset.</p></td> </div> <hr> <div class="refsect2"> +<a name="nm-ip-routing-rule-get-uid-range"></a><h3>nm_ip_routing_rule_get_uid_range ()</h3> +<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> +nm_ip_routing_rule_get_uid_range (<em class="parameter"><code>const <a class="link" href="NMSettingIPConfig.html#NMIPRoutingRule"><span class="type">NMIPRoutingRule</span></a> *self</code></em>, + <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> *out_range_start</code></em>, + <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> *out_range_end</code></em>);</pre> +<div class="refsect3"> +<a name="nm-ip-routing-rule-get-uid-range.parameters"></a><h4>Parameters</h4> +<div class="informaltable"><table class="informaltable" width="100%" border="0"> +<colgroup> +<col width="150px" class="parameters_name"> +<col class="parameters_description"> +<col width="200px" class="parameters_annotations"> +</colgroup> +<tbody> +<tr> +<td class="parameter_name"><p>self</p></td> +<td class="parameter_description"><p>the <a class="link" href="NMSettingIPConfig.html#NMIPRoutingRule"><span class="type">NMIPRoutingRule</span></a> instance</p></td> +<td class="parameter_annotations"> </td> +</tr> +<tr> +<td class="parameter_name"><p>out_range_start</p></td> +<td class="parameter_description"><p>returns the start of the range +or 0 if the range is not set. </p></td> +<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td> +</tr> +<tr> +<td class="parameter_name"><p>out_range_end</p></td> +<td class="parameter_description"><p>returns the end of the range +or 0 if the range is not set. </p></td> +<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td> +</tr> +</tbody> +</table></div> +</div> +<div class="refsect3"> +<a name="nm-ip-routing-rule-get-uid-range.returns"></a><h4>Returns</h4> +<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if a uid range is set.</p> +</div> +<p class="since">Since: 1.32. Due to a bug, the symbols of this function</p> +</div> +<hr> +<div class="refsect2"> +<a name="nm-ip-routing-rule-set-uid-range"></a><h3>nm_ip_routing_rule_set_uid_range ()</h3> +<pre class="programlisting"><span class="returnvalue">void</span> +nm_ip_routing_rule_set_uid_range (<em class="parameter"><code><a class="link" href="NMSettingIPConfig.html#NMIPRoutingRule"><span class="type">NMIPRoutingRule</span></a> *self</code></em>, + <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> uid_range_start</code></em>, + <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> uid_range_end</code></em>);</pre> +<p>For a valid range, start must be less or equal to end. +If set to an invalid range, the range gets unset.</p> +<div class="refsect3"> +<a name="nm-ip-routing-rule-set-uid-range.parameters"></a><h4>Parameters</h4> +<div class="informaltable"><table class="informaltable" width="100%" border="0"> +<colgroup> +<col width="150px" class="parameters_name"> +<col class="parameters_description"> +<col width="200px" class="parameters_annotations"> +</colgroup> +<tbody> +<tr> +<td class="parameter_name"><p>self</p></td> +<td class="parameter_description"><p>the <a class="link" href="NMSettingIPConfig.html#NMIPRoutingRule"><span class="type">NMIPRoutingRule</span></a> instance</p></td> +<td class="parameter_annotations"> </td> +</tr> +<tr> +<td class="parameter_name"><p>uid_range_start</p></td> +<td class="parameter_description"><p>the uid_range start to set.</p></td> +<td class="parameter_annotations"> </td> +</tr> +<tr> +<td class="parameter_name"><p>uid_range_end</p></td> +<td class="parameter_description"><p>the uid_range start to set.</p></td> +<td class="parameter_annotations"> </td> +</tr> +</tbody> +</table></div> +</div> +<p class="since">Since: 1.32. Due to a bug, the symbols of this function</p> +</div> +<hr> +<div class="refsect2"> <a name="nm-ip-routing-rule-cmp"></a><h3>nm_ip_routing_rule_cmp ()</h3> <pre class="programlisting"><span class="returnvalue">int</span> nm_ip_routing_rule_cmp (<em class="parameter"><code>const <a class="link" href="NMSettingIPConfig.html#NMIPRoutingRule"><span class="type">NMIPRoutingRule</span></a> *rule</code></em>, @@ -4363,7 +4346,7 @@ nm_setting_ip_config_get_method (<em class="parameter"><code><a class="link" hre </div> <div class="refsect3"> <a name="nm-setting-ip-config-get-method.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--method" title="The “method” property"><span class="type">“method”</span></a> property of the setting; see +<p> the <a href="NMSettingIPConfig.html#NMSettingIPConfig--method"><span class="type">“method”</span></a> property of the setting; see <a class="link" href="NMSettingIP4Config.html" title="NMSettingIP4Config"><span class="type">NMSettingIP4Config</span></a> and <a class="link" href="NMSettingIP6Config.html" title="NMSettingIP6Config"><span class="type">NMSettingIP6Config</span></a> for details of the methods available with each type.</p> </div> @@ -5402,7 +5385,7 @@ nm_setting_ip_config_clear_routes (<em class="parameter"><code><a class="link" h <a name="nm-setting-ip-config-get-route-metric"></a><h3>nm_setting_ip_config_get_route_metric ()</h3> <pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint64"><span class="returnvalue">gint64</span></a> nm_setting_ip_config_get_route_metric (<em class="parameter"><code><a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig"><span class="type">NMSettingIPConfig</span></a> *setting</code></em>);</pre> -<p>Returns the value contained in the <a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--route-metric" title="The “route-metric” property"><span class="type">“route-metric”</span></a> +<p>Returns the value contained in the <a href="NMSettingIPConfig.html#NMSettingIPConfig--route-metric"><span class="type">“route-metric”</span></a> property.</p> <div class="refsect3"> <a name="nm-setting-ip-config-get-route-metric.parameters"></a><h4>Parameters</h4> @@ -5422,7 +5405,7 @@ property.</p> <div class="refsect3"> <a name="nm-setting-ip-config-get-route-metric.returns"></a><h4>Returns</h4> <p> the route metric that is used for routes that don't explicitly -specify a metric. See <a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--route-metric" title="The “route-metric” property"><span class="type">“route-metric”</span></a> for more details.</p> +specify a metric. See <a href="NMSettingIPConfig.html#NMSettingIPConfig--route-metric"><span class="type">“route-metric”</span></a> for more details.</p> </div> </div> <hr> @@ -5430,7 +5413,7 @@ specify a metric. See <a class="link" href="NMSettingIPConfig.html#NMSettingIPCo <a name="nm-setting-ip-config-get-route-table"></a><h3>nm_setting_ip_config_get_route_table ()</h3> <pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint32"><span class="returnvalue">guint32</span></a> nm_setting_ip_config_get_route_table (<em class="parameter"><code><a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig"><span class="type">NMSettingIPConfig</span></a> *setting</code></em>);</pre> -<p>Returns the value contained in the <a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--route-table" title="The “route-table” property"><span class="type">“route-table”</span></a> +<p>Returns the value contained in the <a href="NMSettingIPConfig.html#NMSettingIPConfig--route-table"><span class="type">“route-table”</span></a> property.</p> <div class="refsect3"> <a name="nm-setting-ip-config-get-route-table.parameters"></a><h4>Parameters</h4> @@ -5614,7 +5597,7 @@ nm_setting_ip_config_clear_routing_rules <pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> nm_setting_ip_config_get_ignore_auto_routes (<em class="parameter"><code><a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig"><span class="type">NMSettingIPConfig</span></a> *setting</code></em>);</pre> -<p>Returns the value contained in the <a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--ignore-auto-routes" title="The “ignore-auto-routes” property"><span class="type">“ignore-auto-routes”</span></a> +<p>Returns the value contained in the <a href="NMSettingIPConfig.html#NMSettingIPConfig--ignore-auto-routes"><span class="type">“ignore-auto-routes”</span></a> property.</p> <div class="refsect3"> <a name="nm-setting-ip-config-get-ignore-auto-routes.parameters"></a><h4>Parameters</h4> @@ -5643,7 +5626,7 @@ ignored.</p> <pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> nm_setting_ip_config_get_ignore_auto_dns (<em class="parameter"><code><a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig"><span class="type">NMSettingIPConfig</span></a> *setting</code></em>);</pre> -<p>Returns the value contained in the <a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--ignore-auto-dns" title="The “ignore-auto-dns” property"><span class="type">“ignore-auto-dns”</span></a> +<p>Returns the value contained in the <a href="NMSettingIPConfig.html#NMSettingIPConfig--ignore-auto-dns"><span class="type">“ignore-auto-dns”</span></a> property.</p> <div class="refsect3"> <a name="nm-setting-ip-config-get-ignore-auto-dns.parameters"></a><h4>Parameters</h4> @@ -5672,7 +5655,7 @@ should be ignored.</p> <pre class="programlisting">const <span class="returnvalue">char</span> * nm_setting_ip_config_get_dhcp_hostname (<em class="parameter"><code><a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig"><span class="type">NMSettingIPConfig</span></a> *setting</code></em>);</pre> -<p>Returns the value contained in the <a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-hostname" title="The “dhcp-hostname” property"><span class="type">“dhcp-hostname”</span></a> +<p>Returns the value contained in the <a href="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-hostname"><span class="type">“dhcp-hostname”</span></a> property.</p> <div class="refsect3"> <a name="nm-setting-ip-config-get-dhcp-hostname.parameters"></a><h4>Parameters</h4> @@ -5700,7 +5683,7 @@ property.</p> <pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> nm_setting_ip_config_get_dhcp_send_hostname (<em class="parameter"><code><a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig"><span class="type">NMSettingIPConfig</span></a> *setting</code></em>);</pre> -<p>Returns the value contained in the <a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-send-hostname" title="The “dhcp-send-hostname” property"><span class="type">“dhcp-send-hostname”</span></a> +<p>Returns the value contained in the <a href="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-send-hostname"><span class="type">“dhcp-send-hostname”</span></a> property.</p> <div class="refsect3"> <a name="nm-setting-ip-config-get-dhcp-send-hostname.parameters"></a><h4>Parameters</h4> @@ -5730,7 +5713,7 @@ update DNS information for this machine.</p> <pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> nm_setting_ip_config_get_never_default (<em class="parameter"><code><a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig"><span class="type">NMSettingIPConfig</span></a> *setting</code></em>);</pre> -<p>Returns the value contained in the <a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--never-default" title="The “never-default” property"><span class="type">“never-default”</span></a> +<p>Returns the value contained in the <a href="NMSettingIPConfig.html#NMSettingIPConfig--never-default"><span class="type">“never-default”</span></a> property.</p> <div class="refsect3"> <a name="nm-setting-ip-config-get-never-default.parameters"></a><h4>Parameters</h4> @@ -5758,7 +5741,7 @@ connection</p> <a name="nm-setting-ip-config-get-may-fail"></a><h3>nm_setting_ip_config_get_may_fail ()</h3> <pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> nm_setting_ip_config_get_may_fail (<em class="parameter"><code><a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig"><span class="type">NMSettingIPConfig</span></a> *setting</code></em>);</pre> -<p>Returns the value contained in the <a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--may-fail" title="The “may-fail” property"><span class="type">“may-fail”</span></a> +<p>Returns the value contained in the <a href="NMSettingIPConfig.html#NMSettingIPConfig--may-fail"><span class="type">“may-fail”</span></a> property.</p> <div class="refsect3"> <a name="nm-setting-ip-config-get-may-fail.parameters"></a><h4>Parameters</h4> @@ -5803,7 +5786,7 @@ nm_setting_ip_config_get_dad_timeout (<em class="parameter"><code><a class="link </div> <div class="refsect3"> <a name="nm-setting-ip-config-get-dad-timeout.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--dad-timeout" title="The “dad-timeout” property"><span class="type">“dad-timeout”</span></a> property.</p> +<p> the <a href="NMSettingIPConfig.html#NMSettingIPConfig--dad-timeout"><span class="type">“dad-timeout”</span></a> property.</p> </div> <p class="since">Since: 1.2</p> </div> @@ -5812,7 +5795,7 @@ nm_setting_ip_config_get_dad_timeout (<em class="parameter"><code><a class="link <a name="nm-setting-ip-config-get-dhcp-timeout"></a><h3>nm_setting_ip_config_get_dhcp_timeout ()</h3> <pre class="programlisting"><span class="returnvalue">int</span> nm_setting_ip_config_get_dhcp_timeout (<em class="parameter"><code><a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig"><span class="type">NMSettingIPConfig</span></a> *setting</code></em>);</pre> -<p>Returns the value contained in the <a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-timeout" title="The “dhcp-timeout” property"><span class="type">“dhcp-timeout”</span></a> +<p>Returns the value contained in the <a href="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-timeout"><span class="type">“dhcp-timeout”</span></a> property.</p> <div class="refsect3"> <a name="nm-setting-ip-config-get-dhcp-timeout.parameters"></a><h4>Parameters</h4> @@ -5838,10 +5821,39 @@ the particular kind of device.</p> </div> <hr> <div class="refsect2"> +<a name="nm-setting-ip-config-get-required-timeout"></a><h3>nm_setting_ip_config_get_required_timeout ()</h3> +<pre class="programlisting"><span class="returnvalue">int</span> +nm_setting_ip_config_get_required_timeout + (<em class="parameter"><code><a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig"><span class="type">NMSettingIPConfig</span></a> *setting</code></em>);</pre> +<p>Returns the value contained in the <span class="type">“required-timeout”</span> +property.</p> +<div class="refsect3"> +<a name="nm-setting-ip-config-get-required-timeout.parameters"></a><h4>Parameters</h4> +<div class="informaltable"><table class="informaltable" width="100%" border="0"> +<colgroup> +<col width="150px" class="parameters_name"> +<col class="parameters_description"> +<col width="200px" class="parameters_annotations"> +</colgroup> +<tbody><tr> +<td class="parameter_name"><p>setting</p></td> +<td class="parameter_description"><p>the <a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig"><span class="type">NMSettingIPConfig</span></a></p></td> +<td class="parameter_annotations"> </td> +</tr></tbody> +</table></div> +</div> +<div class="refsect3"> +<a name="nm-setting-ip-config-get-required-timeout.returns"></a><h4>Returns</h4> +<p> the required timeout for the address family</p> +</div> +<p class="since">Since: 1.34, 1.32.4</p> +</div> +<hr> +<div class="refsect2"> <a name="nm-setting-ip-config-get-dhcp-iaid"></a><h3>nm_setting_ip_config_get_dhcp_iaid ()</h3> <pre class="programlisting">const <span class="returnvalue">char</span> * nm_setting_ip_config_get_dhcp_iaid (<em class="parameter"><code><a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig"><span class="type">NMSettingIPConfig</span></a> *setting</code></em>);</pre> -<p>Returns the value contained in the <a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-iaid" title="The “dhcp-iaid” property"><span class="type">“dhcp-iaid”</span></a> +<p>Returns the value contained in the <a href="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-iaid"><span class="type">“dhcp-iaid”</span></a> property.</p> <div class="refsect3"> <a name="nm-setting-ip-config-get-dhcp-iaid.parameters"></a><h4>Parameters</h4> @@ -5870,7 +5882,7 @@ property.</p> <pre class="programlisting"><a class="link" href="NMSettingIPConfig.html#NMDhcpHostnameFlags" title="enum NMDhcpHostnameFlags"><span class="returnvalue">NMDhcpHostnameFlags</span></a> nm_setting_ip_config_get_dhcp_hostname_flags (<em class="parameter"><code><a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig"><span class="type">NMSettingIPConfig</span></a> *setting</code></em>);</pre> -<p>Returns the value contained in the <a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-hostname-flags" title="The “dhcp-hostname-flags” property"><span class="type">“dhcp-hostname-flags”</span></a> +<p>Returns the value contained in the <a href="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-hostname-flags"><span class="type">“dhcp-hostname-flags”</span></a> property.</p> <div class="refsect3"> <a name="nm-setting-ip-config-get-dhcp-hostname-flags.parameters"></a><h4>Parameters</h4> @@ -6339,6 +6351,12 @@ rule verfies or fail.</p> </div> <hr> <div class="refsect2"> +<a name="NM-SETTING-IP-CONFIG-REQUIRED-TIMEOUT:CAPS"></a><h3>NM_SETTING_IP_CONFIG_REQUIRED_TIMEOUT</h3> +<pre class="programlisting">#define NM_SETTING_IP_CONFIG_REQUIRED_TIMEOUT "required-timeout" +</pre> +</div> +<hr> +<div class="refsect2"> <a name="NM-SETTING-IP-CONFIG-DHCP-IAID:CAPS"></a><h3>NM_SETTING_IP_CONFIG_DHCP_IAID</h3> <pre class="programlisting">#define NM_SETTING_IP_CONFIG_DHCP_IAID "dhcp-iaid" </pre> @@ -6459,11 +6477,6 @@ rule verfies or fail.</p> </div> <hr> <div class="refsect2"> -<a name="NMSettingIPConfig-struct"></a><h3>NMSettingIPConfig</h3> -<pre class="programlisting">typedef struct _NMSettingIPConfig NMSettingIPConfig;</pre> -</div> -<hr> -<div class="refsect2"> <a name="NMDhcpHostnameFlags"></a><h3>enum NMDhcpHostnameFlags</h3> <p><a class="link" href="NMSettingIPConfig.html#NMDhcpHostnameFlags" title="enum NMDhcpHostnameFlags"><span class="type">NMDhcpHostnameFlags</span></a> describe flags related to the DHCP hostname and FQDN.</p> @@ -6533,363 +6546,6 @@ incompatible with any other FQDN flag.</p> </div> </div> <div class="refsect1"> -<a name="NMSettingIPConfig.property-details"></a><h2>Property Details</h2> -<div class="refsect2"> -<a name="NMSettingIPConfig--addresses"></a><h3>The <code class="literal">“addresses”</code> property</h3> -<pre class="programlisting"> “addresses” <a href="https://developer.gnome.org/glib/unstable/glib-Pointer-Arrays.html#GPtrArray"><span class="type">GPtrArray</span></a> *</pre> -<p>Array of IP addresses.</p> -<p><span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GPtrArray(NMIPAddress)]</span></p> -<p>Owner: NMSettingIPConfig</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIPConfig--dad-timeout"></a><h3>The <code class="literal">“dad-timeout”</code> property</h3> -<pre class="programlisting"> “dad-timeout” <span class="type">int</span></pre> -<p>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.</p> -<p>The property is currently implemented only for IPv4.</p> -<p>Owner: NMSettingIPConfig</p> -<p>Flags: Read / Write</p> -<p>Allowed values: [-1,30000]</p> -<p>Default value: -1</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIPConfig--dhcp-hostname"></a><h3>The <code class="literal">“dhcp-hostname”</code> property</h3> -<pre class="programlisting"> “dhcp-hostname” <span class="type">char</span> *</pre> -<p>If the <a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-send-hostname" title="The “dhcp-send-hostname” property"><span class="type">“dhcp-send-hostname”</span></a> property is <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, then the -specified name will be sent to the DHCP server when acquiring a lease. -This property and <a class="link" href="NMSettingIP4Config.html#NMSettingIP4Config--dhcp-fqdn" title="The “dhcp-fqdn” property"><span class="type">“dhcp-fqdn”</span></a> are mutually exclusive and -cannot be set at the same time.</p> -<p>Owner: NMSettingIPConfig</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIPConfig--dhcp-hostname-flags"></a><h3>The <code class="literal">“dhcp-hostname-flags”</code> property</h3> -<pre class="programlisting"> “dhcp-hostname-flags” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>Flags for the DHCP hostname and FQDN.</p> -<p>Currently, this property only includes flags to control the FQDN flags -set in the DHCP FQDN option. Supported FQDN flags are -<a class="link" href="NMSettingIPConfig.html#NM-DHCP-HOSTNAME-FLAG-FQDN-SERV-UPDATE:CAPS"><code class="literal">NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE</code></a>, -<a class="link" href="NMSettingIPConfig.html#NM-DHCP-HOSTNAME-FLAG-FQDN-ENCODED:CAPS"><code class="literal">NM_DHCP_HOSTNAME_FLAG_FQDN_ENCODED</code></a> and -<a class="link" href="NMSettingIPConfig.html#NM-DHCP-HOSTNAME-FLAG-FQDN-NO-UPDATE:CAPS"><code class="literal">NM_DHCP_HOSTNAME_FLAG_FQDN_NO_UPDATE</code></a>. When no FQDN flag is set and -<a class="link" href="NMSettingIPConfig.html#NM-DHCP-HOSTNAME-FLAG-FQDN-CLEAR-FLAGS:CAPS"><code class="literal">NM_DHCP_HOSTNAME_FLAG_FQDN_CLEAR_FLAGS</code></a> is set, the DHCP FQDN option will -contain no flag. Otherwise, if no FQDN flag is set and -<a class="link" href="NMSettingIPConfig.html#NM-DHCP-HOSTNAME-FLAG-FQDN-CLEAR-FLAGS:CAPS"><code class="literal">NM_DHCP_HOSTNAME_FLAG_FQDN_CLEAR_FLAGS</code></a> is not set, the standard FQDN flags -are set in the request: -<a class="link" href="NMSettingIPConfig.html#NM-DHCP-HOSTNAME-FLAG-FQDN-SERV-UPDATE:CAPS"><code class="literal">NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE</code></a>, -<a class="link" href="NMSettingIPConfig.html#NM-DHCP-HOSTNAME-FLAG-FQDN-ENCODED:CAPS"><code class="literal">NM_DHCP_HOSTNAME_FLAG_FQDN_ENCODED</code></a> for IPv4 and -<a class="link" href="NMSettingIPConfig.html#NM-DHCP-HOSTNAME-FLAG-FQDN-SERV-UPDATE:CAPS"><code class="literal">NM_DHCP_HOSTNAME_FLAG_FQDN_SERV_UPDATE</code></a> for IPv6.</p> -<p>When this property is set to the default value <a class="link" href="NMSettingIPConfig.html#NM-DHCP-HOSTNAME-FLAG-NONE:CAPS"><code class="literal">NM_DHCP_HOSTNAME_FLAG_NONE</code></a>, -a global default is looked up in NetworkManager configuration. If that value -is unset or also <a class="link" href="NMSettingIPConfig.html#NM-DHCP-HOSTNAME-FLAG-NONE:CAPS"><code class="literal">NM_DHCP_HOSTNAME_FLAG_NONE</code></a>, then the standard FQDN flags -described above are sent in the DHCP requests.</p> -<p>Owner: NMSettingIPConfig</p> -<p>Flags: Read / Write</p> -<p>Default value: 0</p> -<p class="since">Since: 1.22</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIPConfig--dhcp-iaid"></a><h3>The <code class="literal">“dhcp-iaid”</code> property</h3> -<pre class="programlisting"> “dhcp-iaid” <span class="type">char</span> *</pre> -<p>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.</p> -<p>Owner: NMSettingIPConfig</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.22</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIPConfig--dhcp-reject-servers"></a><h3>The <code class="literal">“dhcp-reject-servers”</code> property</h3> -<pre class="programlisting"> “dhcp-reject-servers” <a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></pre> -<p>Array of servers from which DHCP offers must be rejected. This property -is useful to avoid getting a lease from misconfigured or rogue servers.</p> -<p>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").</p> -<p>This property is currently not implemented for DHCPv6.</p> -<p>Owner: NMSettingIPConfig</p> -<p>Flags: Read / Write</p> -<p class="since">Since: 1.28</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIPConfig--dhcp-send-hostname"></a><h3>The <code class="literal">“dhcp-send-hostname”</code> property</h3> -<pre class="programlisting"> “dhcp-send-hostname” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>If <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, 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 -<a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-hostname" title="The “dhcp-hostname” property"><span class="type">“dhcp-hostname”</span></a> property is <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> and this property is -<a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, the current persistent hostname of the computer is sent.</p> -<p>Owner: NMSettingIPConfig</p> -<p>Flags: Read / Write</p> -<p>Default value: TRUE</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIPConfig--dhcp-timeout"></a><h3>The <code class="literal">“dhcp-timeout”</code> property</h3> -<pre class="programlisting"> “dhcp-timeout” <span class="type">int</span></pre> -<p>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).</p> -<p>Set to 2147483647 (MAXINT32) for infinity.</p> -<p>Owner: NMSettingIPConfig</p> -<p>Flags: Read / Write</p> -<p>Allowed values: >= 0</p> -<p>Default value: 0</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIPConfig--dns"></a><h3>The <code class="literal">“dns”</code> property</h3> -<pre class="programlisting"> “dns” <a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></pre> -<p>Array of IP addresses of DNS servers.</p> -<p>Owner: NMSettingIPConfig</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIPConfig--dns-options"></a><h3>The <code class="literal">“dns-options”</code> property</h3> -<pre class="programlisting"> “dns-options” <a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></pre> -<p>Array of DNS options as described in man 5 resolv.conf.</p> -<p><a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> 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.</p> -<p>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".</p> -<p>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.</p> -<p>When using a caching DNS plugin (dnsmasq or systemd-resolved in -NetworkManager.conf) then "edns0" and "trust-ad" are automatically -added.</p> -<p>Owner: NMSettingIPConfig</p> -<p>Flags: Read / Write</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIPConfig--dns-priority"></a><h3>The <code class="literal">“dns-priority”</code> property</h3> -<pre class="programlisting"> “dns-priority” <span class="type">int</span></pre> -<p>DNS servers priority.</p> -<p>The relative priority for DNS servers specified by this setting. A lower -numerical value is better (higher priority).</p> -<p>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.</p> -<p>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.</p> -<p>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.</p> -<p>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.</p> -<p>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.</p> -<p>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.</p> -<p>Owner: NMSettingIPConfig</p> -<p>Flags: Read / Write</p> -<p>Default value: 0</p> -<p class="since">Since: 1.4</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIPConfig--dns-search"></a><h3>The <code class="literal">“dns-search”</code> property</h3> -<pre class="programlisting"> “dns-search” <a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></pre> -<p>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.</p> -<p>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.</p> -<p>Owner: NMSettingIPConfig</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIPConfig--gateway"></a><h3>The <code class="literal">“gateway”</code> property</h3> -<pre class="programlisting"> “gateway” <span class="type">char</span> *</pre> -<p>The gateway associated with this configuration. This is only meaningful -if <a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--addresses" title="The “addresses” property"><span class="type">“addresses”</span></a> is also set.</p> -<p>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 <a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--never-default" title="The “never-default” property"><span class="type">“never-default”</span></a> and will be -automatically dropped if the IP configuration is set to never-default.</p> -<p>As an alternative to set the gateway, configure a static default route with /0 as prefix -length.</p> -<p>Owner: NMSettingIPConfig</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIPConfig--ignore-auto-dns"></a><h3>The <code class="literal">“ignore-auto-dns”</code> property</h3> -<pre class="programlisting"> “ignore-auto-dns” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>When <a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--method" title="The “method” property"><span class="type">“method”</span></a> is set to "auto" and this property to -<a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, automatically configured name servers and search domains are -ignored and only name servers and search domains specified in the -<a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--dns" title="The “dns” property"><span class="type">“dns”</span></a> and <a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--dns-search" title="The “dns-search” property"><span class="type">“dns-search”</span></a> properties, if -any, are used.</p> -<p>Owner: NMSettingIPConfig</p> -<p>Flags: Read / Write</p> -<p>Default value: FALSE</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIPConfig--ignore-auto-routes"></a><h3>The <code class="literal">“ignore-auto-routes”</code> property</h3> -<pre class="programlisting"> “ignore-auto-routes” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>When <a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--method" title="The “method” property"><span class="type">“method”</span></a> is set to "auto" and this property to -<a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, automatically configured routes are ignored and only routes -specified in the <a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--routes" title="The “routes” property"><span class="type">“routes”</span></a> property, if any, are used.</p> -<p>Owner: NMSettingIPConfig</p> -<p>Flags: Read / Write</p> -<p>Default value: FALSE</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIPConfig--may-fail"></a><h3>The <code class="literal">“may-fail”</code> property</h3> -<pre class="programlisting"> “may-fail” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>If <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, 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 -<a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> on the <a class="link" href="NMSettingIP4Config.html" title="NMSettingIP4Config"><span class="type">NMSettingIP4Config</span></a> allows the overall network configuration -to succeed if IPv4 configuration fails but IPv6 configuration completes -successfully.</p> -<p>Owner: NMSettingIPConfig</p> -<p>Flags: Read / Write</p> -<p>Default value: TRUE</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIPConfig--method"></a><h3>The <code class="literal">“method”</code> property</h3> -<pre class="programlisting"> “method” <span class="type">char</span> *</pre> -<p>IP configuration method.</p> -<p><a class="link" href="NMSettingIP4Config.html" title="NMSettingIP4Config"><span class="type">NMSettingIP4Config</span></a> and <a class="link" href="NMSettingIP6Config.html" title="NMSettingIP6Config"><span class="type">NMSettingIP6Config</span></a> both support "disabled", -"auto", "manual", and "link-local". See the subclass-specific -documentation for other values.</p> -<p>In general, for the "auto" method, properties such as -<a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--dns" title="The “dns” property"><span class="type">“dns”</span></a> and <a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--routes" title="The “routes” property"><span class="type">“routes”</span></a> specify information -that is added on to the information returned from automatic -configuration. The <a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--ignore-auto-routes" title="The “ignore-auto-routes” property"><span class="type">“ignore-auto-routes”</span></a> and -<a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--ignore-auto-dns" title="The “ignore-auto-dns” property"><span class="type">“ignore-auto-dns”</span></a> properties modify this behavior.</p> -<p>For methods that imply no upstream network, such as "shared" or -"link-local", these properties must be empty.</p> -<p>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.</p> -<p>Owner: NMSettingIPConfig</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIPConfig--never-default"></a><h3>The <code class="literal">“never-default”</code> property</h3> -<pre class="programlisting"> “never-default” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>If <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, this connection will never be the default connection for this -IP type, meaning it will never be assigned the default route by -NetworkManager.</p> -<p>Owner: NMSettingIPConfig</p> -<p>Flags: Read / Write</p> -<p>Default value: FALSE</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIPConfig--route-metric"></a><h3>The <code class="literal">“route-metric”</code> property</h3> -<pre class="programlisting"> “route-metric” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint64"><span class="type">gint64</span></a></pre> -<p>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.</p> -<p>Owner: NMSettingIPConfig</p> -<p>Flags: Read / Write</p> -<p>Allowed values: [-1,4294967295]</p> -<p>Default value: -1</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIPConfig--route-table"></a><h3>The <code class="literal">“route-table”</code> property</h3> -<pre class="programlisting"> “route-table” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>Enable policy routing (source routing) and set the routing table used when adding routes.</p> -<p>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.</p> -<p>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.</p> -<p>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.</p> -<p>Owner: NMSettingIPConfig</p> -<p>Flags: Read / Write</p> -<p>Default value: 0</p> -<p class="since">Since: 1.10</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIPConfig--routes"></a><h3>The <code class="literal">“routes”</code> property</h3> -<pre class="programlisting"> “routes” <a href="https://developer.gnome.org/glib/unstable/glib-Pointer-Arrays.html#GPtrArray"><span class="type">GPtrArray</span></a> *</pre> -<p>Array of IP routes.</p> -<p><span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GPtrArray(NMIPRoute)]</span></p> -<p>Owner: NMSettingIPConfig</p> -<p>Flags: Read / Write</p> -</div> -</div> -<div class="refsect1"> <a name="NMSettingIPConfig.see-also"></a><h2>See Also</h2> <p><a class="link" href="NMSettingIP4Config.html" title="NMSettingIP4Config"><span class="type">NMSettingIP4Config</span></a>, <a class="link" href="NMSettingIP6Config.html" title="NMSettingIP6Config"><span class="type">NMSettingIP6Config</span></a></p> </div> diff --git a/docs/libnm/html/NMSettingIPTunnel.html b/docs/libnm/html/NMSettingIPTunnel.html index 6093e7d5..b97a37fe 100644 --- a/docs/libnm/html/NMSettingIPTunnel.html +++ b/docs/libnm/html/NMSettingIPTunnel.html @@ -16,8 +16,7 @@ <td width="100%" align="left" class="shortcuts"> <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> <a href="#NMSettingIPTunnel.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> - <a href="#NMSettingIPTunnel.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties"> <span class="dim">|</span> - <a href="#NMSettingIPTunnel.properties" class="shortcut">Properties</a></span> + <a href="#NMSettingIPTunnel.object-hierarchy" class="shortcut">Object Hierarchy</a></span> </td> <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> <td><a accesskey="u" href="ch03.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> @@ -152,88 +151,6 @@ </table></div> </div> <div class="refsect1"> -<a name="NMSettingIPTunnel.properties"></a><h2>Properties</h2> -<div class="informaltable"><table class="informaltable" border="0"> -<colgroup> -<col width="150px" class="properties_type"> -<col width="300px" class="properties_name"> -<col width="200px" class="properties_flags"> -</colgroup> -<tbody> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--encapsulation-limit" title="The “encapsulation-limit” property">encapsulation-limit</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--flags" title="The “flags” property">flags</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--flow-label" title="The “flow-label” property">flow-label</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--input-key" title="The “input-key” property">input-key</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--local" title="The “local” property">local</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--mode" title="The “mode” property">mode</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--mtu" title="The “mtu” property">mtu</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--output-key" title="The “output-key” property">output-key</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--parent" title="The “parent” property">parent</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--path-mtu-discovery" title="The “path-mtu-discovery” property">path-mtu-discovery</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--remote" title="The “remote” property">remote</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--tos" title="The “tos” property">tos</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--ttl" title="The “ttl” property">ttl</a></td> -<td class="property_flags">Read / Write</td> -</tr> -</tbody> -</table></div> -</div> -<div class="refsect1"> <a name="NMSettingIPTunnel.other"></a><h2>Types and Values</h2> <div class="informaltable"><table class="informaltable" width="100%" border="0"> <colgroup> @@ -298,10 +215,6 @@ <td class="function_name"><a class="link" href="NMSettingIPTunnel.html#NM-SETTING-IP-TUNNEL-FLAGS:CAPS" title="NM_SETTING_IP_TUNNEL_FLAGS">NM_SETTING_IP_TUNNEL_FLAGS</a></td> </tr> <tr> -<td class="datatype_keyword"> </td> -<td class="function_name"><a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel-struct" title="NMSettingIPTunnel">NMSettingIPTunnel</a></td> -</tr> -<tr> <td class="datatype_keyword">enum</td> <td class="function_name"><a class="link" href="NMSettingIPTunnel.html#NMIPTunnelFlags" title="enum NMIPTunnelFlags">NMIPTunnelFlags</a></td> </tr> @@ -312,9 +225,6 @@ <a name="NMSettingIPTunnel.object-hierarchy"></a><h2>Object Hierarchy</h2> <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html">GFlags</a> <span class="lineart">╰──</span> NMIPTunnelFlags - <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a> - <span class="lineart">╰──</span> <a class="link" href="NMSetting.html" title="NMSetting">NMSetting</a> - <span class="lineart">╰──</span> NMSettingIPTunnel </pre> </div> <div class="refsect1"> @@ -339,7 +249,7 @@ nm_setting_ip_tunnel_new (<em class="parameter"><code><span class="type">void</s <a name="nm-setting-ip-tunnel-get-parent"></a><h3>nm_setting_ip_tunnel_get_parent ()</h3> <pre class="programlisting">const <span class="returnvalue">char</span> * nm_setting_ip_tunnel_get_parent (<em class="parameter"><code><a class="link" href="NMSettingIPTunnel.html" title="NMSettingIPTunnel"><span class="type">NMSettingIPTunnel</span></a> *setting</code></em>);</pre> -<p>Returns the <a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--parent" title="The “parent” property"><span class="type">“parent”</span></a> property of the setting</p> +<p>Returns the <a href="NMSettingIPTunnel.html#NMSettingIPTunnel--parent"><span class="type">“parent”</span></a> property of the setting</p> <div class="refsect3"> <a name="nm-setting-ip-tunnel-get-parent.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -366,7 +276,7 @@ nm_setting_ip_tunnel_get_parent (<em class="parameter"><code><a class="link" hre <a name="nm-setting-ip-tunnel-get-mode"></a><h3>nm_setting_ip_tunnel_get_mode ()</h3> <pre class="programlisting"><a class="link" href="libnm-nm-dbus-interface.html#NMIPTunnelMode" title="enum NMIPTunnelMode"><span class="returnvalue">NMIPTunnelMode</span></a> nm_setting_ip_tunnel_get_mode (<em class="parameter"><code><a class="link" href="NMSettingIPTunnel.html" title="NMSettingIPTunnel"><span class="type">NMSettingIPTunnel</span></a> *setting</code></em>);</pre> -<p>Returns the <a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--mode" title="The “mode” property"><span class="type">“mode”</span></a> property of the setting.</p> +<p>Returns the <a href="NMSettingIPTunnel.html#NMSettingIPTunnel--mode"><span class="type">“mode”</span></a> property of the setting.</p> <div class="refsect3"> <a name="nm-setting-ip-tunnel-get-mode.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -393,7 +303,7 @@ nm_setting_ip_tunnel_get_mode (<em class="parameter"><code><a class="link" href= <a name="nm-setting-ip-tunnel-get-local"></a><h3>nm_setting_ip_tunnel_get_local ()</h3> <pre class="programlisting">const <span class="returnvalue">char</span> * nm_setting_ip_tunnel_get_local (<em class="parameter"><code><a class="link" href="NMSettingIPTunnel.html" title="NMSettingIPTunnel"><span class="type">NMSettingIPTunnel</span></a> *setting</code></em>);</pre> -<p>Returns the <a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--local" title="The “local” property"><span class="type">“local”</span></a> property of the setting.</p> +<p>Returns the <a href="NMSettingIPTunnel.html#NMSettingIPTunnel--local"><span class="type">“local”</span></a> property of the setting.</p> <div class="refsect3"> <a name="nm-setting-ip-tunnel-get-local.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -420,7 +330,7 @@ nm_setting_ip_tunnel_get_local (<em class="parameter"><code><a class="link" href <a name="nm-setting-ip-tunnel-get-remote"></a><h3>nm_setting_ip_tunnel_get_remote ()</h3> <pre class="programlisting">const <span class="returnvalue">char</span> * nm_setting_ip_tunnel_get_remote (<em class="parameter"><code><a class="link" href="NMSettingIPTunnel.html" title="NMSettingIPTunnel"><span class="type">NMSettingIPTunnel</span></a> *setting</code></em>);</pre> -<p>Returns the <a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--remote" title="The “remote” property"><span class="type">“remote”</span></a> property of the setting.</p> +<p>Returns the <a href="NMSettingIPTunnel.html#NMSettingIPTunnel--remote"><span class="type">“remote”</span></a> property of the setting.</p> <div class="refsect3"> <a name="nm-setting-ip-tunnel-get-remote.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -447,7 +357,7 @@ nm_setting_ip_tunnel_get_remote (<em class="parameter"><code><a class="link" hre <a name="nm-setting-ip-tunnel-get-ttl"></a><h3>nm_setting_ip_tunnel_get_ttl ()</h3> <pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a> nm_setting_ip_tunnel_get_ttl (<em class="parameter"><code><a class="link" href="NMSettingIPTunnel.html" title="NMSettingIPTunnel"><span class="type">NMSettingIPTunnel</span></a> *setting</code></em>);</pre> -<p>Returns the <a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--ttl" title="The “ttl” property"><span class="type">“ttl”</span></a> property of the setting.</p> +<p>Returns the <a href="NMSettingIPTunnel.html#NMSettingIPTunnel--ttl"><span class="type">“ttl”</span></a> property of the setting.</p> <div class="refsect3"> <a name="nm-setting-ip-tunnel-get-ttl.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -474,7 +384,7 @@ nm_setting_ip_tunnel_get_ttl (<em class="parameter"><code><a class="link" href=" <a name="nm-setting-ip-tunnel-get-tos"></a><h3>nm_setting_ip_tunnel_get_tos ()</h3> <pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a> nm_setting_ip_tunnel_get_tos (<em class="parameter"><code><a class="link" href="NMSettingIPTunnel.html" title="NMSettingIPTunnel"><span class="type">NMSettingIPTunnel</span></a> *setting</code></em>);</pre> -<p>Returns the <a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--tos" title="The “tos” property"><span class="type">“tos”</span></a> property of the setting.</p> +<p>Returns the <a href="NMSettingIPTunnel.html#NMSettingIPTunnel--tos"><span class="type">“tos”</span></a> property of the setting.</p> <div class="refsect3"> <a name="nm-setting-ip-tunnel-get-tos.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -502,7 +412,7 @@ nm_setting_ip_tunnel_get_tos (<em class="parameter"><code><a class="link" href=" <pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> nm_setting_ip_tunnel_get_path_mtu_discovery (<em class="parameter"><code><a class="link" href="NMSettingIPTunnel.html" title="NMSettingIPTunnel"><span class="type">NMSettingIPTunnel</span></a> *setting</code></em>);</pre> -<p>Returns the <a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--path-mtu-discovery" title="The “path-mtu-discovery” property"><span class="type">“path-mtu-discovery”</span></a> property of the setting.</p> +<p>Returns the <a href="NMSettingIPTunnel.html#NMSettingIPTunnel--path-mtu-discovery"><span class="type">“path-mtu-discovery”</span></a> property of the setting.</p> <div class="refsect3"> <a name="nm-setting-ip-tunnel-get-path-mtu-discovery.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -529,7 +439,7 @@ nm_setting_ip_tunnel_get_path_mtu_discovery <a name="nm-setting-ip-tunnel-get-input-key"></a><h3>nm_setting_ip_tunnel_get_input_key ()</h3> <pre class="programlisting">const <span class="returnvalue">char</span> * nm_setting_ip_tunnel_get_input_key (<em class="parameter"><code><a class="link" href="NMSettingIPTunnel.html" title="NMSettingIPTunnel"><span class="type">NMSettingIPTunnel</span></a> *setting</code></em>);</pre> -<p>Returns the <a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--input-key" title="The “input-key” property"><span class="type">“input-key”</span></a> property of the setting.</p> +<p>Returns the <a href="NMSettingIPTunnel.html#NMSettingIPTunnel--input-key"><span class="type">“input-key”</span></a> property of the setting.</p> <div class="refsect3"> <a name="nm-setting-ip-tunnel-get-input-key.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -556,7 +466,7 @@ nm_setting_ip_tunnel_get_input_key (<em class="parameter"><code><a class="link" <a name="nm-setting-ip-tunnel-get-output-key"></a><h3>nm_setting_ip_tunnel_get_output_key ()</h3> <pre class="programlisting">const <span class="returnvalue">char</span> * nm_setting_ip_tunnel_get_output_key (<em class="parameter"><code><a class="link" href="NMSettingIPTunnel.html" title="NMSettingIPTunnel"><span class="type">NMSettingIPTunnel</span></a> *setting</code></em>);</pre> -<p>Returns the <a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--output-key" title="The “output-key” property"><span class="type">“output-key”</span></a> property of the setting.</p> +<p>Returns the <a href="NMSettingIPTunnel.html#NMSettingIPTunnel--output-key"><span class="type">“output-key”</span></a> property of the setting.</p> <div class="refsect3"> <a name="nm-setting-ip-tunnel-get-output-key.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -584,7 +494,7 @@ nm_setting_ip_tunnel_get_output_key (<em class="parameter"><code><a class="link" <pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a> nm_setting_ip_tunnel_get_encapsulation_limit (<em class="parameter"><code><a class="link" href="NMSettingIPTunnel.html" title="NMSettingIPTunnel"><span class="type">NMSettingIPTunnel</span></a> *setting</code></em>);</pre> -<p>Returns the <a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--encapsulation-limit" title="The “encapsulation-limit” property"><span class="type">“encapsulation-limit”</span></a> property of the setting.</p> +<p>Returns the <a href="NMSettingIPTunnel.html#NMSettingIPTunnel--encapsulation-limit"><span class="type">“encapsulation-limit”</span></a> property of the setting.</p> <div class="refsect3"> <a name="nm-setting-ip-tunnel-get-encapsulation-limit.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -611,7 +521,7 @@ nm_setting_ip_tunnel_get_encapsulation_limit <a name="nm-setting-ip-tunnel-get-flow-label"></a><h3>nm_setting_ip_tunnel_get_flow_label ()</h3> <pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a> nm_setting_ip_tunnel_get_flow_label (<em class="parameter"><code><a class="link" href="NMSettingIPTunnel.html" title="NMSettingIPTunnel"><span class="type">NMSettingIPTunnel</span></a> *setting</code></em>);</pre> -<p>Returns the <a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--flow-label" title="The “flow-label” property"><span class="type">“flow-label”</span></a> property of the setting.</p> +<p>Returns the <a href="NMSettingIPTunnel.html#NMSettingIPTunnel--flow-label"><span class="type">“flow-label”</span></a> property of the setting.</p> <div class="refsect3"> <a name="nm-setting-ip-tunnel-get-flow-label.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -638,7 +548,7 @@ nm_setting_ip_tunnel_get_flow_label (<em class="parameter"><code><a class="link" <a name="nm-setting-ip-tunnel-get-mtu"></a><h3>nm_setting_ip_tunnel_get_mtu ()</h3> <pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a> nm_setting_ip_tunnel_get_mtu (<em class="parameter"><code><a class="link" href="NMSettingIPTunnel.html" title="NMSettingIPTunnel"><span class="type">NMSettingIPTunnel</span></a> *setting</code></em>);</pre> -<p>Returns the <a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--mtu" title="The “mtu” property"><span class="type">“mtu”</span></a> property of the setting.</p> +<p>Returns the <a href="NMSettingIPTunnel.html#NMSettingIPTunnel--mtu"><span class="type">“mtu”</span></a> property of the setting.</p> <div class="refsect3"> <a name="nm-setting-ip-tunnel-get-mtu.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -754,12 +664,6 @@ nm_setting_ip_tunnel_get_flags (<em class="parameter"><code><a class="link" href </div> <hr> <div class="refsect2"> -<a name="NMSettingIPTunnel-struct"></a><h3>NMSettingIPTunnel</h3> -<pre class="programlisting">typedef struct _NMSettingIPTunnel NMSettingIPTunnel;</pre> -<p>IP Tunneling Settings</p> -</div> -<hr> -<div class="refsect2"> <a name="NMIPTunnelFlags"></a><h3>enum NMIPTunnelFlags</h3> <div class="refsect3"> <a name="NMIPTunnelFlags.members"></a><h4>Members</h4> @@ -810,158 +714,6 @@ nm_setting_ip_tunnel_get_flags (<em class="parameter"><code><a class="link" href </div> </div> </div> -<div class="refsect1"> -<a name="NMSettingIPTunnel.property-details"></a><h2>Property Details</h2> -<div class="refsect2"> -<a name="NMSettingIPTunnel--encapsulation-limit"></a><h3>The <code class="literal">“encapsulation-limit”</code> property</h3> -<pre class="programlisting"> “encapsulation-limit” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>How many additional levels of encapsulation are permitted to be prepended -to packets. This property applies only to IPv6 tunnels.</p> -<p>Owner: NMSettingIPTunnel</p> -<p>Flags: Read / Write</p> -<p>Allowed values: <= 255</p> -<p>Default value: 0</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIPTunnel--flags"></a><h3>The <code class="literal">“flags”</code> property</h3> -<pre class="programlisting"> “flags” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>Tunnel flags. Currently, the following values are supported: -<a class="link" href="NMSettingIPTunnel.html#NM-IP-TUNNEL-FLAG-IP6-IGN-ENCAP-LIMIT:CAPS"><code class="literal">NM_IP_TUNNEL_FLAG_IP6_IGN_ENCAP_LIMIT</code></a>, <a class="link" href="NMSettingIPTunnel.html#NM-IP-TUNNEL-FLAG-IP6-USE-ORIG-TCLASS:CAPS"><code class="literal">NM_IP_TUNNEL_FLAG_IP6_USE_ORIG_TCLASS</code></a>, -<a class="link" href="NMSettingIPTunnel.html#NM-IP-TUNNEL-FLAG-IP6-USE-ORIG-FLOWLABEL:CAPS"><code class="literal">NM_IP_TUNNEL_FLAG_IP6_USE_ORIG_FLOWLABEL</code></a>, <a class="link" href="NMSettingIPTunnel.html#NM-IP-TUNNEL-FLAG-IP6-MIP6-DEV:CAPS"><code class="literal">NM_IP_TUNNEL_FLAG_IP6_MIP6_DEV</code></a>, -<a class="link" href="NMSettingIPTunnel.html#NM-IP-TUNNEL-FLAG-IP6-RCV-DSCP-COPY:CAPS"><code class="literal">NM_IP_TUNNEL_FLAG_IP6_RCV_DSCP_COPY</code></a>, <a class="link" href="NMSettingIPTunnel.html#NM-IP-TUNNEL-FLAG-IP6-USE-ORIG-FWMARK:CAPS"><code class="literal">NM_IP_TUNNEL_FLAG_IP6_USE_ORIG_FWMARK</code></a>. -They are valid only for IPv6 tunnels.</p> -<p>Owner: NMSettingIPTunnel</p> -<p>Flags: Read / Write</p> -<p>Default value: 0</p> -<p class="since">Since: 1.12</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIPTunnel--flow-label"></a><h3>The <code class="literal">“flow-label”</code> property</h3> -<pre class="programlisting"> “flow-label” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>The flow label to assign to tunnel packets. This property applies only to -IPv6 tunnels.</p> -<p>Owner: NMSettingIPTunnel</p> -<p>Flags: Read / Write</p> -<p>Allowed values: <= 1048575</p> -<p>Default value: 0</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIPTunnel--input-key"></a><h3>The <code class="literal">“input-key”</code> property</h3> -<pre class="programlisting"> “input-key” <span class="type">char</span> *</pre> -<p>The key used for tunnel input packets; the property is valid only for -certain tunnel modes (GRE, IP6GRE). If empty, no key is used.</p> -<p>Owner: NMSettingIPTunnel</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIPTunnel--local"></a><h3>The <code class="literal">“local”</code> property</h3> -<pre class="programlisting"> “local” <span class="type">char</span> *</pre> -<p>The local endpoint of the tunnel; the value can be empty, otherwise it -must contain an IPv4 or IPv6 address.</p> -<p>Owner: NMSettingIPTunnel</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIPTunnel--mode"></a><h3>The <code class="literal">“mode”</code> property</h3> -<pre class="programlisting"> “mode” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>The tunneling mode, for example <a class="link" href="libnm-nm-dbus-interface.html#NM-IP-TUNNEL-MODE-IPIP:CAPS"><code class="literal">NM_IP_TUNNEL_MODE_IPIP</code></a> or -<a class="link" href="libnm-nm-dbus-interface.html#NM-IP-TUNNEL-MODE-GRE:CAPS"><code class="literal">NM_IP_TUNNEL_MODE_GRE</code></a>.</p> -<p>Owner: NMSettingIPTunnel</p> -<p>Flags: Read / Write</p> -<p>Default value: 0</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIPTunnel--mtu"></a><h3>The <code class="literal">“mtu”</code> property</h3> -<pre class="programlisting"> “mtu” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>If non-zero, only transmit packets of the specified size or smaller, -breaking larger packets up into multiple fragments.</p> -<p>Owner: NMSettingIPTunnel</p> -<p>Flags: Read / Write</p> -<p>Default value: 0</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIPTunnel--output-key"></a><h3>The <code class="literal">“output-key”</code> property</h3> -<pre class="programlisting"> “output-key” <span class="type">char</span> *</pre> -<p>The key used for tunnel output packets; the property is valid only for -certain tunnel modes (GRE, IP6GRE). If empty, no key is used.</p> -<p>Owner: NMSettingIPTunnel</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIPTunnel--parent"></a><h3>The <code class="literal">“parent”</code> property</h3> -<pre class="programlisting"> “parent” <span class="type">char</span> *</pre> -<p>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.</p> -<p>Owner: NMSettingIPTunnel</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIPTunnel--path-mtu-discovery"></a><h3>The <code class="literal">“path-mtu-discovery”</code> property</h3> -<pre class="programlisting"> “path-mtu-discovery” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>Whether to enable Path MTU Discovery on this tunnel.</p> -<p>Owner: NMSettingIPTunnel</p> -<p>Flags: Read / Write</p> -<p>Default value: TRUE</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIPTunnel--remote"></a><h3>The <code class="literal">“remote”</code> property</h3> -<pre class="programlisting"> “remote” <span class="type">char</span> *</pre> -<p>The remote endpoint of the tunnel; the value must contain an IPv4 or IPv6 -address.</p> -<p>Owner: NMSettingIPTunnel</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIPTunnel--tos"></a><h3>The <code class="literal">“tos”</code> property</h3> -<pre class="programlisting"> “tos” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>The type of service (IPv4) or traffic class (IPv6) field to be set on -tunneled packets.</p> -<p>Owner: NMSettingIPTunnel</p> -<p>Flags: Read / Write</p> -<p>Allowed values: <= 255</p> -<p>Default value: 0</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingIPTunnel--ttl"></a><h3>The <code class="literal">“ttl”</code> property</h3> -<pre class="programlisting"> “ttl” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>The TTL to assign to tunneled packets. 0 is a special value meaning that -packets inherit the TTL value.</p> -<p>Owner: NMSettingIPTunnel</p> -<p>Flags: Read / Write</p> -<p>Allowed values: <= 255</p> -<p>Default value: 0</p> -<p class="since">Since: 1.2</p> -</div> -</div> </div> <div class="footer"> <hr>Generated by GTK-Doc V1.33.0</div> diff --git a/docs/libnm/html/NMSettingInfiniband.html b/docs/libnm/html/NMSettingInfiniband.html index 3df145c0..784f83db 100644 --- a/docs/libnm/html/NMSettingInfiniband.html +++ b/docs/libnm/html/NMSettingInfiniband.html @@ -15,9 +15,7 @@ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle"> <td width="100%" align="left" class="shortcuts"> <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> - <a href="#NMSettingInfiniband.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> - <a href="#NMSettingInfiniband.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties"> <span class="dim">|</span> - <a href="#NMSettingInfiniband.properties" class="shortcut">Properties</a></span> + <a href="#NMSettingInfiniband.description" class="shortcut">Description</a></span> </td> <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> <td><a accesskey="u" href="ch03.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> @@ -97,46 +95,6 @@ </table></div> </div> <div class="refsect1"> -<a name="NMSettingInfiniband.properties"></a><h2>Properties</h2> -<div class="informaltable"><table class="informaltable" border="0"> -<colgroup> -<col width="150px" class="properties_type"> -<col width="300px" class="properties_name"> -<col width="200px" class="properties_flags"> -</colgroup> -<tbody> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingInfiniband.html#NMSettingInfiniband--mac-address" title="The “mac-address” property">mac-address</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingInfiniband.html#NMSettingInfiniband--mtu" title="The “mtu” property">mtu</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><span class="type">int</span></td> -<td class="property_name"><a class="link" href="NMSettingInfiniband.html#NMSettingInfiniband--p-key" title="The “p-key” property">p-key</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingInfiniband.html#NMSettingInfiniband--parent" title="The “parent” property">parent</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingInfiniband.html#NMSettingInfiniband--transport-mode" title="The “transport-mode” property">transport-mode</a></td> -<td class="property_flags">Read / Write</td> -</tr> -</tbody> -</table></div> -</div> -<div class="refsect1"> <a name="NMSettingInfiniband.other"></a><h2>Types and Values</h2> <div class="informaltable"><table class="informaltable" width="100%" border="0"> <colgroup> @@ -168,21 +126,10 @@ <td class="define_keyword">#define</td> <td class="function_name"><a class="link" href="NMSettingInfiniband.html#NM-SETTING-INFINIBAND-PARENT:CAPS" title="NM_SETTING_INFINIBAND_PARENT">NM_SETTING_INFINIBAND_PARENT</a></td> </tr> -<tr> -<td class="datatype_keyword"> </td> -<td class="function_name"><a class="link" href="NMSettingInfiniband.html#NMSettingInfiniband-struct" title="NMSettingInfiniband">NMSettingInfiniband</a></td> -</tr> </tbody> </table></div> </div> <div class="refsect1"> -<a name="NMSettingInfiniband.object-hierarchy"></a><h2>Object Hierarchy</h2> -<pre class="screen"> <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a> - <span class="lineart">╰──</span> <a class="link" href="NMSetting.html" title="NMSetting">NMSetting</a> - <span class="lineart">╰──</span> NMSettingInfiniband -</pre> -</div> -<div class="refsect1"> <a name="NMSettingInfiniband.description"></a><h2>Description</h2> <p>The <a class="link" href="NMSettingInfiniband.html" title="NMSettingInfiniband"><span class="type">NMSettingInfiniband</span></a> object is a <a class="link" href="NMSetting.html" title="NMSetting"><span class="type">NMSetting</span></a> subclass that describes properties necessary for connection to IP-over-InfiniBand networks.</p> @@ -222,7 +169,7 @@ nm_setting_infiniband_get_mac_address (<em class="parameter"><code><a class="lin </div> <div class="refsect3"> <a name="nm-setting-infiniband-get-mac-address.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingInfiniband.html#NMSettingInfiniband--mac-address" title="The “mac-address” property"><span class="type">“mac-address”</span></a> property of the setting</p> +<p> the <a href="NMSettingInfiniband.html#NMSettingInfiniband--mac-address"><span class="type">“mac-address”</span></a> property of the setting</p> </div> </div> <hr> @@ -247,7 +194,7 @@ nm_setting_infiniband_get_mtu (<em class="parameter"><code><a class="link" href= </div> <div class="refsect3"> <a name="nm-setting-infiniband-get-mtu.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingInfiniband.html#NMSettingInfiniband--mtu" title="The “mtu” property"><span class="type">“mtu”</span></a> property of the setting</p> +<p> the <a href="NMSettingInfiniband.html#NMSettingInfiniband--mtu"><span class="type">“mtu”</span></a> property of the setting</p> </div> </div> <hr> @@ -338,8 +285,8 @@ nm_setting_infiniband_get_parent (<em class="parameter"><code><a class="link" hr <pre class="programlisting">const <span class="returnvalue">char</span> * nm_setting_infiniband_get_virtual_interface_name (<em class="parameter"><code><a class="link" href="NMSettingInfiniband.html" title="NMSettingInfiniband"><span class="type">NMSettingInfiniband</span></a> *setting</code></em>);</pre> -<p>Returns the interface name created by combining <a class="link" href="NMSettingInfiniband.html#NMSettingInfiniband--parent" title="The “parent” property"><span class="type">“parent”</span></a> -and <a class="link" href="NMSettingInfiniband.html#NMSettingInfiniband--p-key" title="The “p-key” property"><span class="type">“p-key”</span></a>. (If either property is unset, this will +<p>Returns the interface name created by combining <a href="NMSettingInfiniband.html#NMSettingInfiniband--parent"><span class="type">“parent”</span></a> +and <a href="NMSettingInfiniband.html#NMSettingInfiniband--p-key"><span class="type">“p-key”</span></a>. (If either property is unset, this will return <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.)</p> <div class="refsect3"> <a name="nm-setting-infiniband-get-virtual-interface-name.parameters"></a><h4>Parameters</h4> @@ -399,70 +346,6 @@ return <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.h <pre class="programlisting">#define NM_SETTING_INFINIBAND_PARENT "parent" </pre> </div> -<hr> -<div class="refsect2"> -<a name="NMSettingInfiniband-struct"></a><h3>NMSettingInfiniband</h3> -<pre class="programlisting">typedef struct _NMSettingInfiniband NMSettingInfiniband;</pre> -<p>Infiniband Settings</p> -</div> -</div> -<div class="refsect1"> -<a name="NMSettingInfiniband.property-details"></a><h2>Property Details</h2> -<div class="refsect2"> -<a name="NMSettingInfiniband--mac-address"></a><h3>The <code class="literal">“mac-address”</code> property</h3> -<pre class="programlisting"> “mac-address” <span class="type">char</span> *</pre> -<p>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).</p> -<p>Owner: NMSettingInfiniband</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingInfiniband--mtu"></a><h3>The <code class="literal">“mtu”</code> property</h3> -<pre class="programlisting"> “mtu” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>If non-zero, only transmit packets of the specified size or smaller, -breaking larger packets up into multiple frames.</p> -<p>Owner: NMSettingInfiniband</p> -<p>Flags: Read / Write</p> -<p>Default value: 0</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingInfiniband--p-key"></a><h3>The <code class="literal">“p-key”</code> property</h3> -<pre class="programlisting"> “p-key” <span class="type">int</span></pre> -<p>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.</p> -<p>Owner: NMSettingInfiniband</p> -<p>Flags: Read / Write</p> -<p>Allowed values: [-1,65535]</p> -<p>Default value: -1</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingInfiniband--parent"></a><h3>The <code class="literal">“parent”</code> property</h3> -<pre class="programlisting"> “parent” <span class="type">char</span> *</pre> -<p>The interface name of the parent device of this device. Normally <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, -but if the <a class="link" href="NMSettingInfiniband.html#NMSettingInfiniband--p-key" title="The “p-key” property"><span class="type">“p_key”</span></a> property is set, then you must -specify the base device by setting either this property or -<a class="link" href="NMSettingInfiniband.html#NMSettingInfiniband--mac-address" title="The “mac-address” property"><span class="type">“mac-address”</span></a>.</p> -<p>Owner: NMSettingInfiniband</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingInfiniband--transport-mode"></a><h3>The <code class="literal">“transport-mode”</code> property</h3> -<pre class="programlisting"> “transport-mode” <span class="type">char</span> *</pre> -<p>The IP-over-InfiniBand transport mode. Either "datagram" or -"connected".</p> -<p>Owner: NMSettingInfiniband</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> </div> </div> <div class="footer"> diff --git a/docs/libnm/html/NMSettingMacsec.html b/docs/libnm/html/NMSettingMacsec.html index 00913960..6951968e 100644 --- a/docs/libnm/html/NMSettingMacsec.html +++ b/docs/libnm/html/NMSettingMacsec.html @@ -16,8 +16,7 @@ <td width="100%" align="left" class="shortcuts"> <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> <a href="#NMSettingMacsec.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> - <a href="#NMSettingMacsec.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties"> <span class="dim">|</span> - <a href="#NMSettingMacsec.properties" class="shortcut">Properties</a></span> + <a href="#NMSettingMacsec.object-hierarchy" class="shortcut">Object Hierarchy</a></span> </td> <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> <td><a accesskey="u" href="ch03.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> @@ -122,66 +121,6 @@ </table></div> </div> <div class="refsect1"> -<a name="NMSettingMacsec.properties"></a><h2>Properties</h2> -<div class="informaltable"><table class="informaltable" border="0"> -<colgroup> -<col width="150px" class="properties_type"> -<col width="300px" class="properties_name"> -<col width="200px" class="properties_flags"> -</colgroup> -<tbody> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingMacsec.html#NMSettingMacsec--encrypt" title="The “encrypt” property">encrypt</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingMacsec.html#NMSettingMacsec--mka-cak" title="The “mka-cak” property">mka-cak</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a></td> -<td class="property_name"><a class="link" href="NMSettingMacsec.html#NMSettingMacsec--mka-cak-flags" title="The “mka-cak-flags” property">mka-cak-flags</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingMacsec.html#NMSettingMacsec--mka-ckn" title="The “mka-ckn” property">mka-ckn</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><span class="type">int</span></td> -<td class="property_name"><a class="link" href="NMSettingMacsec.html#NMSettingMacsec--mode" title="The “mode” property">mode</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingMacsec.html#NMSettingMacsec--parent" title="The “parent” property">parent</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><span class="type">int</span></td> -<td class="property_name"><a class="link" href="NMSettingMacsec.html#NMSettingMacsec--port" title="The “port” property">port</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingMacsec.html#NMSettingMacsec--send-sci" title="The “send-sci” property">send-sci</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><span class="type">int</span></td> -<td class="property_name"><a class="link" href="NMSettingMacsec.html#NMSettingMacsec--validation" title="The “validation” property">validation</a></td> -<td class="property_flags">Read / Write</td> -</tr> -</tbody> -</table></div> -</div> -<div class="refsect1"> <a name="NMSettingMacsec.other"></a><h2>Types and Values</h2> <div class="informaltable"><table class="informaltable" width="100%" border="0"> <colgroup> @@ -230,10 +169,6 @@ <td class="function_name"><a class="link" href="NMSettingMacsec.html#NM-SETTING-MACSEC-SEND-SCI:CAPS" title="NM_SETTING_MACSEC_SEND_SCI">NM_SETTING_MACSEC_SEND_SCI</a></td> </tr> <tr> -<td class="datatype_keyword"> </td> -<td class="function_name"><a class="link" href="NMSettingMacsec.html#NMSettingMacsec-struct" title="NMSettingMacsec">NMSettingMacsec</a></td> -</tr> -<tr> <td class="datatype_keyword">enum</td> <td class="function_name"><a class="link" href="NMSettingMacsec.html#NMSettingMacsecMode" title="enum NMSettingMacsecMode">NMSettingMacsecMode</a></td> </tr> @@ -257,9 +192,6 @@ <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html">GEnum</a> <span class="lineart">├──</span> NMSettingMacsecMode <span class="lineart">╰──</span> NMSettingMacsecValidation - <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a> - <span class="lineart">╰──</span> <a class="link" href="NMSetting.html" title="NMSetting">NMSetting</a> - <span class="lineart">╰──</span> NMSettingMacsec </pre> </div> <div class="refsect1"> @@ -303,7 +235,7 @@ nm_setting_macsec_get_parent (<em class="parameter"><code><a class="link" href=" </div> <div class="refsect3"> <a name="nm-setting-macsec-get-parent.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingMacsec.html#NMSettingMacsec--parent" title="The “parent” property"><span class="type">“parent”</span></a> property of the setting</p> +<p> the <a href="NMSettingMacsec.html#NMSettingMacsec--parent"><span class="type">“parent”</span></a> property of the setting</p> </div> <p class="since">Since: 1.6</p> </div> @@ -329,7 +261,7 @@ nm_setting_macsec_get_mode (<em class="parameter"><code><a class="link" href="NM </div> <div class="refsect3"> <a name="nm-setting-macsec-get-mode.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingMacsec.html#NMSettingMacsec--mode" title="The “mode” property"><span class="type">“mode”</span></a> property of the setting</p> +<p> the <a href="NMSettingMacsec.html#NMSettingMacsec--mode"><span class="type">“mode”</span></a> property of the setting</p> </div> <p class="since">Since: 1.6</p> </div> @@ -355,7 +287,7 @@ nm_setting_macsec_get_encrypt (<em class="parameter"><code><a class="link" href= </div> <div class="refsect3"> <a name="nm-setting-macsec-get-encrypt.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingMacsec.html#NMSettingMacsec--encrypt" title="The “encrypt” property"><span class="type">“encrypt”</span></a> property of the setting</p> +<p> the <a href="NMSettingMacsec.html#NMSettingMacsec--encrypt"><span class="type">“encrypt”</span></a> property of the setting</p> </div> <p class="since">Since: 1.6</p> </div> @@ -381,7 +313,7 @@ nm_setting_macsec_get_mka_cak (<em class="parameter"><code><a class="link" href= </div> <div class="refsect3"> <a name="nm-setting-macsec-get-mka-cak.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingMacsec.html#NMSettingMacsec--mka-cak" title="The “mka-cak” property"><span class="type">“mka-cak”</span></a> property of the setting</p> +<p> the <a href="NMSettingMacsec.html#NMSettingMacsec--mka-cak"><span class="type">“mka-cak”</span></a> property of the setting</p> </div> <p class="since">Since: 1.6</p> </div> @@ -407,7 +339,7 @@ nm_setting_macsec_get_mka_cak_flags (<em class="parameter"><code><a class="link" </div> <div class="refsect3"> <a name="nm-setting-macsec-get-mka-cak-flags.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a> pertaining to the <a class="link" href="NMSettingMacsec.html#NMSettingMacsec--mka-cak" title="The “mka-cak” property"><span class="type">“mka-cak”</span></a></p> +<p> the <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a> pertaining to the <a href="NMSettingMacsec.html#NMSettingMacsec--mka-cak"><span class="type">“mka-cak”</span></a></p> </div> <p class="since">Since: 1.6</p> </div> @@ -433,7 +365,7 @@ nm_setting_macsec_get_mka_ckn (<em class="parameter"><code><a class="link" href= </div> <div class="refsect3"> <a name="nm-setting-macsec-get-mka-ckn.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingMacsec.html#NMSettingMacsec--mka-ckn" title="The “mka-ckn” property"><span class="type">“mka-ckn”</span></a> property of the setting</p> +<p> the <a href="NMSettingMacsec.html#NMSettingMacsec--mka-ckn"><span class="type">“mka-ckn”</span></a> property of the setting</p> </div> <p class="since">Since: 1.6</p> </div> @@ -459,7 +391,7 @@ nm_setting_macsec_get_port (<em class="parameter"><code><a class="link" href="NM </div> <div class="refsect3"> <a name="nm-setting-macsec-get-port.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingMacsec.html#NMSettingMacsec--port" title="The “port” property"><span class="type">“port”</span></a> property of the setting</p> +<p> the <a href="NMSettingMacsec.html#NMSettingMacsec--port"><span class="type">“port”</span></a> property of the setting</p> </div> <p class="since">Since: 1.6</p> </div> @@ -485,7 +417,7 @@ nm_setting_macsec_get_validation (<em class="parameter"><code><a class="link" hr </div> <div class="refsect3"> <a name="nm-setting-macsec-get-validation.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingMacsec.html#NMSettingMacsec--validation" title="The “validation” property"><span class="type">“validation”</span></a> property of the setting</p> +<p> the <a href="NMSettingMacsec.html#NMSettingMacsec--validation"><span class="type">“validation”</span></a> property of the setting</p> </div> <p class="since">Since: 1.6</p> </div> @@ -511,7 +443,7 @@ nm_setting_macsec_get_send_sci (<em class="parameter"><code><a class="link" href </div> <div class="refsect3"> <a name="nm-setting-macsec-get-send-sci.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingMacsec.html#NMSettingMacsec--send-sci" title="The “send-sci” property"><span class="type">“send-sci”</span></a> property of the setting</p> +<p> the <a href="NMSettingMacsec.html#NMSettingMacsec--send-sci"><span class="type">“send-sci”</span></a> property of the setting</p> </div> <p class="since">Since: 1.12</p> </div> @@ -579,12 +511,6 @@ nm_setting_macsec_get_send_sci (<em class="parameter"><code><a class="link" href </div> <hr> <div class="refsect2"> -<a name="NMSettingMacsec-struct"></a><h3>NMSettingMacsec</h3> -<pre class="programlisting">typedef struct _NMSettingMacsec NMSettingMacsec;</pre> -<p>MACSec Settings</p> -</div> -<hr> -<div class="refsect2"> <a name="NMSettingMacsecMode"></a><h3>enum NMSettingMacsecMode</h3> <p><a class="link" href="NMSettingMacsec.html#NMSettingMacsecMode" title="enum NMSettingMacsecMode"><span class="type">NMSettingMacsecMode</span></a> controls how the CAK (Connectivity Association Key) used in MKA (MACsec Key Agreement) is obtained.</p> @@ -671,106 +597,6 @@ verify frames are dropped</p> </pre> </div> </div> -<div class="refsect1"> -<a name="NMSettingMacsec.property-details"></a><h2>Property Details</h2> -<div class="refsect2"> -<a name="NMSettingMacsec--encrypt"></a><h3>The <code class="literal">“encrypt”</code> property</h3> -<pre class="programlisting"> “encrypt” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>Whether the transmitted traffic must be encrypted.</p> -<p>Owner: NMSettingMacsec</p> -<p>Flags: Read / Write</p> -<p>Default value: TRUE</p> -<p class="since">Since: 1.6</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingMacsec--mka-cak"></a><h3>The <code class="literal">“mka-cak”</code> property</h3> -<pre class="programlisting"> “mka-cak” <span class="type">char</span> *</pre> -<p>The pre-shared CAK (Connectivity Association Key) for MACsec -Key Agreement.</p> -<p>Owner: NMSettingMacsec</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.6</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingMacsec--mka-cak-flags"></a><h3>The <code class="literal">“mka-cak-flags”</code> property</h3> -<pre class="programlisting"> “mka-cak-flags” <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a></pre> -<p>Flags indicating how to handle the <a class="link" href="NMSettingMacsec.html#NMSettingMacsec--mka-cak" title="The “mka-cak” property"><span class="type">“mka-cak”</span></a> -property.</p> -<p>Owner: NMSettingMacsec</p> -<p>Flags: Read / Write</p> -<p class="since">Since: 1.6</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingMacsec--mka-ckn"></a><h3>The <code class="literal">“mka-ckn”</code> property</h3> -<pre class="programlisting"> “mka-ckn” <span class="type">char</span> *</pre> -<p>The pre-shared CKN (Connectivity-association Key Name) for -MACsec Key Agreement.</p> -<p>Owner: NMSettingMacsec</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.6</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingMacsec--mode"></a><h3>The <code class="literal">“mode”</code> property</h3> -<pre class="programlisting"> “mode” <span class="type">int</span></pre> -<p>Specifies how the CAK (Connectivity Association Key) for MKA (MACsec Key -Agreement) is obtained.</p> -<p>Owner: NMSettingMacsec</p> -<p>Flags: Read / Write</p> -<p>Default value: 0</p> -<p class="since">Since: 1.6</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingMacsec--parent"></a><h3>The <code class="literal">“parent”</code> property</h3> -<pre class="programlisting"> “parent” <span class="type">char</span> *</pre> -<p>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 <a class="link" href="NMSettingWired.html" title="NMSettingWired"><span class="type">NMSettingWired</span></a> setting -with a <a class="link" href="NMSettingWired.html#NMSettingWired--mac-address" title="The “mac-address” property"><span class="type">“mac-address”</span></a> property.</p> -<p>Owner: NMSettingMacsec</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.6</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingMacsec--port"></a><h3>The <code class="literal">“port”</code> property</h3> -<pre class="programlisting"> “port” <span class="type">int</span></pre> -<p>The port component of the SCI (Secure Channel Identifier), between 1 and 65534.</p> -<p>Owner: NMSettingMacsec</p> -<p>Flags: Read / Write</p> -<p>Allowed values: [1,65534]</p> -<p>Default value: 1</p> -<p class="since">Since: 1.6</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingMacsec--send-sci"></a><h3>The <code class="literal">“send-sci”</code> property</h3> -<pre class="programlisting"> “send-sci” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>Specifies whether the SCI (Secure Channel Identifier) is included -in every packet.</p> -<p>Owner: NMSettingMacsec</p> -<p>Flags: Read / Write</p> -<p>Default value: TRUE</p> -<p class="since">Since: 1.12</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingMacsec--validation"></a><h3>The <code class="literal">“validation”</code> property</h3> -<pre class="programlisting"> “validation” <span class="type">int</span></pre> -<p>Specifies the validation mode for incoming frames.</p> -<p>Owner: NMSettingMacsec</p> -<p>Flags: Read / Write</p> -<p>Default value: 2</p> -<p class="since">Since: 1.6</p> -</div> -</div> </div> <div class="footer"> <hr>Generated by GTK-Doc V1.33.0</div> diff --git a/docs/libnm/html/NMSettingMacvlan.html b/docs/libnm/html/NMSettingMacvlan.html index 9821d089..e989162a 100644 --- a/docs/libnm/html/NMSettingMacvlan.html +++ b/docs/libnm/html/NMSettingMacvlan.html @@ -16,8 +16,7 @@ <td width="100%" align="left" class="shortcuts"> <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> <a href="#NMSettingMacvlan.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> - <a href="#NMSettingMacvlan.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties"> <span class="dim">|</span> - <a href="#NMSettingMacvlan.properties" class="shortcut">Properties</a></span> + <a href="#NMSettingMacvlan.object-hierarchy" class="shortcut">Object Hierarchy</a></span> </td> <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> <td><a accesskey="u" href="ch03.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> @@ -84,39 +83,6 @@ </table></div> </div> <div class="refsect1"> -<a name="NMSettingMacvlan.properties"></a><h2>Properties</h2> -<div class="informaltable"><table class="informaltable" border="0"> -<colgroup> -<col width="150px" class="properties_type"> -<col width="300px" class="properties_name"> -<col width="200px" class="properties_flags"> -</colgroup> -<tbody> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingMacvlan.html#NMSettingMacvlan--mode" title="The “mode” property">mode</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingMacvlan.html#NMSettingMacvlan--parent" title="The “parent” property">parent</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingMacvlan.html#NMSettingMacvlan--promiscuous" title="The “promiscuous” property">promiscuous</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingMacvlan.html#NMSettingMacvlan--tap" title="The “tap” property">tap</a></td> -<td class="property_flags">Read / Write</td> -</tr> -</tbody> -</table></div> -</div> -<div class="refsect1"> <a name="NMSettingMacvlan.other"></a><h2>Types and Values</h2> <div class="informaltable"><table class="informaltable" width="100%" border="0"> <colgroup> @@ -145,10 +111,6 @@ <td class="function_name"><a class="link" href="NMSettingMacvlan.html#NM-SETTING-MACVLAN-TAP:CAPS" title="NM_SETTING_MACVLAN_TAP">NM_SETTING_MACVLAN_TAP</a></td> </tr> <tr> -<td class="datatype_keyword"> </td> -<td class="function_name"><a class="link" href="NMSettingMacvlan.html#NMSettingMacvlan-struct" title="NMSettingMacvlan">NMSettingMacvlan</a></td> -</tr> -<tr> <td class="datatype_keyword">enum</td> <td class="function_name"><a class="link" href="NMSettingMacvlan.html#NMSettingMacvlanMode" title="enum NMSettingMacvlanMode">NMSettingMacvlanMode</a></td> </tr> @@ -159,9 +121,6 @@ <a name="NMSettingMacvlan.object-hierarchy"></a><h2>Object Hierarchy</h2> <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html">GEnum</a> <span class="lineart">╰──</span> NMSettingMacvlanMode - <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a> - <span class="lineart">╰──</span> <a class="link" href="NMSetting.html" title="NMSetting">NMSetting</a> - <span class="lineart">╰──</span> NMSettingMacvlan </pre> </div> <div class="refsect1"> @@ -205,7 +164,7 @@ nm_setting_macvlan_get_parent (<em class="parameter"><code><a class="link" href= </div> <div class="refsect3"> <a name="nm-setting-macvlan-get-parent.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingMacvlan.html#NMSettingMacvlan--parent" title="The “parent” property"><span class="type">“parent”</span></a> property of the setting</p> +<p> the <a href="NMSettingMacvlan.html#NMSettingMacvlan--parent"><span class="type">“parent”</span></a> property of the setting</p> </div> <p class="since">Since: 1.2</p> </div> @@ -231,7 +190,7 @@ nm_setting_macvlan_get_mode (<em class="parameter"><code><a class="link" href="N </div> <div class="refsect3"> <a name="nm-setting-macvlan-get-mode.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingMacvlan.html#NMSettingMacvlan--mode" title="The “mode” property"><span class="type">“mode”</span></a> property of the setting</p> +<p> the <a href="NMSettingMacvlan.html#NMSettingMacvlan--mode"><span class="type">“mode”</span></a> property of the setting</p> </div> <p class="since">Since: 1.2</p> </div> @@ -257,7 +216,7 @@ nm_setting_macvlan_get_promiscuous (<em class="parameter"><code><a class="link" </div> <div class="refsect3"> <a name="nm-setting-macvlan-get-promiscuous.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingMacvlan.html#NMSettingMacvlan--promiscuous" title="The “promiscuous” property"><span class="type">“promiscuous”</span></a> property of the setting</p> +<p> the <a href="NMSettingMacvlan.html#NMSettingMacvlan--promiscuous"><span class="type">“promiscuous”</span></a> property of the setting</p> </div> <p class="since">Since: 1.2</p> </div> @@ -283,7 +242,7 @@ nm_setting_macvlan_get_tap (<em class="parameter"><code><a class="link" href="NM </div> <div class="refsect3"> <a name="nm-setting-macvlan-get-tap.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingMacvlan.html#NMSettingMacvlan--tap" title="The “tap” property"><span class="type">“tap”</span></a> property of the setting</p> +<p> the <a href="NMSettingMacvlan.html#NMSettingMacvlan--tap"><span class="type">“tap”</span></a> property of the setting</p> </div> <p class="since">Since: 1.2</p> </div> @@ -321,12 +280,6 @@ nm_setting_macvlan_get_tap (<em class="parameter"><code><a class="link" href="NM </div> <hr> <div class="refsect2"> -<a name="NMSettingMacvlan-struct"></a><h3>NMSettingMacvlan</h3> -<pre class="programlisting">typedef struct _NMSettingMacvlan NMSettingMacvlan;</pre> -<p>MAC VLAN Settings</p> -</div> -<hr> -<div class="refsect2"> <a name="NMSettingMacvlanMode"></a><h3>enum NMSettingMacvlanMode</h3> <div class="refsect3"> <a name="NMSettingMacvlanMode.members"></a><h4>Members</h4> @@ -394,52 +347,6 @@ nm_setting_macvlan_get_tap (<em class="parameter"><code><a class="link" href="NM </div> </div> </div> -<div class="refsect1"> -<a name="NMSettingMacvlan.property-details"></a><h2>Property Details</h2> -<div class="refsect2"> -<a name="NMSettingMacvlan--mode"></a><h3>The <code class="literal">“mode”</code> property</h3> -<pre class="programlisting"> “mode” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>The macvlan mode, which specifies the communication mechanism between multiple -macvlans on the same lower device.</p> -<p>Owner: NMSettingMacvlan</p> -<p>Flags: Read / Write</p> -<p>Default value: 0</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingMacvlan--parent"></a><h3>The <code class="literal">“parent”</code> property</h3> -<pre class="programlisting"> “parent” <span class="type">char</span> *</pre> -<p>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 <a class="link" href="NMSettingWired.html" title="NMSettingWired"><span class="type">NMSettingWired</span></a> setting -with a <a class="link" href="NMSettingWired.html#NMSettingWired--mac-address" title="The “mac-address” property"><span class="type">“mac-address”</span></a> property.</p> -<p>Owner: NMSettingMacvlan</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingMacvlan--promiscuous"></a><h3>The <code class="literal">“promiscuous”</code> property</h3> -<pre class="programlisting"> “promiscuous” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>Whether the interface should be put in promiscuous mode.</p> -<p>Owner: NMSettingMacvlan</p> -<p>Flags: Read / Write</p> -<p>Default value: TRUE</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingMacvlan--tap"></a><h3>The <code class="literal">“tap”</code> property</h3> -<pre class="programlisting"> “tap” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>Whether the interface should be a MACVTAP.</p> -<p>Owner: NMSettingMacvlan</p> -<p>Flags: Read / Write</p> -<p>Default value: FALSE</p> -<p class="since">Since: 1.2</p> -</div> -</div> </div> <div class="footer"> <hr>Generated by GTK-Doc V1.33.0</div> diff --git a/docs/libnm/html/NMSettingMatch.html b/docs/libnm/html/NMSettingMatch.html index f47dd2cf..8a6e33a2 100644 --- a/docs/libnm/html/NMSettingMatch.html +++ b/docs/libnm/html/NMSettingMatch.html @@ -314,10 +314,14 @@ nm_setting_match_new (<em class="parameter"><code><span class="type">void</span> <p>Creates a new <a class="link" href="NMSettingMatch.html" title="NMSettingMatch"><span class="type">NMSettingMatch</span></a> object with default values.</p> <div class="refsect3"> <a name="nm-setting-match-new.returns"></a><h4>Returns</h4> -<p>the new empty <a class="link" href="NMSettingMatch.html" title="NMSettingMatch"><span class="type">NMSettingMatch</span></a> object. </p> +<p>the new empty <a class="link" href="NMSettingMatch.html" title="NMSettingMatch"><span class="type">NMSettingMatch</span></a> object</p> +<p>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. </p> <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p> </div> -<p class="since">Since: 1.14</p> +<p class="since">Since: 1.32</p> </div> <hr> <div class="refsect2"> diff --git a/docs/libnm/html/NMSettingOlpcMesh.html b/docs/libnm/html/NMSettingOlpcMesh.html index 4e383fca..42365d0f 100644 --- a/docs/libnm/html/NMSettingOlpcMesh.html +++ b/docs/libnm/html/NMSettingOlpcMesh.html @@ -15,9 +15,7 @@ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle"> <td width="100%" align="left" class="shortcuts"> <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> - <a href="#NMSettingOlpcMesh.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> - <a href="#NMSettingOlpcMesh.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties"> <span class="dim">|</span> - <a href="#NMSettingOlpcMesh.properties" class="shortcut">Properties</a></span> + <a href="#NMSettingOlpcMesh.description" class="shortcut">Description</a></span> </td> <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> <td><a accesskey="u" href="ch03.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> @@ -76,35 +74,6 @@ </table></div> </div> <div class="refsect1"> -<a name="NMSettingOlpcMesh.properties"></a><h2>Properties</h2> -<div class="informaltable"><table class="informaltable" border="0"> -<colgroup> -<col width="150px" class="properties_type"> -<col width="300px" class="properties_name"> -<col width="200px" class="properties_flags"> -</colgroup> -<tbody> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingOlpcMesh.html#NMSettingOlpcMesh--channel" title="The “channel” property">channel</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingOlpcMesh.html#NMSettingOlpcMesh--dhcp-anycast-address" title="The “dhcp-anycast-address” property">dhcp-anycast-address</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<a href="https://developer.gnome.org/glib/unstable/glib-Byte-Arrays.html#GBytes"><span class="type">GBytes</span></a> *</td> -<td class="property_name"><a class="link" href="NMSettingOlpcMesh.html#NMSettingOlpcMesh--ssid" title="The “ssid” property">ssid</a></td> -<td class="property_flags">Read / Write</td> -</tr> -</tbody> -</table></div> -</div> -<div class="refsect1"> <a name="NMSettingOlpcMesh.other"></a><h2>Types and Values</h2> <div class="informaltable"><table class="informaltable" width="100%" border="0"> <colgroup> @@ -128,21 +97,10 @@ <td class="define_keyword">#define</td> <td class="function_name"><a class="link" href="NMSettingOlpcMesh.html#NM-SETTING-OLPC-MESH-DHCP-ANYCAST-ADDRESS:CAPS" title="NM_SETTING_OLPC_MESH_DHCP_ANYCAST_ADDRESS">NM_SETTING_OLPC_MESH_DHCP_ANYCAST_ADDRESS</a></td> </tr> -<tr> -<td class="datatype_keyword"> </td> -<td class="function_name"><a class="link" href="NMSettingOlpcMesh.html#NMSettingOlpcMesh-struct" title="NMSettingOlpcMesh">NMSettingOlpcMesh</a></td> -</tr> </tbody> </table></div> </div> <div class="refsect1"> -<a name="NMSettingOlpcMesh.object-hierarchy"></a><h2>Object Hierarchy</h2> -<pre class="screen"> <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a> - <span class="lineart">╰──</span> <a class="link" href="NMSetting.html" title="NMSetting">NMSetting</a> - <span class="lineart">╰──</span> NMSettingOlpcMesh -</pre> -</div> -<div class="refsect1"> <a name="NMSettingOlpcMesh.description"></a><h2>Description</h2> <p>The <a class="link" href="NMSettingOlpcMesh.html" title="NMSettingOlpcMesh"><span class="type">NMSettingOlpcMesh</span></a> object is a <a class="link" href="NMSetting.html" title="NMSetting"><span class="type">NMSetting</span></a> subclass that describes properties necessary for connection to OLPC-Mesh devices.</p> @@ -224,42 +182,6 @@ nm_setting_olpc_mesh_get_dhcp_anycast_address <pre class="programlisting">#define NM_SETTING_OLPC_MESH_DHCP_ANYCAST_ADDRESS "dhcp-anycast-address" </pre> </div> -<hr> -<div class="refsect2"> -<a name="NMSettingOlpcMesh-struct"></a><h3>NMSettingOlpcMesh</h3> -<pre class="programlisting">typedef struct _NMSettingOlpcMesh NMSettingOlpcMesh;</pre> -<p>OLPC Wireless Mesh Settings</p> -</div> -</div> -<div class="refsect1"> -<a name="NMSettingOlpcMesh.property-details"></a><h2>Property Details</h2> -<div class="refsect2"> -<a name="NMSettingOlpcMesh--channel"></a><h3>The <code class="literal">“channel”</code> property</h3> -<pre class="programlisting"> “channel” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>Channel on which the mesh network to join is located.</p> -<p>Owner: NMSettingOlpcMesh</p> -<p>Flags: Read / Write</p> -<p>Default value: 0</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingOlpcMesh--dhcp-anycast-address"></a><h3>The <code class="literal">“dhcp-anycast-address”</code> property</h3> -<pre class="programlisting"> “dhcp-anycast-address” <span class="type">char</span> *</pre> -<p>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.</p> -<p>Owner: NMSettingOlpcMesh</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingOlpcMesh--ssid"></a><h3>The <code class="literal">“ssid”</code> property</h3> -<pre class="programlisting"> “ssid” <a href="https://developer.gnome.org/glib/unstable/glib-Byte-Arrays.html#GBytes"><span class="type">GBytes</span></a> *</pre> -<p>SSID of the mesh network to join.</p> -<p>Owner: NMSettingOlpcMesh</p> -<p>Flags: Read / Write</p> -</div> </div> </div> <div class="footer"> diff --git a/docs/libnm/html/NMSettingPpp.html b/docs/libnm/html/NMSettingPpp.html index 614a4c76..5ee6a24a 100644 --- a/docs/libnm/html/NMSettingPpp.html +++ b/docs/libnm/html/NMSettingPpp.html @@ -15,9 +15,7 @@ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle"> <td width="100%" align="left" class="shortcuts"> <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> - <a href="#NMSettingPpp.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> - <a href="#NMSettingPpp.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties"> <span class="dim">|</span> - <a href="#NMSettingPpp.properties" class="shortcut">Properties</a></span> + <a href="#NMSettingPpp.description" class="shortcut">Description</a></span> </td> <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> <td><a accesskey="u" href="ch03.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> @@ -198,108 +196,6 @@ that require PPP to deliver IP capability</p> </table></div> </div> <div class="refsect1"> -<a name="NMSettingPpp.properties"></a><h2>Properties</h2> -<div class="informaltable"><table class="informaltable" border="0"> -<colgroup> -<col width="150px" class="properties_type"> -<col width="300px" class="properties_name"> -<col width="200px" class="properties_flags"> -</colgroup> -<tbody> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingPpp.html#NMSettingPpp--baud" title="The “baud” property">baud</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingPpp.html#NMSettingPpp--crtscts" title="The “crtscts” property">crtscts</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingPpp.html#NMSettingPpp--lcp-echo-failure" title="The “lcp-echo-failure” property">lcp-echo-failure</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingPpp.html#NMSettingPpp--lcp-echo-interval" title="The “lcp-echo-interval” property">lcp-echo-interval</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingPpp.html#NMSettingPpp--mppe-stateful" title="The “mppe-stateful” property">mppe-stateful</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingPpp.html#NMSettingPpp--mru" title="The “mru” property">mru</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingPpp.html#NMSettingPpp--mtu" title="The “mtu” property">mtu</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingPpp.html#NMSettingPpp--no-vj-comp" title="The “no-vj-comp” property">no-vj-comp</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingPpp.html#NMSettingPpp--noauth" title="The “noauth” property">noauth</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingPpp.html#NMSettingPpp--nobsdcomp" title="The “nobsdcomp” property">nobsdcomp</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingPpp.html#NMSettingPpp--nodeflate" title="The “nodeflate” property">nodeflate</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingPpp.html#NMSettingPpp--refuse-chap" title="The “refuse-chap” property">refuse-chap</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingPpp.html#NMSettingPpp--refuse-eap" title="The “refuse-eap” property">refuse-eap</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingPpp.html#NMSettingPpp--refuse-mschap" title="The “refuse-mschap” property">refuse-mschap</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingPpp.html#NMSettingPpp--refuse-mschapv2" title="The “refuse-mschapv2” property">refuse-mschapv2</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingPpp.html#NMSettingPpp--refuse-pap" title="The “refuse-pap” property">refuse-pap</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingPpp.html#NMSettingPpp--require-mppe" title="The “require-mppe” property">require-mppe</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingPpp.html#NMSettingPpp--require-mppe-128" title="The “require-mppe-128” property">require-mppe-128</a></td> -<td class="property_flags">Read / Write</td> -</tr> -</tbody> -</table></div> -</div> -<div class="refsect1"> <a name="NMSettingPpp.other"></a><h2>Types and Values</h2> <div class="informaltable"><table class="informaltable" width="100%" border="0"> <colgroup> @@ -383,21 +279,10 @@ that require PPP to deliver IP capability</p> <td class="define_keyword">#define</td> <td class="function_name"><a class="link" href="NMSettingPpp.html#NM-SETTING-PPP-LCP-ECHO-INTERVAL:CAPS" title="NM_SETTING_PPP_LCP_ECHO_INTERVAL">NM_SETTING_PPP_LCP_ECHO_INTERVAL</a></td> </tr> -<tr> -<td class="datatype_keyword"> </td> -<td class="function_name"><a class="link" href="NMSettingPpp.html#NMSettingPpp-struct" title="NMSettingPpp">NMSettingPpp</a></td> -</tr> </tbody> </table></div> </div> <div class="refsect1"> -<a name="NMSettingPpp.object-hierarchy"></a><h2>Object Hierarchy</h2> -<pre class="screen"> <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a> - <span class="lineart">╰──</span> <a class="link" href="NMSetting.html" title="NMSetting">NMSetting</a> - <span class="lineart">╰──</span> NMSettingPpp -</pre> -</div> -<div class="refsect1"> <a name="NMSettingPpp.description"></a><h2>Description</h2> <p>The <a class="link" href="NMSettingPpp.html" title="NMSettingPpp"><span class="type">NMSettingPpp</span></a> object is a <a class="link" href="NMSetting.html" title="NMSetting"><span class="type">NMSetting</span></a> subclass that describes properties necessary for connection to networks that require PPP transport, like PPPoE @@ -438,7 +323,7 @@ nm_setting_ppp_get_noauth (<em class="parameter"><code><a class="link" href="NMS </div> <div class="refsect3"> <a name="nm-setting-ppp-get-noauth.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingPpp.html#NMSettingPpp--noauth" title="The “noauth” property"><span class="type">“noauth”</span></a> property of the setting</p> +<p> the <a href="NMSettingPpp.html#NMSettingPpp--noauth"><span class="type">“noauth”</span></a> property of the setting</p> </div> </div> <hr> @@ -463,7 +348,7 @@ nm_setting_ppp_get_refuse_eap (<em class="parameter"><code><a class="link" href= </div> <div class="refsect3"> <a name="nm-setting-ppp-get-refuse-eap.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingPpp.html#NMSettingPpp--refuse-eap" title="The “refuse-eap” property"><span class="type">“refuse-eap”</span></a> property of the setting</p> +<p> the <a href="NMSettingPpp.html#NMSettingPpp--refuse-eap"><span class="type">“refuse-eap”</span></a> property of the setting</p> </div> </div> <hr> @@ -488,7 +373,7 @@ nm_setting_ppp_get_refuse_pap (<em class="parameter"><code><a class="link" href= </div> <div class="refsect3"> <a name="nm-setting-ppp-get-refuse-pap.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingPpp.html#NMSettingPpp--refuse-pap" title="The “refuse-pap” property"><span class="type">“refuse-pap”</span></a> property of the setting</p> +<p> the <a href="NMSettingPpp.html#NMSettingPpp--refuse-pap"><span class="type">“refuse-pap”</span></a> property of the setting</p> </div> </div> <hr> @@ -513,7 +398,7 @@ nm_setting_ppp_get_refuse_chap (<em class="parameter"><code><a class="link" href </div> <div class="refsect3"> <a name="nm-setting-ppp-get-refuse-chap.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingPpp.html#NMSettingPpp--refuse-chap" title="The “refuse-chap” property"><span class="type">“refuse-chap”</span></a> property of the setting</p> +<p> the <a href="NMSettingPpp.html#NMSettingPpp--refuse-chap"><span class="type">“refuse-chap”</span></a> property of the setting</p> </div> </div> <hr> @@ -538,7 +423,7 @@ nm_setting_ppp_get_refuse_mschap (<em class="parameter"><code><a class="link" hr </div> <div class="refsect3"> <a name="nm-setting-ppp-get-refuse-mschap.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingPpp.html#NMSettingPpp--refuse-mschap" title="The “refuse-mschap” property"><span class="type">“refuse-mschap”</span></a> property of the setting</p> +<p> the <a href="NMSettingPpp.html#NMSettingPpp--refuse-mschap"><span class="type">“refuse-mschap”</span></a> property of the setting</p> </div> </div> <hr> @@ -563,7 +448,7 @@ nm_setting_ppp_get_refuse_mschapv2 (<em class="parameter"><code><a class="link" </div> <div class="refsect3"> <a name="nm-setting-ppp-get-refuse-mschapv2.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingPpp.html#NMSettingPpp--refuse-mschapv2" title="The “refuse-mschapv2” property"><span class="type">“refuse-mschapv2”</span></a> property of the setting</p> +<p> the <a href="NMSettingPpp.html#NMSettingPpp--refuse-mschapv2"><span class="type">“refuse-mschapv2”</span></a> property of the setting</p> </div> </div> <hr> @@ -588,7 +473,7 @@ nm_setting_ppp_get_nobsdcomp (<em class="parameter"><code><a class="link" href=" </div> <div class="refsect3"> <a name="nm-setting-ppp-get-nobsdcomp.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingPpp.html#NMSettingPpp--nobsdcomp" title="The “nobsdcomp” property"><span class="type">“nobsdcomp”</span></a> property of the setting</p> +<p> the <a href="NMSettingPpp.html#NMSettingPpp--nobsdcomp"><span class="type">“nobsdcomp”</span></a> property of the setting</p> </div> </div> <hr> @@ -613,7 +498,7 @@ nm_setting_ppp_get_nodeflate (<em class="parameter"><code><a class="link" href=" </div> <div class="refsect3"> <a name="nm-setting-ppp-get-nodeflate.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingPpp.html#NMSettingPpp--nodeflate" title="The “nodeflate” property"><span class="type">“nodeflate”</span></a> property of the setting</p> +<p> the <a href="NMSettingPpp.html#NMSettingPpp--nodeflate"><span class="type">“nodeflate”</span></a> property of the setting</p> </div> </div> <hr> @@ -638,7 +523,7 @@ nm_setting_ppp_get_no_vj_comp (<em class="parameter"><code><a class="link" href= </div> <div class="refsect3"> <a name="nm-setting-ppp-get-no-vj-comp.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingPpp.html#NMSettingPpp--no-vj-comp" title="The “no-vj-comp” property"><span class="type">“no-vj-comp”</span></a> property of the setting</p> +<p> the <a href="NMSettingPpp.html#NMSettingPpp--no-vj-comp"><span class="type">“no-vj-comp”</span></a> property of the setting</p> </div> </div> <hr> @@ -663,7 +548,7 @@ nm_setting_ppp_get_require_mppe (<em class="parameter"><code><a class="link" hre </div> <div class="refsect3"> <a name="nm-setting-ppp-get-require-mppe.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingPpp.html#NMSettingPpp--require-mppe" title="The “require-mppe” property"><span class="type">“require-mppe”</span></a> property of the setting</p> +<p> the <a href="NMSettingPpp.html#NMSettingPpp--require-mppe"><span class="type">“require-mppe”</span></a> property of the setting</p> </div> </div> <hr> @@ -688,7 +573,7 @@ nm_setting_ppp_get_require_mppe_128 (<em class="parameter"><code><a class="link" </div> <div class="refsect3"> <a name="nm-setting-ppp-get-require-mppe-128.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingPpp.html#NMSettingPpp--require-mppe-128" title="The “require-mppe-128” property"><span class="type">“require-mppe-128”</span></a> property of the setting</p> +<p> the <a href="NMSettingPpp.html#NMSettingPpp--require-mppe-128"><span class="type">“require-mppe-128”</span></a> property of the setting</p> </div> </div> <hr> @@ -713,7 +598,7 @@ nm_setting_ppp_get_mppe_stateful (<em class="parameter"><code><a class="link" hr </div> <div class="refsect3"> <a name="nm-setting-ppp-get-mppe-stateful.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingPpp.html#NMSettingPpp--mppe-stateful" title="The “mppe-stateful” property"><span class="type">“mppe-stateful”</span></a> property of the setting</p> +<p> the <a href="NMSettingPpp.html#NMSettingPpp--mppe-stateful"><span class="type">“mppe-stateful”</span></a> property of the setting</p> </div> </div> <hr> @@ -738,7 +623,7 @@ nm_setting_ppp_get_crtscts (<em class="parameter"><code><a class="link" href="NM </div> <div class="refsect3"> <a name="nm-setting-ppp-get-crtscts.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingPpp.html#NMSettingPpp--crtscts" title="The “crtscts” property"><span class="type">“crtscts”</span></a> property of the setting</p> +<p> the <a href="NMSettingPpp.html#NMSettingPpp--crtscts"><span class="type">“crtscts”</span></a> property of the setting</p> </div> </div> <hr> @@ -763,7 +648,7 @@ nm_setting_ppp_get_baud (<em class="parameter"><code><a class="link" href="NMSet </div> <div class="refsect3"> <a name="nm-setting-ppp-get-baud.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingPpp.html#NMSettingPpp--baud" title="The “baud” property"><span class="type">“baud”</span></a> property of the setting</p> +<p> the <a href="NMSettingPpp.html#NMSettingPpp--baud"><span class="type">“baud”</span></a> property of the setting</p> </div> </div> <hr> @@ -788,7 +673,7 @@ nm_setting_ppp_get_mru (<em class="parameter"><code><a class="link" href="NMSett </div> <div class="refsect3"> <a name="nm-setting-ppp-get-mru.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingPpp.html#NMSettingPpp--mru" title="The “mru” property"><span class="type">“mru”</span></a> property of the setting</p> +<p> the <a href="NMSettingPpp.html#NMSettingPpp--mru"><span class="type">“mru”</span></a> property of the setting</p> </div> </div> <hr> @@ -813,7 +698,7 @@ nm_setting_ppp_get_mtu (<em class="parameter"><code><a class="link" href="NMSett </div> <div class="refsect3"> <a name="nm-setting-ppp-get-mtu.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingPpp.html#NMSettingPpp--mtu" title="The “mtu” property"><span class="type">“mtu”</span></a> property of the setting</p> +<p> the <a href="NMSettingPpp.html#NMSettingPpp--mtu"><span class="type">“mtu”</span></a> property of the setting</p> </div> </div> <hr> @@ -838,7 +723,7 @@ nm_setting_ppp_get_lcp_echo_failure (<em class="parameter"><code><a class="link" </div> <div class="refsect3"> <a name="nm-setting-ppp-get-lcp-echo-failure.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingPpp.html#NMSettingPpp--lcp-echo-failure" title="The “lcp-echo-failure” property"><span class="type">“lcp-echo-failure”</span></a> property of the setting</p> +<p> the <a href="NMSettingPpp.html#NMSettingPpp--lcp-echo-failure"><span class="type">“lcp-echo-failure”</span></a> property of the setting</p> </div> </div> <hr> @@ -863,7 +748,7 @@ nm_setting_ppp_get_lcp_echo_interval (<em class="parameter"><code><a class="link </div> <div class="refsect3"> <a name="nm-setting-ppp-get-lcp-echo-interval.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingPpp.html#NMSettingPpp--lcp-echo-interval" title="The “lcp-echo-interval” property"><span class="type">“lcp-echo-interval”</span></a> property of the setting</p> +<p> the <a href="NMSettingPpp.html#NMSettingPpp--lcp-echo-interval"><span class="type">“lcp-echo-interval”</span></a> property of the setting</p> </div> </div> </div> @@ -982,198 +867,6 @@ nm_setting_ppp_get_lcp_echo_interval (<em class="parameter"><code><a class="link <pre class="programlisting">#define NM_SETTING_PPP_LCP_ECHO_INTERVAL "lcp-echo-interval" </pre> </div> -<hr> -<div class="refsect2"> -<a name="NMSettingPpp-struct"></a><h3>NMSettingPpp</h3> -<pre class="programlisting">typedef struct _NMSettingPpp NMSettingPpp;</pre> -<p>Point-to-Point Protocol Settings</p> -</div> -</div> -<div class="refsect1"> -<a name="NMSettingPpp.property-details"></a><h2>Property Details</h2> -<div class="refsect2"> -<a name="NMSettingPpp--baud"></a><h3>The <code class="literal">“baud”</code> property</h3> -<pre class="programlisting"> “baud” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>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.</p> -<p>Owner: NMSettingPpp</p> -<p>Flags: Read / Write</p> -<p>Default value: 0</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingPpp--crtscts"></a><h3>The <code class="literal">“crtscts”</code> property</h3> -<pre class="programlisting"> “crtscts” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>If <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, 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 <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</p> -<p>Owner: NMSettingPpp</p> -<p>Flags: Read / Write</p> -<p>Default value: FALSE</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingPpp--lcp-echo-failure"></a><h3>The <code class="literal">“lcp-echo-failure”</code> property</h3> -<pre class="programlisting"> “lcp-echo-failure” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>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.</p> -<p>Owner: NMSettingPpp</p> -<p>Flags: Read / Write</p> -<p>Default value: 0</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingPpp--lcp-echo-interval"></a><h3>The <code class="literal">“lcp-echo-interval”</code> property</h3> -<pre class="programlisting"> “lcp-echo-interval” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>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.</p> -<p>Owner: NMSettingPpp</p> -<p>Flags: Read / Write</p> -<p>Default value: 0</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingPpp--mppe-stateful"></a><h3>The <code class="literal">“mppe-stateful”</code> property</h3> -<pre class="programlisting"> “mppe-stateful” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>If <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, stateful MPPE is used. See pppd documentation for more -information on stateful MPPE.</p> -<p>Owner: NMSettingPpp</p> -<p>Flags: Read / Write</p> -<p>Default value: FALSE</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingPpp--mru"></a><h3>The <code class="literal">“mru”</code> property</h3> -<pre class="programlisting"> “mru” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>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.</p> -<p>Owner: NMSettingPpp</p> -<p>Flags: Read / Write</p> -<p>Allowed values: <= 16384</p> -<p>Default value: 0</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingPpp--mtu"></a><h3>The <code class="literal">“mtu”</code> property</h3> -<pre class="programlisting"> “mtu” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>If non-zero, instruct pppd to send packets no larger than the specified -size.</p> -<p>Owner: NMSettingPpp</p> -<p>Flags: Read / Write</p> -<p>Default value: 0</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingPpp--no-vj-comp"></a><h3>The <code class="literal">“no-vj-comp”</code> property</h3> -<pre class="programlisting"> “no-vj-comp” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>If <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, Van Jacobsen TCP header compression will not be requested.</p> -<p>Owner: NMSettingPpp</p> -<p>Flags: Read / Write</p> -<p>Default value: FALSE</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingPpp--noauth"></a><h3>The <code class="literal">“noauth”</code> property</h3> -<pre class="programlisting"> “noauth” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>If <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, do not require the other side (usually the PPP server) to -authenticate itself to the client. If <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>, require authentication -from the remote side. In almost all cases, this should be <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>.</p> -<p>Owner: NMSettingPpp</p> -<p>Flags: Read / Write</p> -<p>Default value: TRUE</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingPpp--nobsdcomp"></a><h3>The <code class="literal">“nobsdcomp”</code> property</h3> -<pre class="programlisting"> “nobsdcomp” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>If <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, BSD compression will not be requested.</p> -<p>Owner: NMSettingPpp</p> -<p>Flags: Read / Write</p> -<p>Default value: FALSE</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingPpp--nodeflate"></a><h3>The <code class="literal">“nodeflate”</code> property</h3> -<pre class="programlisting"> “nodeflate” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>If <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, "deflate" compression will not be requested.</p> -<p>Owner: NMSettingPpp</p> -<p>Flags: Read / Write</p> -<p>Default value: FALSE</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingPpp--refuse-chap"></a><h3>The <code class="literal">“refuse-chap”</code> property</h3> -<pre class="programlisting"> “refuse-chap” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>If <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, the CHAP authentication method will not be used.</p> -<p>Owner: NMSettingPpp</p> -<p>Flags: Read / Write</p> -<p>Default value: FALSE</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingPpp--refuse-eap"></a><h3>The <code class="literal">“refuse-eap”</code> property</h3> -<pre class="programlisting"> “refuse-eap” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>If <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, the EAP authentication method will not be used.</p> -<p>Owner: NMSettingPpp</p> -<p>Flags: Read / Write</p> -<p>Default value: FALSE</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingPpp--refuse-mschap"></a><h3>The <code class="literal">“refuse-mschap”</code> property</h3> -<pre class="programlisting"> “refuse-mschap” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>If <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, the MSCHAP authentication method will not be used.</p> -<p>Owner: NMSettingPpp</p> -<p>Flags: Read / Write</p> -<p>Default value: FALSE</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingPpp--refuse-mschapv2"></a><h3>The <code class="literal">“refuse-mschapv2”</code> property</h3> -<pre class="programlisting"> “refuse-mschapv2” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>If <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, the MSCHAPv2 authentication method will not be used.</p> -<p>Owner: NMSettingPpp</p> -<p>Flags: Read / Write</p> -<p>Default value: FALSE</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingPpp--refuse-pap"></a><h3>The <code class="literal">“refuse-pap”</code> property</h3> -<pre class="programlisting"> “refuse-pap” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>If <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, the PAP authentication method will not be used.</p> -<p>Owner: NMSettingPpp</p> -<p>Flags: Read / Write</p> -<p>Default value: FALSE</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingPpp--require-mppe"></a><h3>The <code class="literal">“require-mppe”</code> property</h3> -<pre class="programlisting"> “require-mppe” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>If <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, 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.</p> -<p>Owner: NMSettingPpp</p> -<p>Flags: Read / Write</p> -<p>Default value: FALSE</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingPpp--require-mppe-128"></a><h3>The <code class="literal">“require-mppe-128”</code> property</h3> -<pre class="programlisting"> “require-mppe-128” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>If <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, 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 <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>. If 128-bit MPPE is not available the session will fail.</p> -<p>Owner: NMSettingPpp</p> -<p>Flags: Read / Write</p> -<p>Default value: FALSE</p> -</div> </div> </div> <div class="footer"> diff --git a/docs/libnm/html/NMSettingPppoe.html b/docs/libnm/html/NMSettingPppoe.html index 28e9a596..f1439b19 100644 --- a/docs/libnm/html/NMSettingPppoe.html +++ b/docs/libnm/html/NMSettingPppoe.html @@ -15,9 +15,7 @@ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle"> <td width="100%" align="left" class="shortcuts"> <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> - <a href="#NMSettingPppoe.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> - <a href="#NMSettingPppoe.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties"> <span class="dim">|</span> - <a href="#NMSettingPppoe.properties" class="shortcut">Properties</a></span> + <a href="#NMSettingPppoe.description" class="shortcut">Description</a></span> </td> <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> <td><a accesskey="u" href="ch03.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> @@ -89,47 +87,6 @@ </table></div> </div> <div class="refsect1"> -<a name="NMSettingPppoe.properties"></a><h2>Properties</h2> -<div class="informaltable"><table class="informaltable" border="0"> -<colgroup> -<col width="150px" class="properties_type"> -<col width="300px" class="properties_name"> -<col width="200px" class="properties_flags"> -</colgroup> -<tbody> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingPppoe.html#NMSettingPppoe--parent" title="The “parent” property">parent</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingPppoe.html#NMSettingPppoe--password" title="The “password” property">password</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a></td> -<td class="property_name"><a class="link" href="NMSettingPppoe.html#NMSettingPppoe--password-flags" title="The “password-flags” property">password-flags</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingPppoe.html#NMSettingPppoe--service" title="The “service” property">service</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingPppoe.html#NMSettingPppoe--username" title="The “username” property">username</a></td> -<td class="property_flags">Read / Write</td> -</tr> -</tbody> -</table></div> -</div> -<div class="refsect1"> <a name="NMSettingPppoe.other"></a><h2>Types and Values</h2> <div class="informaltable"><table class="informaltable" width="100%" border="0"> <colgroup> @@ -161,21 +118,10 @@ <td class="define_keyword">#define</td> <td class="function_name"><a class="link" href="NMSettingPppoe.html#NM-SETTING-PPPOE-PASSWORD-FLAGS:CAPS" title="NM_SETTING_PPPOE_PASSWORD_FLAGS">NM_SETTING_PPPOE_PASSWORD_FLAGS</a></td> </tr> -<tr> -<td class="datatype_keyword"> </td> -<td class="function_name"><a class="link" href="NMSettingPppoe.html#NMSettingPppoe-struct" title="NMSettingPppoe">NMSettingPppoe</a></td> -</tr> </tbody> </table></div> </div> <div class="refsect1"> -<a name="NMSettingPppoe.object-hierarchy"></a><h2>Object Hierarchy</h2> -<pre class="screen"> <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a> - <span class="lineart">╰──</span> <a class="link" href="NMSetting.html" title="NMSetting">NMSetting</a> - <span class="lineart">╰──</span> NMSettingPppoe -</pre> -</div> -<div class="refsect1"> <a name="NMSettingPppoe.description"></a><h2>Description</h2> <p>The <a class="link" href="NMSettingPppoe.html" title="NMSettingPppoe"><span class="type">NMSettingPppoe</span></a> object is a <a class="link" href="NMSetting.html" title="NMSetting"><span class="type">NMSetting</span></a> subclass that describes properties necessary for connection to networks that require PPPoE connections @@ -216,7 +162,7 @@ nm_setting_pppoe_get_parent (<em class="parameter"><code><a class="link" href="N </div> <div class="refsect3"> <a name="nm-setting-pppoe-get-parent.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingPppoe.html#NMSettingPppoe--parent" title="The “parent” property"><span class="type">“parent”</span></a> property of the setting</p> +<p> the <a href="NMSettingPppoe.html#NMSettingPppoe--parent"><span class="type">“parent”</span></a> property of the setting</p> </div> <p class="since">Since: 1.10</p> </div> @@ -242,7 +188,7 @@ nm_setting_pppoe_get_service (<em class="parameter"><code><a class="link" href=" </div> <div class="refsect3"> <a name="nm-setting-pppoe-get-service.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingPppoe.html#NMSettingPppoe--service" title="The “service” property"><span class="type">“service”</span></a> property of the setting</p> +<p> the <a href="NMSettingPppoe.html#NMSettingPppoe--service"><span class="type">“service”</span></a> property of the setting</p> </div> </div> <hr> @@ -267,7 +213,7 @@ nm_setting_pppoe_get_username (<em class="parameter"><code><a class="link" href= </div> <div class="refsect3"> <a name="nm-setting-pppoe-get-username.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingPppoe.html#NMSettingPppoe--username" title="The “username” property"><span class="type">“username”</span></a> property of the setting</p> +<p> the <a href="NMSettingPppoe.html#NMSettingPppoe--username"><span class="type">“username”</span></a> property of the setting</p> </div> </div> <hr> @@ -292,7 +238,7 @@ nm_setting_pppoe_get_password (<em class="parameter"><code><a class="link" href= </div> <div class="refsect3"> <a name="nm-setting-pppoe-get-password.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingPppoe.html#NMSettingPppoe--password" title="The “password” property"><span class="type">“password”</span></a> property of the setting</p> +<p> the <a href="NMSettingPppoe.html#NMSettingPppoe--password"><span class="type">“password”</span></a> property of the setting</p> </div> </div> <hr> @@ -317,7 +263,7 @@ nm_setting_pppoe_get_password_flags (<em class="parameter"><code><a class="link" </div> <div class="refsect3"> <a name="nm-setting-pppoe-get-password-flags.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a> pertaining to the <a class="link" href="NMSettingPppoe.html#NMSettingPppoe--password" title="The “password” property"><span class="type">“password”</span></a></p> +<p> the <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a> pertaining to the <a href="NMSettingPppoe.html#NMSettingPppoe--password"><span class="type">“password”</span></a></p> </div> </div> </div> @@ -358,65 +304,6 @@ nm_setting_pppoe_get_password_flags (<em class="parameter"><code><a class="link" <pre class="programlisting">#define NM_SETTING_PPPOE_PASSWORD_FLAGS "password-flags" </pre> </div> -<hr> -<div class="refsect2"> -<a name="NMSettingPppoe-struct"></a><h3>NMSettingPppoe</h3> -<pre class="programlisting">typedef struct _NMSettingPppoe NMSettingPppoe;</pre> -<p>PPP-over-Ethernet Settings</p> -</div> -</div> -<div class="refsect1"> -<a name="NMSettingPppoe.property-details"></a><h2>Property Details</h2> -<div class="refsect2"> -<a name="NMSettingPppoe--parent"></a><h3>The <code class="literal">“parent”</code> property</h3> -<pre class="programlisting"> “parent” <span class="type">char</span> *</pre> -<p>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 -<a class="link" href="NMSettingConnection.html#NMSettingConnection--interface-name" title="The “interface-name” property"><span class="type">“interface-name”</span></a> of <a class="link" href="NMSettingConnection.html" title="NMSettingConnection"><span class="type">NMSettingConnection</span></a>.</p> -<p>Owner: NMSettingPppoe</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.10</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingPppoe--password"></a><h3>The <code class="literal">“password”</code> property</h3> -<pre class="programlisting"> “password” <span class="type">char</span> *</pre> -<p>Password used to authenticate with the PPPoE service.</p> -<p>Owner: NMSettingPppoe</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingPppoe--password-flags"></a><h3>The <code class="literal">“password-flags”</code> property</h3> -<pre class="programlisting"> “password-flags” <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a></pre> -<p>Flags indicating how to handle the <a class="link" href="NMSettingPppoe.html#NMSettingPppoe--password" title="The “password” property"><span class="type">“password”</span></a> property.</p> -<p>Owner: NMSettingPppoe</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingPppoe--service"></a><h3>The <code class="literal">“service”</code> property</h3> -<pre class="programlisting"> “service” <span class="type">char</span> *</pre> -<p>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.</p> -<p>Owner: NMSettingPppoe</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingPppoe--username"></a><h3>The <code class="literal">“username”</code> property</h3> -<pre class="programlisting"> “username” <span class="type">char</span> *</pre> -<p>Username used to authenticate with the PPPoE service.</p> -<p>Owner: NMSettingPppoe</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> </div> </div> <div class="footer"> diff --git a/docs/libnm/html/NMSettingProxy.html b/docs/libnm/html/NMSettingProxy.html index 9191af71..0ed60245 100644 --- a/docs/libnm/html/NMSettingProxy.html +++ b/docs/libnm/html/NMSettingProxy.html @@ -16,8 +16,7 @@ <td width="100%" align="left" class="shortcuts"> <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> <a href="#NMSettingProxy.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> - <a href="#NMSettingProxy.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties"> <span class="dim">|</span> - <a href="#NMSettingProxy.properties" class="shortcut">Properties</a></span> + <a href="#NMSettingProxy.object-hierarchy" class="shortcut">Object Hierarchy</a></span> </td> <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> <td><a accesskey="u" href="ch03.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> @@ -83,40 +82,6 @@ </table></div> </div> <div class="refsect1"> -<a name="NMSettingProxy.properties"></a><h2>Properties</h2> -<div class="informaltable"><table class="informaltable" border="0"> -<colgroup> -<col width="150px" class="properties_type"> -<col width="300px" class="properties_name"> -<col width="200px" class="properties_flags"> -</colgroup> -<tbody> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingProxy.html#NMSettingProxy--browser-only" title="The “browser-only” property">browser-only</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><span class="type">int</span></td> -<td class="property_name"><a class="link" href="NMSettingProxy.html#NMSettingProxy--method" title="The “method” property">method</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingProxy.html#NMSettingProxy--pac-script" title="The “pac-script” property">pac-script</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingProxy.html#NMSettingProxy--pac-url" title="The “pac-url” property">pac-url</a></td> -<td class="property_flags">Read / Write</td> -</tr> -</tbody> -</table></div> -</div> -<div class="refsect1"> <a name="NMSettingProxy.other"></a><h2>Types and Values</h2> <div class="informaltable"><table class="informaltable" width="100%" border="0"> <colgroup> @@ -148,10 +113,6 @@ <td class="define_keyword">#define</td> <td class="function_name"><a class="link" href="NMSettingProxy.html#NM-SETTING-PROXY-PAC-SCRIPT:CAPS" title="NM_SETTING_PROXY_PAC_SCRIPT">NM_SETTING_PROXY_PAC_SCRIPT</a></td> </tr> -<tr> -<td class="datatype_keyword"> </td> -<td class="function_name"><a class="link" href="NMSettingProxy.html#NMSettingProxy-struct" title="NMSettingProxy">NMSettingProxy</a></td> -</tr> </tbody> </table></div> </div> @@ -159,16 +120,13 @@ <a name="NMSettingProxy.object-hierarchy"></a><h2>Object Hierarchy</h2> <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html">GEnum</a> <span class="lineart">╰──</span> NMSettingProxyMethod - <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a> - <span class="lineart">╰──</span> <a class="link" href="NMSetting.html" title="NMSetting">NMSetting</a> - <span class="lineart">╰──</span> NMSettingProxy </pre> </div> <div class="refsect1"> <a name="NMSettingProxy.description"></a><h2>Description</h2> <p>The <a class="link" href="NMSettingProxy.html" title="NMSettingProxy"><span class="type">NMSettingProxy</span></a> object is a <a class="link" href="NMSetting.html" title="NMSetting"><span class="type">NMSetting</span></a> subclass that describes properties related to Proxy settings like PAC URL, PAC script etc.</p> -<p>NetworkManager support 2 values for the <a class="link" href="NMSettingProxy.html#NMSettingProxy--method" title="The “method” property"><span class="type">“method”</span></a> property for +<p>NetworkManager support 2 values for the <a href="NMSettingProxy.html#NMSettingProxy--method"><span class="type">“method”</span></a> 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 (<em class="parameter"><code><a class="link" hre <pre class="programlisting">#define NM_SETTING_PROXY_PAC_SCRIPT "pac-script" </pre> </div> -<hr> -<div class="refsect2"> -<a name="NMSettingProxy-struct"></a><h3>NMSettingProxy</h3> -<pre class="programlisting">typedef struct _NMSettingProxy NMSettingProxy;</pre> -<p>WWW Proxy Settings</p> -</div> -</div> -<div class="refsect1"> -<a name="NMSettingProxy.property-details"></a><h2>Property Details</h2> -<div class="refsect2"> -<a name="NMSettingProxy--browser-only"></a><h3>The <code class="literal">“browser-only”</code> property</h3> -<pre class="programlisting"> “browser-only” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>Whether the proxy configuration is for browser only.</p> -<p>Owner: NMSettingProxy</p> -<p>Flags: Read / Write</p> -<p>Default value: FALSE</p> -<p class="since">Since: 1.6</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingProxy--method"></a><h3>The <code class="literal">“method”</code> property</h3> -<pre class="programlisting"> “method” <span class="type">int</span></pre> -<p>Method for proxy configuration, Default is <a class="link" href="NMSettingProxy.html#NM-SETTING-PROXY-METHOD-NONE:CAPS"><code class="literal">NM_SETTING_PROXY_METHOD_NONE</code></a></p> -<p>Owner: NMSettingProxy</p> -<p>Flags: Read / Write</p> -<p>Default value: 0</p> -<p class="since">Since: 1.6</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingProxy--pac-script"></a><h3>The <code class="literal">“pac-script”</code> property</h3> -<pre class="programlisting"> “pac-script” <span class="type">char</span> *</pre> -<p>PAC script for the connection.</p> -<p>Owner: NMSettingProxy</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.6</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingProxy--pac-url"></a><h3>The <code class="literal">“pac-url”</code> property</h3> -<pre class="programlisting"> “pac-url” <span class="type">char</span> *</pre> -<p>PAC URL for obtaining PAC file.</p> -<p>Owner: NMSettingProxy</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.6</p> -</div> </div> </div> <div class="footer"> diff --git a/docs/libnm/html/NMSettingSerial.html b/docs/libnm/html/NMSettingSerial.html index 26d5c5bc..d9d798f2 100644 --- a/docs/libnm/html/NMSettingSerial.html +++ b/docs/libnm/html/NMSettingSerial.html @@ -16,8 +16,7 @@ <td width="100%" align="left" class="shortcuts"> <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> <a href="#NMSettingSerial.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> - <a href="#NMSettingSerial.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties"> <span class="dim">|</span> - <a href="#NMSettingSerial.properties" class="shortcut">Properties</a></span> + <a href="#NMSettingSerial.object-hierarchy" class="shortcut">Object Hierarchy</a></span> </td> <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> <td><a accesskey="u" href="ch03.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> @@ -94,43 +93,6 @@ serial communications</p> </table></div> </div> <div class="refsect1"> -<a name="NMSettingSerial.properties"></a><h2>Properties</h2> -<div class="informaltable"><table class="informaltable" border="0"> -<colgroup> -<col width="150px" class="properties_type"> -<col width="300px" class="properties_name"> -<col width="200px" class="properties_flags"> -</colgroup> -<tbody> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingSerial.html#NMSettingSerial--baud" title="The “baud” property">baud</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingSerial.html#NMSettingSerial--bits" title="The “bits” property">bits</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a class="link" href="NMSettingSerial.html#NMSettingSerialParity" title="enum NMSettingSerialParity"><span class="type">NMSettingSerialParity</span></a></td> -<td class="property_name"><a class="link" href="NMSettingSerial.html#NMSettingSerial--parity" title="The “parity” property">parity</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a></td> -<td class="property_name"><a class="link" href="NMSettingSerial.html#NMSettingSerial--send-delay" title="The “send-delay” property">send-delay</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingSerial.html#NMSettingSerial--stopbits" title="The “stopbits” property">stopbits</a></td> -<td class="property_flags">Read / Write</td> -</tr> -</tbody> -</table></div> -</div> -<div class="refsect1"> <a name="NMSettingSerial.other"></a><h2>Types and Values</h2> <div class="informaltable"><table class="informaltable" width="100%" border="0"> <colgroup> @@ -166,10 +128,6 @@ serial communications</p> <td class="define_keyword">#define</td> <td class="function_name"><a class="link" href="NMSettingSerial.html#NM-SETTING-SERIAL-SEND-DELAY:CAPS" title="NM_SETTING_SERIAL_SEND_DELAY">NM_SETTING_SERIAL_SEND_DELAY</a></td> </tr> -<tr> -<td class="datatype_keyword"> </td> -<td class="function_name"><a class="link" href="NMSettingSerial.html#NMSettingSerial-struct" title="NMSettingSerial">NMSettingSerial</a></td> -</tr> </tbody> </table></div> </div> @@ -177,9 +135,6 @@ serial communications</p> <a name="NMSettingSerial.object-hierarchy"></a><h2>Object Hierarchy</h2> <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html">GEnum</a> <span class="lineart">╰──</span> NMSettingSerialParity - <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a> - <span class="lineart">╰──</span> <a class="link" href="NMSetting.html" title="NMSetting">NMSetting</a> - <span class="lineart">╰──</span> NMSettingSerial </pre> </div> <div class="refsect1"> @@ -223,7 +178,7 @@ nm_setting_serial_get_baud (<em class="parameter"><code><a class="link" href="NM </div> <div class="refsect3"> <a name="nm-setting-serial-get-baud.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingSerial.html#NMSettingSerial--baud" title="The “baud” property"><span class="type">“baud”</span></a> property of the setting</p> +<p> the <a href="NMSettingSerial.html#NMSettingSerial--baud"><span class="type">“baud”</span></a> property of the setting</p> </div> </div> <hr> @@ -248,7 +203,7 @@ nm_setting_serial_get_bits (<em class="parameter"><code><a class="link" href="NM </div> <div class="refsect3"> <a name="nm-setting-serial-get-bits.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingSerial.html#NMSettingSerial--bits" title="The “bits” property"><span class="type">“bits”</span></a> property of the setting</p> +<p> the <a href="NMSettingSerial.html#NMSettingSerial--bits"><span class="type">“bits”</span></a> property of the setting</p> </div> </div> <hr> @@ -273,7 +228,7 @@ nm_setting_serial_get_parity (<em class="parameter"><code><a class="link" href=" </div> <div class="refsect3"> <a name="nm-setting-serial-get-parity.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingSerial.html#NMSettingSerial--parity" title="The “parity” property"><span class="type">“parity”</span></a> property of the setting</p> +<p> the <a href="NMSettingSerial.html#NMSettingSerial--parity"><span class="type">“parity”</span></a> property of the setting</p> </div> </div> <hr> @@ -298,7 +253,7 @@ nm_setting_serial_get_stopbits (<em class="parameter"><code><a class="link" href </div> <div class="refsect3"> <a name="nm-setting-serial-get-stopbits.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingSerial.html#NMSettingSerial--stopbits" title="The “stopbits” property"><span class="type">“stopbits”</span></a> property of the setting</p> +<p> the <a href="NMSettingSerial.html#NMSettingSerial--stopbits"><span class="type">“stopbits”</span></a> property of the setting</p> </div> </div> <hr> @@ -323,7 +278,7 @@ nm_setting_serial_get_send_delay (<em class="parameter"><code><a class="link" hr </div> <div class="refsect3"> <a name="nm-setting-serial-get-send-delay.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingSerial.html#NMSettingSerial--send-delay" title="The “send-delay” property"><span class="type">“send-delay”</span></a> property of the setting</p> +<p> the <a href="NMSettingSerial.html#NMSettingSerial--send-delay"><span class="type">“send-delay”</span></a> property of the setting</p> </div> </div> </div> @@ -402,64 +357,6 @@ nm_setting_serial_get_send_delay (<em class="parameter"><code><a class="link" hr <pre class="programlisting">#define NM_SETTING_SERIAL_SEND_DELAY "send-delay" </pre> </div> -<hr> -<div class="refsect2"> -<a name="NMSettingSerial-struct"></a><h3>NMSettingSerial</h3> -<pre class="programlisting">typedef struct _NMSettingSerial NMSettingSerial;</pre> -<p>Serial Link Settings</p> -</div> -</div> -<div class="refsect1"> -<a name="NMSettingSerial.property-details"></a><h2>Property Details</h2> -<div class="refsect2"> -<a name="NMSettingSerial--baud"></a><h3>The <code class="literal">“baud”</code> property</h3> -<pre class="programlisting"> “baud” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>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.</p> -<p>Owner: NMSettingSerial</p> -<p>Flags: Read / Write</p> -<p>Default value: 57600</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingSerial--bits"></a><h3>The <code class="literal">“bits”</code> property</h3> -<pre class="programlisting"> “bits” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>Byte-width of the serial communication. The 8 in "8n1" for example.</p> -<p>Owner: NMSettingSerial</p> -<p>Flags: Read / Write</p> -<p>Allowed values: [5,8]</p> -<p>Default value: 8</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingSerial--parity"></a><h3>The <code class="literal">“parity”</code> property</h3> -<pre class="programlisting"> “parity” <a class="link" href="NMSettingSerial.html#NMSettingSerialParity" title="enum NMSettingSerialParity"><span class="type">NMSettingSerialParity</span></a></pre> -<p>Parity setting of the serial port.</p> -<p>Owner: NMSettingSerial</p> -<p>Flags: Read / Write</p> -<p>Default value: NM_SETTING_SERIAL_PARITY_NONE</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingSerial--send-delay"></a><h3>The <code class="literal">“send-delay”</code> property</h3> -<pre class="programlisting"> “send-delay” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint64"><span class="type">guint64</span></a></pre> -<p>Time to delay between each byte sent to the modem, in microseconds.</p> -<p>Owner: NMSettingSerial</p> -<p>Flags: Read / Write</p> -<p>Default value: 0</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingSerial--stopbits"></a><h3>The <code class="literal">“stopbits”</code> property</h3> -<pre class="programlisting"> “stopbits” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>Number of stop bits for communication on the serial port. Either 1 or 2. -The 1 in "8n1" for example.</p> -<p>Owner: NMSettingSerial</p> -<p>Flags: Read / Write</p> -<p>Allowed values: [1,2]</p> -<p>Default value: 1</p> -</div> </div> </div> <div class="footer"> diff --git a/docs/libnm/html/NMSettingTeam.html b/docs/libnm/html/NMSettingTeam.html index 0faf7bf2..350171f2 100644 --- a/docs/libnm/html/NMSettingTeam.html +++ b/docs/libnm/html/NMSettingTeam.html @@ -16,8 +16,7 @@ <td width="100%" align="left" class="shortcuts"> <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> <a href="#NMSettingTeam.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> - <a href="#NMSettingTeam.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties"> <span class="dim">|</span> - <a href="#NMSettingTeam.properties" class="shortcut">Properties</a></span> + <a href="#NMSettingTeam.object-hierarchy" class="shortcut">Object Hierarchy</a></span> </td> <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> <td><a accesskey="u" href="ch03.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> @@ -387,104 +386,6 @@ </tbody> </table></div> </div> -<div class="refsect1"> -<a name="NMSettingTeam.properties"></a><h2>Properties</h2> -<div class="informaltable"><table class="informaltable" border="0"> -<colgroup> -<col width="150px" class="properties_type"> -<col width="300px" class="properties_name"> -<col width="200px" class="properties_flags"> -</colgroup> -<tbody> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingTeam.html#NMSettingTeam--config" title="The “config” property">config</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<a href="https://developer.gnome.org/glib/unstable/glib-Pointer-Arrays.html#GPtrArray"><span class="type">GPtrArray</span></a> *</td> -<td class="property_name"><a class="link" href="NMSettingTeam.html#NMSettingTeam--link-watchers" title="The “link-watchers” property">link-watchers</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><span class="type">int</span></td> -<td class="property_name"><a class="link" href="NMSettingTeam.html#NMSettingTeam--mcast-rejoin-count" title="The “mcast-rejoin-count” property">mcast-rejoin-count</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><span class="type">int</span></td> -<td class="property_name"><a class="link" href="NMSettingTeam.html#NMSettingTeam--mcast-rejoin-interval" title="The “mcast-rejoin-interval” property">mcast-rejoin-interval</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><span class="type">int</span></td> -<td class="property_name"><a class="link" href="NMSettingTeam.html#NMSettingTeam--notify-peers-count" title="The “notify-peers-count” property">notify-peers-count</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><span class="type">int</span></td> -<td class="property_name"><a class="link" href="NMSettingTeam.html#NMSettingTeam--notify-peers-interval" title="The “notify-peers-interval” property">notify-peers-interval</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingTeam.html#NMSettingTeam--runner" title="The “runner” property">runner</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingTeam.html#NMSettingTeam--runner-active" title="The “runner-active” property">runner-active</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingTeam.html#NMSettingTeam--runner-agg-select-policy" title="The “runner-agg-select-policy” property">runner-agg-select-policy</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingTeam.html#NMSettingTeam--runner-fast-rate" title="The “runner-fast-rate” property">runner-fast-rate</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingTeam.html#NMSettingTeam--runner-hwaddr-policy" title="The “runner-hwaddr-policy” property">runner-hwaddr-policy</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><span class="type">int</span></td> -<td class="property_name"><a class="link" href="NMSettingTeam.html#NMSettingTeam--runner-min-ports" title="The “runner-min-ports” property">runner-min-ports</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><span class="type">int</span></td> -<td class="property_name"><a class="link" href="NMSettingTeam.html#NMSettingTeam--runner-sys-prio" title="The “runner-sys-prio” property">runner-sys-prio</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingTeam.html#NMSettingTeam--runner-tx-balancer" title="The “runner-tx-balancer” property">runner-tx-balancer</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><span class="type">int</span></td> -<td class="property_name"><a class="link" href="NMSettingTeam.html#NMSettingTeam--runner-tx-balancer-interval" title="The “runner-tx-balancer-interval” property">runner-tx-balancer-interval</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></td> -<td class="property_name"><a class="link" href="NMSettingTeam.html#NMSettingTeam--runner-tx-hash" title="The “runner-tx-hash” property">runner-tx-hash</a></td> -<td class="property_flags">Read / Write</td> -</tr> -</tbody> -</table></div> -</div> <a name="NMTeamLinkWatcher"></a><div class="refsect1"> <a name="NMSettingTeam.other"></a><h2>Types and Values</h2> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -661,10 +562,6 @@ <td class="define_keyword">#define</td> <td class="function_name"><a class="link" href="NMSettingTeam.html#NM-SETTING-TEAM-RUNNER-AGG-SELECT-POLICY-DEFAULT:CAPS" title="NM_SETTING_TEAM_RUNNER_AGG_SELECT_POLICY_DEFAULT">NM_SETTING_TEAM_RUNNER_AGG_SELECT_POLICY_DEFAULT</a></td> </tr> -<tr> -<td class="datatype_keyword"> </td> -<td class="function_name"><a class="link" href="NMSettingTeam.html#NMSettingTeam-struct" title="NMSettingTeam">NMSettingTeam</a></td> -</tr> </tbody> </table></div> </div> @@ -674,9 +571,6 @@ <span class="lineart">╰──</span> NMTeamLinkWatcher <a href="/usr/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html">GFlags</a> <span class="lineart">╰──</span> NMTeamLinkWatcherArpPingFlags - <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a> - <span class="lineart">╰──</span> <a class="link" href="NMSetting.html" title="NMSetting">NMSetting</a> - <span class="lineart">╰──</span> NMSettingTeam </pre> </div> <div class="refsect1"> @@ -1308,7 +1202,7 @@ nm_setting_team_get_config (<em class="parameter"><code><a class="link" href="NM </div> <div class="refsect3"> <a name="nm-setting-team-get-config.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingTeam.html#NMSettingTeam--config" title="The “config” property"><span class="type">“config”</span></a> property of the setting</p> +<p> the <a href="NMSettingTeam.html#NMSettingTeam--config"><span class="type">“config”</span></a> property of the setting</p> </div> </div> <hr> @@ -1334,7 +1228,7 @@ nm_setting_team_get_notify_peers_count </div> <div class="refsect3"> <a name="nm-setting-team-get-notify-peers-count.returns"></a><h4>Returns</h4> -<p> the #<a class="link" href="NMSettingTeam.html#NMSettingTeam--notify-peers-count" title="The “notify-peers-count” property"><span class="type">“notify-peers-count”</span></a> property of the setting</p> +<p> the #<a href="NMSettingTeam.html#NMSettingTeam--notify-peers-count"><span class="type">“notify-peers-count”</span></a> property of the setting</p> </div> <p class="since">Since: 1.12</p> </div> @@ -1361,7 +1255,7 @@ nm_setting_team_get_notify_peers_interval </div> <div class="refsect3"> <a name="nm-setting-team-get-notify-peers-interval.returns"></a><h4>Returns</h4> -<p> the #<a class="link" href="NMSettingTeam.html#NMSettingTeam--notify-peers-interval" title="The “notify-peers-interval” property"><span class="type">“notify-peers-interval”</span></a> property of the setting</p> +<p> the #<a href="NMSettingTeam.html#NMSettingTeam--notify-peers-interval"><span class="type">“notify-peers-interval”</span></a> property of the setting</p> </div> <p class="since">Since: 1.12</p> </div> @@ -1388,7 +1282,7 @@ nm_setting_team_get_mcast_rejoin_count </div> <div class="refsect3"> <a name="nm-setting-team-get-mcast-rejoin-count.returns"></a><h4>Returns</h4> -<p> the #<a class="link" href="NMSettingTeam.html#NMSettingTeam--mcast-rejoin-count" title="The “mcast-rejoin-count” property"><span class="type">“mcast-rejoin-count”</span></a> property of the setting</p> +<p> the #<a href="NMSettingTeam.html#NMSettingTeam--mcast-rejoin-count"><span class="type">“mcast-rejoin-count”</span></a> property of the setting</p> </div> <p class="since">Since: 1.12</p> </div> @@ -1415,7 +1309,7 @@ nm_setting_team_get_mcast_rejoin_interval </div> <div class="refsect3"> <a name="nm-setting-team-get-mcast-rejoin-interval.returns"></a><h4>Returns</h4> -<p> the #<a class="link" href="NMSettingTeam.html#NMSettingTeam--mcast-rejoin-interval" title="The “mcast-rejoin-interval” property"><span class="type">“mcast-rejoin-interval”</span></a> property of the setting</p> +<p> the #<a href="NMSettingTeam.html#NMSettingTeam--mcast-rejoin-interval"><span class="type">“mcast-rejoin-interval”</span></a> property of the setting</p> </div> <p class="since">Since: 1.12</p> </div> @@ -1441,7 +1335,7 @@ nm_setting_team_get_runner (<em class="parameter"><code><a class="link" href="NM </div> <div class="refsect3"> <a name="nm-setting-team-get-runner.returns"></a><h4>Returns</h4> -<p> the #<a class="link" href="NMSettingTeam.html#NMSettingTeam--runner" title="The “runner” property"><span class="type">“runner”</span></a> property of the setting</p> +<p> the #<a href="NMSettingTeam.html#NMSettingTeam--runner"><span class="type">“runner”</span></a> property of the setting</p> </div> <p class="since">Since: 1.12</p> </div> @@ -1468,7 +1362,7 @@ nm_setting_team_get_runner_hwaddr_policy </div> <div class="refsect3"> <a name="nm-setting-team-get-runner-hwaddr-policy.returns"></a><h4>Returns</h4> -<p> the #<a class="link" href="NMSettingTeam.html#NMSettingTeam--runner-hwaddr-policy" title="The “runner-hwaddr-policy” property"><span class="type">“runner-hwaddr-policy”</span></a> property of the setting</p> +<p> the #<a href="NMSettingTeam.html#NMSettingTeam--runner-hwaddr-policy"><span class="type">“runner-hwaddr-policy”</span></a> property of the setting</p> </div> <p class="since">Since: 1.12</p> </div> @@ -1495,7 +1389,7 @@ nm_setting_team_get_runner_tx_balancer </div> <div class="refsect3"> <a name="nm-setting-team-get-runner-tx-balancer.returns"></a><h4>Returns</h4> -<p> the #<a class="link" href="NMSettingTeam.html#NMSettingTeam--runner-tx-balancer" title="The “runner-tx-balancer” property"><span class="type">“runner-tx-balancer”</span></a> property of the setting</p> +<p> the #<a href="NMSettingTeam.html#NMSettingTeam--runner-tx-balancer"><span class="type">“runner-tx-balancer”</span></a> property of the setting</p> </div> <p class="since">Since: 1.12</p> </div> @@ -1522,7 +1416,7 @@ nm_setting_team_get_runner_tx_balancer_interval </div> <div class="refsect3"> <a name="nm-setting-team-get-runner-tx-balancer-interval.returns"></a><h4>Returns</h4> -<p> the #<a class="link" href="NMSettingTeam.html#NMSettingTeam--runner-tx-balancer-interval" title="The “runner-tx-balancer-interval” property"><span class="type">“runner-tx-balancer_interval”</span></a> property of the setting</p> +<p> the #<a href="NMSettingTeam.html#NMSettingTeam--runner-tx-balancer-interval"><span class="type">“runner-tx-balancer_interval”</span></a> property of the setting</p> </div> <p class="since">Since: 1.12</p> </div> @@ -1548,7 +1442,7 @@ nm_setting_team_get_runner_active (<em class="parameter"><code><a class="link" h </div> <div class="refsect3"> <a name="nm-setting-team-get-runner-active.returns"></a><h4>Returns</h4> -<p> the #<a class="link" href="NMSettingTeam.html#NMSettingTeam--runner-active" title="The “runner-active” property"><span class="type">“runner_active”</span></a> property of the setting</p> +<p> the #<a href="NMSettingTeam.html#NMSettingTeam--runner-active"><span class="type">“runner_active”</span></a> property of the setting</p> </div> <p class="since">Since: 1.12</p> </div> @@ -1574,7 +1468,7 @@ nm_setting_team_get_runner_fast_rate (<em class="parameter"><code><a class="link </div> <div class="refsect3"> <a name="nm-setting-team-get-runner-fast-rate.returns"></a><h4>Returns</h4> -<p> the #<a class="link" href="NMSettingTeam.html#NMSettingTeam--runner-fast-rate" title="The “runner-fast-rate” property"><span class="type">“runner-fast-rate”</span></a> property of the setting</p> +<p> the #<a href="NMSettingTeam.html#NMSettingTeam--runner-fast-rate"><span class="type">“runner-fast-rate”</span></a> property of the setting</p> </div> <p class="since">Since: 1.12</p> </div> @@ -1600,7 +1494,7 @@ nm_setting_team_get_runner_sys_prio (<em class="parameter"><code><a class="link" </div> <div class="refsect3"> <a name="nm-setting-team-get-runner-sys-prio.returns"></a><h4>Returns</h4> -<p> the #<a class="link" href="NMSettingTeam.html#NMSettingTeam--runner-sys-prio" title="The “runner-sys-prio” property"><span class="type">“runner-sys-prio”</span></a> property of the setting</p> +<p> the #<a href="NMSettingTeam.html#NMSettingTeam--runner-sys-prio"><span class="type">“runner-sys-prio”</span></a> property of the setting</p> </div> <p class="since">Since: 1.12</p> </div> @@ -1626,7 +1520,7 @@ nm_setting_team_get_runner_min_ports (<em class="parameter"><code><a class="link </div> <div class="refsect3"> <a name="nm-setting-team-get-runner-min-ports.returns"></a><h4>Returns</h4> -<p> the #<a class="link" href="NMSettingTeam.html#NMSettingTeam--runner-min-ports" title="The “runner-min-ports” property"><span class="type">“runner-min-ports”</span></a> property of the setting</p> +<p> the #<a href="NMSettingTeam.html#NMSettingTeam--runner-min-ports"><span class="type">“runner-min-ports”</span></a> property of the setting</p> </div> <p class="since">Since: 1.12</p> </div> @@ -1653,7 +1547,7 @@ nm_setting_team_get_runner_agg_select_policy </div> <div class="refsect3"> <a name="nm-setting-team-get-runner-agg-select-policy.returns"></a><h4>Returns</h4> -<p> the #<a class="link" href="NMSettingTeam.html#NMSettingTeam--runner-agg-select-policy" title="The “runner-agg-select-policy” property"><span class="type">“runner-agg-select-policy”</span></a> property of the setting</p> +<p> the #<a href="NMSettingTeam.html#NMSettingTeam--runner-agg-select-policy"><span class="type">“runner-agg-select-policy”</span></a> property of the setting</p> </div> <p class="since">Since: 1.12</p> </div> @@ -2307,184 +2201,6 @@ option 'validate_inactive' is enabled (set to true).</p> <a name="NM-SETTING-TEAM-RUNNER-AGG-SELECT-POLICY-DEFAULT:CAPS"></a><h3>NM_SETTING_TEAM_RUNNER_AGG_SELECT_POLICY_DEFAULT</h3> <pre class="programlisting">#define NM_SETTING_TEAM_RUNNER_AGG_SELECT_POLICY_DEFAULT</pre> </div> -<hr> -<div class="refsect2"> -<a name="NMSettingTeam-struct"></a><h3>NMSettingTeam</h3> -<pre class="programlisting">typedef struct _NMSettingTeam NMSettingTeam;</pre> -<p>Teaming Settings</p> -</div> -</div> -<div class="refsect1"> -<a name="NMSettingTeam.property-details"></a><h2>Property Details</h2> -<div class="refsect2"> -<a name="NMSettingTeam--config"></a><h3>The <code class="literal">“config”</code> property</h3> -<pre class="programlisting"> “config” <span class="type">char</span> *</pre> -<p>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.</p> -<p>Owner: NMSettingTeam</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingTeam--link-watchers"></a><h3>The <code class="literal">“link-watchers”</code> property</h3> -<pre class="programlisting"> “link-watchers” <a href="https://developer.gnome.org/glib/unstable/glib-Pointer-Arrays.html#GPtrArray"><span class="type">GPtrArray</span></a> *</pre> -<p>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.</p> -<p><span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GPtrArray(NMTeamLinkWatcher)]</span></p> -<p>Owner: NMSettingTeam</p> -<p>Flags: Read / Write</p> -<p class="since">Since: 1.12</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingTeam--mcast-rejoin-count"></a><h3>The <code class="literal">“mcast-rejoin-count”</code> property</h3> -<pre class="programlisting"> “mcast-rejoin-count” <span class="type">int</span></pre> -<p>Corresponds to the teamd mcast_rejoin.count.</p> -<p>Owner: NMSettingTeam</p> -<p>Flags: Read / Write</p> -<p>Default value: -1</p> -<p class="since">Since: 1.12</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingTeam--mcast-rejoin-interval"></a><h3>The <code class="literal">“mcast-rejoin-interval”</code> property</h3> -<pre class="programlisting"> “mcast-rejoin-interval” <span class="type">int</span></pre> -<p>Corresponds to the teamd mcast_rejoin.interval.</p> -<p>Owner: NMSettingTeam</p> -<p>Flags: Read / Write</p> -<p>Default value: -1</p> -<p class="since">Since: 1.12</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingTeam--notify-peers-count"></a><h3>The <code class="literal">“notify-peers-count”</code> property</h3> -<pre class="programlisting"> “notify-peers-count” <span class="type">int</span></pre> -<p>Corresponds to the teamd notify_peers.count.</p> -<p>Owner: NMSettingTeam</p> -<p>Flags: Read / Write</p> -<p>Default value: -1</p> -<p class="since">Since: 1.12</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingTeam--notify-peers-interval"></a><h3>The <code class="literal">“notify-peers-interval”</code> property</h3> -<pre class="programlisting"> “notify-peers-interval” <span class="type">int</span></pre> -<p>Corresponds to the teamd notify_peers.interval.</p> -<p>Owner: NMSettingTeam</p> -<p>Flags: Read / Write</p> -<p>Default value: -1</p> -<p class="since">Since: 1.12</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingTeam--runner"></a><h3>The <code class="literal">“runner”</code> property</h3> -<pre class="programlisting"> “runner” <span class="type">char</span> *</pre> -<p>Corresponds to the teamd runner.name. -Permitted values are: "roundrobin", "broadcast", "activebackup", -"loadbalance", "lacp", "random".</p> -<p>Owner: NMSettingTeam</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.12</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingTeam--runner-active"></a><h3>The <code class="literal">“runner-active”</code> property</h3> -<pre class="programlisting"> “runner-active” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>Corresponds to the teamd runner.active.</p> -<p>Owner: NMSettingTeam</p> -<p>Flags: Read / Write</p> -<p>Default value: TRUE</p> -<p class="since">Since: 1.12</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingTeam--runner-agg-select-policy"></a><h3>The <code class="literal">“runner-agg-select-policy”</code> property</h3> -<pre class="programlisting"> “runner-agg-select-policy” <span class="type">char</span> *</pre> -<p>Corresponds to the teamd runner.agg_select_policy.</p> -<p>Owner: NMSettingTeam</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.12</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingTeam--runner-fast-rate"></a><h3>The <code class="literal">“runner-fast-rate”</code> property</h3> -<pre class="programlisting"> “runner-fast-rate” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>Corresponds to the teamd runner.fast_rate.</p> -<p>Owner: NMSettingTeam</p> -<p>Flags: Read / Write</p> -<p>Default value: FALSE</p> -<p class="since">Since: 1.12</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingTeam--runner-hwaddr-policy"></a><h3>The <code class="literal">“runner-hwaddr-policy”</code> property</h3> -<pre class="programlisting"> “runner-hwaddr-policy” <span class="type">char</span> *</pre> -<p>Corresponds to the teamd runner.hwaddr_policy.</p> -<p>Owner: NMSettingTeam</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.12</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingTeam--runner-min-ports"></a><h3>The <code class="literal">“runner-min-ports”</code> property</h3> -<pre class="programlisting"> “runner-min-ports” <span class="type">int</span></pre> -<p>Corresponds to the teamd runner.min_ports.</p> -<p>Owner: NMSettingTeam</p> -<p>Flags: Read / Write</p> -<p>Default value: -1</p> -<p class="since">Since: 1.12</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingTeam--runner-sys-prio"></a><h3>The <code class="literal">“runner-sys-prio”</code> property</h3> -<pre class="programlisting"> “runner-sys-prio” <span class="type">int</span></pre> -<p>Corresponds to the teamd runner.sys_prio.</p> -<p>Owner: NMSettingTeam</p> -<p>Flags: Read / Write</p> -<p>Default value: -1</p> -<p class="since">Since: 1.12</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingTeam--runner-tx-balancer"></a><h3>The <code class="literal">“runner-tx-balancer”</code> property</h3> -<pre class="programlisting"> “runner-tx-balancer” <span class="type">char</span> *</pre> -<p>Corresponds to the teamd runner.tx_balancer.name.</p> -<p>Owner: NMSettingTeam</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.12</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingTeam--runner-tx-balancer-interval"></a><h3>The <code class="literal">“runner-tx-balancer-interval”</code> property</h3> -<pre class="programlisting"> “runner-tx-balancer-interval” <span class="type">int</span></pre> -<p>Corresponds to the teamd runner.tx_balancer.interval.</p> -<p>Owner: NMSettingTeam</p> -<p>Flags: Read / Write</p> -<p>Default value: -1</p> -<p class="since">Since: 1.12</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingTeam--runner-tx-hash"></a><h3>The <code class="literal">“runner-tx-hash”</code> property</h3> -<pre class="programlisting"> “runner-tx-hash” <a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></pre> -<p>Corresponds to the teamd runner.tx_hash.</p> -<p>Owner: NMSettingTeam</p> -<p>Flags: Read / Write</p> -<p class="since">Since: 1.12</p> -</div> </div> </div> <div class="footer"> diff --git a/docs/libnm/html/NMSettingTeamPort.html b/docs/libnm/html/NMSettingTeamPort.html index be731078..05c73ba0 100644 --- a/docs/libnm/html/NMSettingTeamPort.html +++ b/docs/libnm/html/NMSettingTeamPort.html @@ -15,9 +15,7 @@ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle"> <td width="100%" align="left" class="shortcuts"> <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> - <a href="#NMSettingTeamPort.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> - <a href="#NMSettingTeamPort.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties"> <span class="dim">|</span> - <a href="#NMSettingTeamPort.properties" class="shortcut">Properties</a></span> + <a href="#NMSettingTeamPort.description" class="shortcut">Description</a></span> </td> <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> <td><a accesskey="u" href="ch03.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> @@ -148,55 +146,6 @@ </table></div> </div> <div class="refsect1"> -<a name="NMSettingTeamPort.properties"></a><h2>Properties</h2> -<div class="informaltable"><table class="informaltable" border="0"> -<colgroup> -<col width="150px" class="properties_type"> -<col width="300px" class="properties_name"> -<col width="200px" class="properties_flags"> -</colgroup> -<tbody> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingTeamPort.html#NMSettingTeamPort--config" title="The “config” property">config</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><span class="type">int</span></td> -<td class="property_name"><a class="link" href="NMSettingTeamPort.html#NMSettingTeamPort--lacp-key" title="The “lacp-key” property">lacp-key</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><span class="type">int</span></td> -<td class="property_name"><a class="link" href="NMSettingTeamPort.html#NMSettingTeamPort--lacp-prio" title="The “lacp-prio” property">lacp-prio</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<a href="https://developer.gnome.org/glib/unstable/glib-Pointer-Arrays.html#GPtrArray"><span class="type">GPtrArray</span></a> *</td> -<td class="property_name"><a class="link" href="NMSettingTeamPort.html#NMSettingTeamPort--link-watchers" title="The “link-watchers” property">link-watchers</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><span class="type">int</span></td> -<td class="property_name"><a class="link" href="NMSettingTeamPort.html#NMSettingTeamPort--prio" title="The “prio” property">prio</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><span class="type">int</span></td> -<td class="property_name"><a class="link" href="NMSettingTeamPort.html#NMSettingTeamPort--queue-id" title="The “queue-id” property">queue-id</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingTeamPort.html#NMSettingTeamPort--sticky" title="The “sticky” property">sticky</a></td> -<td class="property_flags">Read / Write</td> -</tr> -</tbody> -</table></div> -</div> -<div class="refsect1"> <a name="NMSettingTeamPort.other"></a><h2>Types and Values</h2> <div class="informaltable"><table class="informaltable" width="100%" border="0"> <colgroup> @@ -244,21 +193,10 @@ <td class="define_keyword">#define</td> <td class="function_name"><a class="link" href="NMSettingTeamPort.html#NM-SETTING-TEAM-PORT-LACP-PRIO-DEFAULT:CAPS" title="NM_SETTING_TEAM_PORT_LACP_PRIO_DEFAULT">NM_SETTING_TEAM_PORT_LACP_PRIO_DEFAULT</a></td> </tr> -<tr> -<td class="datatype_keyword"> </td> -<td class="function_name"><a class="link" href="NMSettingTeamPort.html#NMSettingTeamPort-struct" title="NMSettingTeamPort">NMSettingTeamPort</a></td> -</tr> </tbody> </table></div> </div> <div class="refsect1"> -<a name="NMSettingTeamPort.object-hierarchy"></a><h2>Object Hierarchy</h2> -<pre class="screen"> <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a> - <span class="lineart">╰──</span> <a class="link" href="NMSetting.html" title="NMSetting">NMSetting</a> - <span class="lineart">╰──</span> NMSettingTeamPort -</pre> -</div> -<div class="refsect1"> <a name="NMSettingTeamPort.description"></a><h2>Description</h2> <p>The <a class="link" href="NMSettingTeamPort.html" title="NMSettingTeamPort"><span class="type">NMSettingTeamPort</span></a> object is a <a class="link" href="NMSetting.html" title="NMSetting"><span class="type">NMSetting</span></a> subclass that describes optional properties that apply to team ports.</p> @@ -298,7 +236,7 @@ nm_setting_team_port_get_config (<em class="parameter"><code><a class="link" hre </div> <div class="refsect3"> <a name="nm-setting-team-port-get-config.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingTeamPort.html#NMSettingTeamPort--config" title="The “config” property"><span class="type">“config”</span></a> property of the setting</p> +<p> the <a href="NMSettingTeamPort.html#NMSettingTeamPort--config"><span class="type">“config”</span></a> property of the setting</p> </div> </div> <hr> @@ -323,7 +261,7 @@ nm_setting_team_port_get_queue_id (<em class="parameter"><code><a class="link" h </div> <div class="refsect3"> <a name="nm-setting-team-port-get-queue-id.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingTeamPort.html#NMSettingTeamPort--queue-id" title="The “queue-id” property"><span class="type">“queue_id”</span></a> property of the setting</p> +<p> the <a href="NMSettingTeamPort.html#NMSettingTeamPort--queue-id"><span class="type">“queue_id”</span></a> property of the setting</p> </div> <p class="since">Since: 1.12</p> </div> @@ -349,7 +287,7 @@ nm_setting_team_port_get_prio (<em class="parameter"><code><a class="link" href= </div> <div class="refsect3"> <a name="nm-setting-team-port-get-prio.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingTeamPort.html#NMSettingTeamPort--prio" title="The “prio” property"><span class="type">“prio”</span></a> property of the setting</p> +<p> the <a href="NMSettingTeamPort.html#NMSettingTeamPort--prio"><span class="type">“prio”</span></a> property of the setting</p> </div> <p class="since">Since: 1.12</p> </div> @@ -375,7 +313,7 @@ nm_setting_team_port_get_sticky (<em class="parameter"><code><a class="link" hre </div> <div class="refsect3"> <a name="nm-setting-team-port-get-sticky.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingTeamPort.html#NMSettingTeamPort--sticky" title="The “sticky” property"><span class="type">“sticky”</span></a> property of the setting</p> +<p> the <a href="NMSettingTeamPort.html#NMSettingTeamPort--sticky"><span class="type">“sticky”</span></a> property of the setting</p> </div> <p class="since">Since: 1.12</p> </div> @@ -401,7 +339,7 @@ nm_setting_team_port_get_lacp_prio (<em class="parameter"><code><a class="link" </div> <div class="refsect3"> <a name="nm-setting-team-port-get-lacp-prio.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingTeamPort.html#NMSettingTeamPort--lacp-prio" title="The “lacp-prio” property"><span class="type">“lacp-prio”</span></a> property of the setting</p> +<p> the <a href="NMSettingTeamPort.html#NMSettingTeamPort--lacp-prio"><span class="type">“lacp-prio”</span></a> property of the setting</p> </div> <p class="since">Since: 1.12</p> </div> @@ -427,7 +365,7 @@ nm_setting_team_port_get_lacp_key (<em class="parameter"><code><a class="link" h </div> <div class="refsect3"> <a name="nm-setting-team-port-get-lacp-key.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingTeamPort.html#NMSettingTeamPort--lacp-key" title="The “lacp-key” property"><span class="type">“lacp-key”</span></a> property of the setting</p> +<p> the <a href="NMSettingTeamPort.html#NMSettingTeamPort--lacp-key"><span class="type">“lacp-key”</span></a> property of the setting</p> </div> <p class="since">Since: 1.12</p> </div> @@ -684,94 +622,6 @@ nm_setting_team_port_clear_link_watchers <pre class="programlisting">#define NM_SETTING_TEAM_PORT_LACP_PRIO_DEFAULT 255 </pre> </div> -<hr> -<div class="refsect2"> -<a name="NMSettingTeamPort-struct"></a><h3>NMSettingTeamPort</h3> -<pre class="programlisting">typedef struct _NMSettingTeamPort NMSettingTeamPort;</pre> -<p>Team Port Settings</p> -</div> -</div> -<div class="refsect1"> -<a name="NMSettingTeamPort.property-details"></a><h2>Property Details</h2> -<div class="refsect2"> -<a name="NMSettingTeamPort--config"></a><h3>The <code class="literal">“config”</code> property</h3> -<pre class="programlisting"> “config” <span class="type">char</span> *</pre> -<p>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.</p> -<p>Owner: NMSettingTeamPort</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingTeamPort--lacp-key"></a><h3>The <code class="literal">“lacp-key”</code> property</h3> -<pre class="programlisting"> “lacp-key” <span class="type">int</span></pre> -<p>Corresponds to the teamd ports.PORTIFNAME.lacp_key.</p> -<p>Owner: NMSettingTeamPort</p> -<p>Flags: Read / Write</p> -<p>Default value: -1</p> -<p class="since">Since: 1.12</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingTeamPort--lacp-prio"></a><h3>The <code class="literal">“lacp-prio”</code> property</h3> -<pre class="programlisting"> “lacp-prio” <span class="type">int</span></pre> -<p>Corresponds to the teamd ports.PORTIFNAME.lacp_prio.</p> -<p>Owner: NMSettingTeamPort</p> -<p>Flags: Read / Write</p> -<p>Default value: -1</p> -<p class="since">Since: 1.12</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingTeamPort--link-watchers"></a><h3>The <code class="literal">“link-watchers”</code> property</h3> -<pre class="programlisting"> “link-watchers” <a href="https://developer.gnome.org/glib/unstable/glib-Pointer-Arrays.html#GPtrArray"><span class="type">GPtrArray</span></a> *</pre> -<p>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.</p> -<p><span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> GPtrArray(NMTeamLinkWatcher)]</span></p> -<p>Owner: NMSettingTeamPort</p> -<p>Flags: Read / Write</p> -<p class="since">Since: 1.12</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingTeamPort--prio"></a><h3>The <code class="literal">“prio”</code> property</h3> -<pre class="programlisting"> “prio” <span class="type">int</span></pre> -<p>Corresponds to the teamd ports.PORTIFNAME.prio.</p> -<p>Owner: NMSettingTeamPort</p> -<p>Flags: Read / Write</p> -<p>Default value: 0</p> -<p class="since">Since: 1.12</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingTeamPort--queue-id"></a><h3>The <code class="literal">“queue-id”</code> property</h3> -<pre class="programlisting"> “queue-id” <span class="type">int</span></pre> -<p>Corresponds to the teamd ports.PORTIFNAME.queue_id. -When set to -1 means the parameter is skipped from the json config.</p> -<p>Owner: NMSettingTeamPort</p> -<p>Flags: Read / Write</p> -<p>Default value: -1</p> -<p class="since">Since: 1.12</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingTeamPort--sticky"></a><h3>The <code class="literal">“sticky”</code> property</h3> -<pre class="programlisting"> “sticky” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>Corresponds to the teamd ports.PORTIFNAME.sticky.</p> -<p>Owner: NMSettingTeamPort</p> -<p>Flags: Read / Write</p> -<p>Default value: FALSE</p> -<p class="since">Since: 1.12</p> -</div> </div> </div> <div class="footer"> diff --git a/docs/libnm/html/NMSettingTun.html b/docs/libnm/html/NMSettingTun.html index 71ee6d3c..3f8524fe 100644 --- a/docs/libnm/html/NMSettingTun.html +++ b/docs/libnm/html/NMSettingTun.html @@ -16,8 +16,7 @@ <td width="100%" align="left" class="shortcuts"> <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> <a href="#NMSettingTun.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> - <a href="#NMSettingTun.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties"> <span class="dim">|</span> - <a href="#NMSettingTun.properties" class="shortcut">Properties</a></span> + <a href="#NMSettingTun.object-hierarchy" class="shortcut">Object Hierarchy</a></span> </td> <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> <td><a accesskey="u" href="ch03.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> @@ -99,50 +98,6 @@ </table></div> </div> <div class="refsect1"> -<a name="NMSettingTun.properties"></a><h2>Properties</h2> -<div class="informaltable"><table class="informaltable" border="0"> -<colgroup> -<col width="150px" class="properties_type"> -<col width="300px" class="properties_name"> -<col width="200px" class="properties_flags"> -</colgroup> -<tbody> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingTun.html#NMSettingTun--group" title="The “group” property">group</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingTun.html#NMSettingTun--mode" title="The “mode” property">mode</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingTun.html#NMSettingTun--multi-queue" title="The “multi-queue” property">multi-queue</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingTun.html#NMSettingTun--owner" title="The “owner” property">owner</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingTun.html#NMSettingTun--pi" title="The “pi” property">pi</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingTun.html#NMSettingTun--vnet-hdr" title="The “vnet-hdr” property">vnet-hdr</a></td> -<td class="property_flags">Read / Write</td> -</tr> -</tbody> -</table></div> -</div> -<div class="refsect1"> <a name="NMSettingTun.other"></a><h2>Types and Values</h2> <div class="informaltable"><table class="informaltable" width="100%" border="0"> <colgroup> @@ -182,10 +137,6 @@ <td class="datatype_keyword">enum</td> <td class="function_name"><a class="link" href="NMSettingTun.html#NMSettingTunMode" title="enum NMSettingTunMode">NMSettingTunMode</a></td> </tr> -<tr> -<td class="datatype_keyword"> </td> -<td class="function_name"><a class="link" href="NMSettingTun.html#NMSettingTun-struct" title="NMSettingTun">NMSettingTun</a></td> -</tr> </tbody> </table></div> </div> @@ -193,9 +144,6 @@ <a name="NMSettingTun.object-hierarchy"></a><h2>Object Hierarchy</h2> <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html">GEnum</a> <span class="lineart">╰──</span> NMSettingTunMode - <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a> - <span class="lineart">╰──</span> <a class="link" href="NMSetting.html" title="NMSetting">NMSetting</a> - <span class="lineart">╰──</span> NMSettingTun </pre> </div> <div class="refsect1"> @@ -239,7 +187,7 @@ nm_setting_tun_get_mode (<em class="parameter"><code><a class="link" href="NMSet </div> <div class="refsect3"> <a name="nm-setting-tun-get-mode.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingTun.html#NMSettingTun--mode" title="The “mode” property"><span class="type">“mode”</span></a> property of the setting</p> +<p> the <a href="NMSettingTun.html#NMSettingTun--mode"><span class="type">“mode”</span></a> property of the setting</p> </div> <p class="since">Since: 1.2</p> </div> @@ -265,7 +213,7 @@ nm_setting_tun_get_owner (<em class="parameter"><code><a class="link" href="NMSe </div> <div class="refsect3"> <a name="nm-setting-tun-get-owner.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingTun.html#NMSettingTun--owner" title="The “owner” property"><span class="type">“owner”</span></a> property of the setting</p> +<p> the <a href="NMSettingTun.html#NMSettingTun--owner"><span class="type">“owner”</span></a> property of the setting</p> </div> <p class="since">Since: 1.2</p> </div> @@ -291,7 +239,7 @@ nm_setting_tun_get_group (<em class="parameter"><code><a class="link" href="NMSe </div> <div class="refsect3"> <a name="nm-setting-tun-get-group.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingTun.html#NMSettingTun--group" title="The “group” property"><span class="type">“group”</span></a> property of the setting</p> +<p> the <a href="NMSettingTun.html#NMSettingTun--group"><span class="type">“group”</span></a> property of the setting</p> </div> <p class="since">Since: 1.2</p> </div> @@ -317,7 +265,7 @@ nm_setting_tun_get_pi (<em class="parameter"><code><a class="link" href="NMSetti </div> <div class="refsect3"> <a name="nm-setting-tun-get-pi.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingTun.html#NMSettingTun--pi" title="The “pi” property"><span class="type">“pi”</span></a> property of the setting</p> +<p> the <a href="NMSettingTun.html#NMSettingTun--pi"><span class="type">“pi”</span></a> property of the setting</p> </div> <p class="since">Since: 1.2</p> </div> @@ -343,7 +291,7 @@ nm_setting_tun_get_vnet_hdr (<em class="parameter"><code><a class="link" href="N </div> <div class="refsect3"> <a name="nm-setting-tun-get-vnet-hdr.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingTun.html#NMSettingTun--vnet-hdr" title="The “vnet-hdr” property"><span class="type">“vnet_hdr”</span></a> property of the setting</p> +<p> the <a href="NMSettingTun.html#NMSettingTun--vnet-hdr"><span class="type">“vnet_hdr”</span></a> property of the setting</p> </div> <p class="since">Since: 1.2</p> </div> @@ -369,7 +317,7 @@ nm_setting_tun_get_multi_queue (<em class="parameter"><code><a class="link" href </div> <div class="refsect3"> <a name="nm-setting-tun-get-multi-queue.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingTun.html#NMSettingTun--multi-queue" title="The “multi-queue” property"><span class="type">“multi-queue”</span></a> property of the setting</p> +<p> the <a href="NMSettingTun.html#NMSettingTun--multi-queue"><span class="type">“multi-queue”</span></a> property of the setting</p> </div> <p class="since">Since: 1.2</p> </div> @@ -455,84 +403,6 @@ nm_setting_tun_get_multi_queue (<em class="parameter"><code><a class="link" href </table></div> </div> </div> -<hr> -<div class="refsect2"> -<a name="NMSettingTun-struct"></a><h3>NMSettingTun</h3> -<pre class="programlisting">typedef struct _NMSettingTun NMSettingTun;</pre> -<p>Tunnel Settings</p> -</div> -</div> -<div class="refsect1"> -<a name="NMSettingTun.property-details"></a><h2>Property Details</h2> -<div class="refsect2"> -<a name="NMSettingTun--group"></a><h3>The <code class="literal">“group”</code> property</h3> -<pre class="programlisting"> “group” <span class="type">char</span> *</pre> -<p>The group ID which will own the device. If set to <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> everyone -will be able to use the device.</p> -<p>Owner: NMSettingTun</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingTun--mode"></a><h3>The <code class="literal">“mode”</code> property</h3> -<pre class="programlisting"> “mode” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>The operating mode of the virtual device. Allowed values are -<a class="link" href="NMSettingTun.html#NM-SETTING-TUN-MODE-TUN:CAPS"><code class="literal">NM_SETTING_TUN_MODE_TUN</code></a> to create a layer 3 device and -<a class="link" href="NMSettingTun.html#NM-SETTING-TUN-MODE-TAP:CAPS"><code class="literal">NM_SETTING_TUN_MODE_TAP</code></a> to create an Ethernet-like layer 2 -one.</p> -<p>Owner: NMSettingTun</p> -<p>Flags: Read / Write</p> -<p>Default value: 1</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingTun--multi-queue"></a><h3>The <code class="literal">“multi-queue”</code> property</h3> -<pre class="programlisting"> “multi-queue” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>If the property is set to <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, the interface will support -multiple file descriptors (queues) to parallelize packet -sending or receiving. Otherwise, the interface will only -support a single queue.</p> -<p>Owner: NMSettingTun</p> -<p>Flags: Read / Write</p> -<p>Default value: FALSE</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingTun--owner"></a><h3>The <code class="literal">“owner”</code> property</h3> -<pre class="programlisting"> “owner” <span class="type">char</span> *</pre> -<p>The user ID which will own the device. If set to <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> everyone -will be able to use the device.</p> -<p>Owner: NMSettingTun</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingTun--pi"></a><h3>The <code class="literal">“pi”</code> property</h3> -<pre class="programlisting"> “pi” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>If <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> the interface will prepend a 4 byte header describing the -physical interface to the packets.</p> -<p>Owner: NMSettingTun</p> -<p>Flags: Read / Write</p> -<p>Default value: FALSE</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingTun--vnet-hdr"></a><h3>The <code class="literal">“vnet-hdr”</code> property</h3> -<pre class="programlisting"> “vnet-hdr” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>If <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> the IFF_VNET_HDR the tunnel packets will include a virtio -network header.</p> -<p>Owner: NMSettingTun</p> -<p>Flags: Read / Write</p> -<p>Default value: FALSE</p> -<p class="since">Since: 1.2</p> -</div> </div> </div> <div class="footer"> diff --git a/docs/libnm/html/NMSettingVlan.html b/docs/libnm/html/NMSettingVlan.html index 3f32377a..5486cd0d 100644 --- a/docs/libnm/html/NMSettingVlan.html +++ b/docs/libnm/html/NMSettingVlan.html @@ -16,8 +16,7 @@ <td width="100%" align="left" class="shortcuts"> <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> <a href="#NMSettingVlan.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> - <a href="#NMSettingVlan.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties"> <span class="dim">|</span> - <a href="#NMSettingVlan.properties" class="shortcut">Properties</a></span> + <a href="#NMSettingVlan.object-hierarchy" class="shortcut">Object Hierarchy</a></span> </td> <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> <td><a accesskey="u" href="ch03.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> @@ -140,44 +139,6 @@ </table></div> </div> <div class="refsect1"> -<a name="NMSettingVlan.properties"></a><h2>Properties</h2> -<div class="informaltable"><table class="informaltable" border="0"> -<colgroup> -<col width="150px" class="properties_type"> -<col width="300px" class="properties_name"> -<col width="200px" class="properties_flags"> -</colgroup> -<tbody> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></td> -<td class="property_name"><a class="link" href="NMSettingVlan.html#NMSettingVlan--egress-priority-map" title="The “egress-priority-map” property">egress-priority-map</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a class="link" href="NMSettingVlan.html#NMVlanFlags" title="enum NMVlanFlags"><span class="type">NMVlanFlags</span></a></td> -<td class="property_name"><a class="link" href="NMSettingVlan.html#NMSettingVlan--flags" title="The “flags” property">flags</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingVlan.html#NMSettingVlan--id" title="The “id” property">id</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></td> -<td class="property_name"><a class="link" href="NMSettingVlan.html#NMSettingVlan--ingress-priority-map" title="The “ingress-priority-map” property">ingress-priority-map</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingVlan.html#NMSettingVlan--parent" title="The “parent” property">parent</a></td> -<td class="property_flags">Read / Write</td> -</tr> -</tbody> -</table></div> -</div> -<div class="refsect1"> <a name="NMSettingVlan.other"></a><h2>Types and Values</h2> <div class="informaltable"><table class="informaltable" width="100%" border="0"> <colgroup> @@ -210,10 +171,6 @@ <td class="function_name"><a class="link" href="NMSettingVlan.html#NM-SETTING-VLAN-EGRESS-PRIORITY-MAP:CAPS" title="NM_SETTING_VLAN_EGRESS_PRIORITY_MAP">NM_SETTING_VLAN_EGRESS_PRIORITY_MAP</a></td> </tr> <tr> -<td class="datatype_keyword"> </td> -<td class="function_name"><a class="link" href="NMSettingVlan.html#NMSettingVlan-struct" title="NMSettingVlan">NMSettingVlan</a></td> -</tr> -<tr> <td class="datatype_keyword">enum</td> <td class="function_name"><a class="link" href="NMSettingVlan.html#NMVlanPriorityMap" title="enum NMVlanPriorityMap">NMVlanPriorityMap</a></td> </tr> @@ -234,9 +191,6 @@ <span class="lineart">╰──</span> NMVlanPriorityMap <a href="/usr/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html">GFlags</a> <span class="lineart">╰──</span> NMVlanFlags - <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a> - <span class="lineart">╰──</span> <a class="link" href="NMSetting.html" title="NMSetting">NMSetting</a> - <span class="lineart">╰──</span> NMSettingVlan </pre> </div> <div class="refsect1"> @@ -279,7 +233,7 @@ nm_setting_vlan_get_parent (<em class="parameter"><code><a class="link" href="NM </div> <div class="refsect3"> <a name="nm-setting-vlan-get-parent.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingVlan.html#NMSettingVlan--parent" title="The “parent” property"><span class="type">“parent”</span></a> property of the setting</p> +<p> the <a href="NMSettingVlan.html#NMSettingVlan--parent"><span class="type">“parent”</span></a> property of the setting</p> </div> </div> <hr> @@ -304,7 +258,7 @@ nm_setting_vlan_get_id (<em class="parameter"><code><a class="link" href="NMSett </div> <div class="refsect3"> <a name="nm-setting-vlan-get-id.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingVlan.html#NMSettingVlan--id" title="The “id” property"><span class="type">“id”</span></a> property of the setting</p> +<p> the <a href="NMSettingVlan.html#NMSettingVlan--id"><span class="type">“id”</span></a> property of the setting</p> </div> </div> <hr> @@ -329,7 +283,7 @@ nm_setting_vlan_get_flags (<em class="parameter"><code><a class="link" href="NMS </div> <div class="refsect3"> <a name="nm-setting-vlan-get-flags.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingVlan.html#NMSettingVlan--flags" title="The “flags” property"><span class="type">“flags”</span></a> property of the setting</p> +<p> the <a href="NMSettingVlan.html#NMSettingVlan--flags"><span class="type">“flags”</span></a> property of the setting</p> </div> </div> <hr> @@ -339,7 +293,7 @@ nm_setting_vlan_get_flags (<em class="parameter"><code><a class="link" href="NMS nm_setting_vlan_get_num_priorities (<em class="parameter"><code><a class="link" href="NMSettingVlan.html" title="NMSettingVlan"><span class="type">NMSettingVlan</span></a> *setting</code></em>, <em class="parameter"><code><a class="link" href="NMSettingVlan.html#NMVlanPriorityMap" title="enum NMVlanPriorityMap"><span class="type">NMVlanPriorityMap</span></a> map</code></em>);</pre> <p>Returns the number of entries in the -<a class="link" href="NMSettingVlan.html#NMSettingVlan--ingress-priority-map" title="The “ingress-priority-map” property"><span class="type">“ingress_priority_map”</span></a> or <a class="link" href="NMSettingVlan.html#NMSettingVlan--egress-priority-map" title="The “egress-priority-map” property"><span class="type">“egress_priority_map”</span></a> +<a href="NMSettingVlan.html#NMSettingVlan--ingress-priority-map"><span class="type">“ingress_priority_map”</span></a> or <a href="NMSettingVlan.html#NMSettingVlan--egress-priority-map"><span class="type">“egress_priority_map”</span></a> properties of this setting.</p> <div class="refsect3"> <a name="nm-setting-vlan-get-num-priorities.parameters"></a><h4>Parameters</h4> @@ -377,8 +331,8 @@ nm_setting_vlan_get_priority (<em class="parameter"><code><a class="link" href=" <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> idx</code></em>, <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> *out_from</code></em>, <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> *out_to</code></em>);</pre> -<p>Retrieve one of the entries of the <a class="link" href="NMSettingVlan.html#NMSettingVlan--ingress-priority-map" title="The “ingress-priority-map” property"><span class="type">“ingress_priority_map”</span></a> -or <a class="link" href="NMSettingVlan.html#NMSettingVlan--egress-priority-map" title="The “egress-priority-map” property"><span class="type">“egress_priority_map”</span></a> properties of this setting.</p> +<p>Retrieve one of the entries of the <a href="NMSettingVlan.html#NMSettingVlan--ingress-priority-map"><span class="type">“ingress_priority_map”</span></a> +or <a href="NMSettingVlan.html#NMSettingVlan--egress-priority-map"><span class="type">“egress_priority_map”</span></a> properties of this setting.</p> <div class="refsect3"> <a name="nm-setting-vlan-get-priority.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -430,8 +384,8 @@ nm_setting_vlan_add_priority (<em class="parameter"><code><a class="link" href=" <em class="parameter"><code><a class="link" href="NMSettingVlan.html#NMVlanPriorityMap" title="enum NMVlanPriorityMap"><span class="type">NMVlanPriorityMap</span></a> map</code></em>, <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> from</code></em>, <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> to</code></em>);</pre> -<p>Adds a priority mapping to the <a class="link" href="NMSettingVlan.html#NMSettingVlan--ingress-priority-map" title="The “ingress-priority-map” property"><span class="type">“ingress_priority_map”</span></a> or -<a class="link" href="NMSettingVlan.html#NMSettingVlan--egress-priority-map" title="The “egress-priority-map” property"><span class="type">“egress_priority_map”</span></a> properties of the setting. If <em class="parameter"><code>from</code></em> +<p>Adds a priority mapping to the <a href="NMSettingVlan.html#NMSettingVlan--ingress-priority-map"><span class="type">“ingress_priority_map”</span></a> or +<a href="NMSettingVlan.html#NMSettingVlan--egress-priority-map"><span class="type">“egress_priority_map”</span></a> properties of the setting. If <em class="parameter"><code>from</code></em> is already in the given priority map, this function will overwrite the existing entry with the new <em class="parameter"><code>to</code></em> @@ -494,7 +448,7 @@ nm_setting_vlan_remove_priority (<em class="parameter"><code><a class="link" hre <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> idx</code></em>);</pre> <p>Removes the priority map at index <em class="parameter"><code>idx</code></em> from the -<a class="link" href="NMSettingVlan.html#NMSettingVlan--ingress-priority-map" title="The “ingress-priority-map” property"><span class="type">“ingress_priority_map”</span></a> or <a class="link" href="NMSettingVlan.html#NMSettingVlan--egress-priority-map" title="The “egress-priority-map” property"><span class="type">“egress_priority_map”</span></a> +<a href="NMSettingVlan.html#NMSettingVlan--ingress-priority-map"><span class="type">“ingress_priority_map”</span></a> or <a href="NMSettingVlan.html#NMSettingVlan--egress-priority-map"><span class="type">“egress_priority_map”</span></a> properties.</p> <div class="refsect3"> <a name="nm-setting-vlan-remove-priority.parameters"></a><h4>Parameters</h4> @@ -535,8 +489,8 @@ nm_setting_vlan_remove_priority_by_value <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint32"><span class="type">guint32</span></a> to</code></em>);</pre> <p>Removes the priority map <em class="parameter"><code>form</code></em> :<em class="parameter"><code>to</code></em> - from the <a class="link" href="NMSettingVlan.html#NMSettingVlan--ingress-priority-map" title="The “ingress-priority-map” property"><span class="type">“ingress_priority_map”</span></a> -or <a class="link" href="NMSettingVlan.html#NMSettingVlan--egress-priority-map" title="The “egress-priority-map” property"><span class="type">“egress_priority_map”</span></a> (according to <em class="parameter"><code>map</code></em> + from the <a href="NMSettingVlan.html#NMSettingVlan--ingress-priority-map"><span class="type">“ingress_priority_map”</span></a> +or <a href="NMSettingVlan.html#NMSettingVlan--egress-priority-map"><span class="type">“egress_priority_map”</span></a> (according to <em class="parameter"><code>map</code></em> argument) properties.</p> <div class="refsect3"> @@ -587,8 +541,8 @@ nm_setting_vlan_remove_priority_str_by_value <em class="parameter"><code><a class="link" href="NMSettingVlan.html#NMVlanPriorityMap" title="enum NMVlanPriorityMap"><span class="type">NMVlanPriorityMap</span></a> map</code></em>, <em class="parameter"><code>const <span class="type">char</span> *str</code></em>);</pre> <p>Removes the priority map <em class="parameter"><code>str</code></em> - from the <a class="link" href="NMSettingVlan.html#NMSettingVlan--ingress-priority-map" title="The “ingress-priority-map” property"><span class="type">“ingress_priority_map”</span></a> -or <a class="link" href="NMSettingVlan.html#NMSettingVlan--egress-priority-map" title="The “egress-priority-map” property"><span class="type">“egress_priority_map”</span></a> (according to <em class="parameter"><code>map</code></em> + from the <a href="NMSettingVlan.html#NMSettingVlan--ingress-priority-map"><span class="type">“ingress_priority_map”</span></a> +or <a href="NMSettingVlan.html#NMSettingVlan--egress-priority-map"><span class="type">“egress_priority_map”</span></a> (according to <em class="parameter"><code>map</code></em> argument) properties.</p> <div class="refsect3"> @@ -629,8 +583,8 @@ properties.</p> <pre class="programlisting"><span class="returnvalue">void</span> nm_setting_vlan_clear_priorities (<em class="parameter"><code><a class="link" href="NMSettingVlan.html" title="NMSettingVlan"><span class="type">NMSettingVlan</span></a> *setting</code></em>, <em class="parameter"><code><a class="link" href="NMSettingVlan.html#NMVlanPriorityMap" title="enum NMVlanPriorityMap"><span class="type">NMVlanPriorityMap</span></a> map</code></em>);</pre> -<p>Clear all the entries from <a class="link" href="NMSettingVlan.html#NMSettingVlan--ingress-priority-map" title="The “ingress-priority-map” property"><span class="type">“ingress_priority_map”</span></a> or -<a class="link" href="NMSettingVlan.html#NMSettingVlan--egress-priority-map" title="The “egress-priority-map” property"><span class="type">“egress_priority_map”</span></a> properties.</p> +<p>Clear all the entries from <a href="NMSettingVlan.html#NMSettingVlan--ingress-priority-map"><span class="type">“ingress_priority_map”</span></a> or +<a href="NMSettingVlan.html#NMSettingVlan--egress-priority-map"><span class="type">“egress_priority_map”</span></a> properties.</p> <div class="refsect3"> <a name="nm-setting-vlan-clear-priorities.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -661,8 +615,8 @@ nm_setting_vlan_clear_priorities (<em class="parameter"><code><a class="link" hr nm_setting_vlan_add_priority_str (<em class="parameter"><code><a class="link" href="NMSettingVlan.html" title="NMSettingVlan"><span class="type">NMSettingVlan</span></a> *setting</code></em>, <em class="parameter"><code><a class="link" href="NMSettingVlan.html#NMVlanPriorityMap" title="enum NMVlanPriorityMap"><span class="type">NMVlanPriorityMap</span></a> map</code></em>, <em class="parameter"><code>const <span class="type">char</span> *str</code></em>);</pre> -<p>Adds a priority map entry into either the <a class="link" href="NMSettingVlan.html#NMSettingVlan--ingress-priority-map" title="The “ingress-priority-map” property"><span class="type">“ingress_priority_map”</span></a> -or the <a class="link" href="NMSettingVlan.html#NMSettingVlan--egress-priority-map" title="The “egress-priority-map” property"><span class="type">“egress_priority_map”</span></a> properties. The priority map maps +<p>Adds a priority map entry into either the <a href="NMSettingVlan.html#NMSettingVlan--ingress-priority-map"><span class="type">“ingress_priority_map”</span></a> +or the <a href="NMSettingVlan.html#NMSettingVlan--egress-priority-map"><span class="type">“egress_priority_map”</span></a> properties. The priority map maps the Linux SKB priorities to 802.1p priorities.</p> <div class="refsect3"> <a name="nm-setting-vlan-add-priority-str.parameters"></a><h4>Parameters</h4> @@ -738,12 +692,6 @@ is not a valid mapping.</p> </div> <hr> <div class="refsect2"> -<a name="NMSettingVlan-struct"></a><h3>NMSettingVlan</h3> -<pre class="programlisting">typedef struct _NMSettingVlan NMSettingVlan;</pre> -<p>VLAN Settings</p> -</div> -<hr> -<div class="refsect2"> <a name="NMVlanPriorityMap"></a><h3>enum NMVlanPriorityMap</h3> <p>A selector for traffic priority maps; these map Linux SKB priorities to 802.1p priorities used in VLANs.</p> @@ -830,69 +778,6 @@ itself with its switch</p> <pre class="programlisting">#define NM_VLAN_FLAGS_ALL</pre> </div> </div> -<div class="refsect1"> -<a name="NMSettingVlan.property-details"></a><h2>Property Details</h2> -<div class="refsect2"> -<a name="NMSettingVlan--egress-priority-map"></a><h3>The <code class="literal">“egress-priority-map”</code> property</h3> -<pre class="programlisting"> “egress-priority-map” <a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></pre> -<p>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".</p> -<p>Owner: NMSettingVlan</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingVlan--flags"></a><h3>The <code class="literal">“flags”</code> property</h3> -<pre class="programlisting"> “flags” <a class="link" href="NMSettingVlan.html#NMVlanFlags" title="enum NMVlanFlags"><span class="type">NMVlanFlags</span></a></pre> -<p>One or more flags which control the behavior and features of the VLAN -interface. Flags include <a class="link" href="NMSettingVlan.html#NM-VLAN-FLAG-REORDER-HEADERS:CAPS"><code class="literal">NM_VLAN_FLAG_REORDER_HEADERS</code></a> (reordering of -output packet headers), <a class="link" href="NMSettingVlan.html#NM-VLAN-FLAG-GVRP:CAPS"><code class="literal">NM_VLAN_FLAG_GVRP</code></a> (use of the GVRP protocol), -and <a class="link" href="NMSettingVlan.html#NM-VLAN-FLAG-LOOSE-BINDING:CAPS"><code class="literal">NM_VLAN_FLAG_LOOSE_BINDING</code></a> (loose binding of the interface to its -master device's operating state). <a class="link" href="NMSettingVlan.html#NM-VLAN-FLAG-MVRP:CAPS"><code class="literal">NM_VLAN_FLAG_MVRP</code></a> (use of the MVRP -protocol).</p> -<p>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.</p> -<p>Owner: NMSettingVlan</p> -<p>Flags: Read / Write</p> -<p>Default value: NM_VLAN_FLAG_REORDER_HEADERS</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingVlan--id"></a><h3>The <code class="literal">“id”</code> property</h3> -<pre class="programlisting"> “id” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>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.</p> -<p>Owner: NMSettingVlan</p> -<p>Flags: Read / Write</p> -<p>Allowed values: <= 4095</p> -<p>Default value: 0</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingVlan--ingress-priority-map"></a><h3>The <code class="literal">“ingress-priority-map”</code> property</h3> -<pre class="programlisting"> “ingress-priority-map” <a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></pre> -<p>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".</p> -<p>Owner: NMSettingVlan</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingVlan--parent"></a><h3>The <code class="literal">“parent”</code> property</h3> -<pre class="programlisting"> “parent” <span class="type">char</span> *</pre> -<p>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 <a class="link" href="NMSettingWired.html" title="NMSettingWired"><span class="type">NMSettingWired</span></a> setting -with a <a class="link" href="NMSettingWired.html#NMSettingWired--mac-address" title="The “mac-address” property"><span class="type">“mac-address”</span></a> property.</p> -<p>Owner: NMSettingVlan</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -</div> </div> <div class="footer"> <hr>Generated by GTK-Doc V1.33.0</div> diff --git a/docs/libnm/html/NMSettingVpn.html b/docs/libnm/html/NMSettingVpn.html index 0e4be1fe..e73a701b 100644 --- a/docs/libnm/html/NMSettingVpn.html +++ b/docs/libnm/html/NMSettingVpn.html @@ -15,9 +15,7 @@ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle"> <td width="100%" align="left" class="shortcuts"> <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> - <a href="#NMSettingVpn.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> - <a href="#NMSettingVpn.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties"> <span class="dim">|</span> - <a href="#NMSettingVpn.properties" class="shortcut">Properties</a></span> + <a href="#NMSettingVpn.description" class="shortcut">Description</a></span> </td> <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> <td><a accesskey="u" href="ch03.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> @@ -183,52 +181,6 @@ </table></div> </div> <div class="refsect1"> -<a name="NMSettingVpn.properties"></a><h2>Properties</h2> -<div class="informaltable"><table class="informaltable" border="0"> -<colgroup> -<col width="150px" class="properties_type"> -<col width="300px" class="properties_name"> -<col width="200px" class="properties_flags"> -</colgroup> -<tbody> -<tr> -<td class="property_type"> -<a href="https://developer.gnome.org/glib/unstable/glib-Hash-Tables.html#GHashTable"><span class="type">GHashTable</span></a> *</td> -<td class="property_name"><a class="link" href="NMSettingVpn.html#NMSettingVpn--data" title="The “data” property">data</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingVpn.html#NMSettingVpn--persistent" title="The “persistent” property">persistent</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<a href="https://developer.gnome.org/glib/unstable/glib-Hash-Tables.html#GHashTable"><span class="type">GHashTable</span></a> *</td> -<td class="property_name"><a class="link" href="NMSettingVpn.html#NMSettingVpn--secrets" title="The “secrets” property">secrets</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingVpn.html#NMSettingVpn--service-type" title="The “service-type” property">service-type</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingVpn.html#NMSettingVpn--timeout" title="The “timeout” property">timeout</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingVpn.html#NMSettingVpn--user-name" title="The “user-name” property">user-name</a></td> -<td class="property_flags">Read / Write</td> -</tr> -</tbody> -</table></div> -</div> -<div class="refsect1"> <a name="NMSettingVpn.other"></a><h2>Types and Values</h2> <div class="informaltable"><table class="informaltable" width="100%" border="0"> <colgroup> @@ -264,21 +216,10 @@ <td class="define_keyword">#define</td> <td class="function_name"><a class="link" href="NMSettingVpn.html#NM-SETTING-VPN-TIMEOUT:CAPS" title="NM_SETTING_VPN_TIMEOUT">NM_SETTING_VPN_TIMEOUT</a></td> </tr> -<tr> -<td class="datatype_keyword"> </td> -<td class="function_name"><a class="link" href="NMSettingVpn.html#NMSettingVpn-struct" title="NMSettingVpn">NMSettingVpn</a></td> -</tr> </tbody> </table></div> </div> <div class="refsect1"> -<a name="NMSettingVpn.object-hierarchy"></a><h2>Object Hierarchy</h2> -<pre class="screen"> <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a> - <span class="lineart">╰──</span> <a class="link" href="NMSetting.html" title="NMSetting">NMSetting</a> - <span class="lineart">╰──</span> NMSettingVpn -</pre> -</div> -<div class="refsect1"> <a name="NMSettingVpn.description"></a><h2>Description</h2> <p>The <a class="link" href="NMSettingVpn.html" title="NMSettingVpn"><span class="type">NMSettingVpn</span></a> object is a <a class="link" href="NMSetting.html" title="NMSetting"><span class="type">NMSetting</span></a> subclass that describes properties necessary for connection to Virtual Private Networks. NetworkManager uses @@ -386,7 +327,7 @@ nm_setting_vpn_get_user_name (<em class="parameter"><code><a class="link" href=" </div> <div class="refsect3"> <a name="nm-setting-vpn-get-user-name.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingVpn.html#NMSettingVpn--user-name" title="The “user-name” property"><span class="type">“user-name”</span></a> property of the setting</p> +<p> the <a href="NMSettingVpn.html#NMSettingVpn--user-name"><span class="type">“user-name”</span></a> property of the setting</p> </div> </div> <hr> @@ -411,7 +352,7 @@ nm_setting_vpn_get_persistent (<em class="parameter"><code><a class="link" href= </div> <div class="refsect3"> <a name="nm-setting-vpn-get-persistent.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingVpn.html#NMSettingVpn--persistent" title="The “persistent” property"><span class="type">“persistent”</span></a> property of the setting</p> +<p> the <a href="NMSettingVpn.html#NMSettingVpn--persistent"><span class="type">“persistent”</span></a> property of the setting</p> </div> </div> <hr> @@ -881,7 +822,7 @@ nm_setting_vpn_get_timeout (<em class="parameter"><code><a class="link" href="NM </div> <div class="refsect3"> <a name="nm-setting-vpn-get-timeout.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingVpn.html#NMSettingVpn--timeout" title="The “timeout” property"><span class="type">“timeout”</span></a> property of the setting</p> +<p> the <a href="NMSettingVpn.html#NMSettingVpn--timeout"><span class="type">“timeout”</span></a> property of the setting</p> </div> <p class="since">Since: 1.2</p> </div> @@ -929,78 +870,6 @@ nm_setting_vpn_get_timeout (<em class="parameter"><code><a class="link" href="NM <pre class="programlisting">#define NM_SETTING_VPN_TIMEOUT "timeout" </pre> </div> -<hr> -<div class="refsect2"> -<a name="NMSettingVpn-struct"></a><h3>NMSettingVpn</h3> -<pre class="programlisting">typedef struct _NMSettingVpn NMSettingVpn;</pre> -<p>VPN Settings</p> -</div> -</div> -<div class="refsect1"> -<a name="NMSettingVpn.property-details"></a><h2>Property Details</h2> -<div class="refsect2"> -<a name="NMSettingVpn--data"></a><h3>The <code class="literal">“data”</code> property</h3> -<pre class="programlisting"> “data” <a href="https://developer.gnome.org/glib/unstable/glib-Hash-Tables.html#GHashTable"><span class="type">GHashTable</span></a> *</pre> -<p>Owner: NMSettingVpn</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingVpn--persistent"></a><h3>The <code class="literal">“persistent”</code> property</h3> -<pre class="programlisting"> “persistent” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>If the VPN service supports persistence, and this property is <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, -the VPN will attempt to stay connected across link changes and outages, -until explicitly disconnected.</p> -<p>Owner: NMSettingVpn</p> -<p>Flags: Read / Write</p> -<p>Default value: FALSE</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingVpn--secrets"></a><h3>The <code class="literal">“secrets”</code> property</h3> -<pre class="programlisting"> “secrets” <a href="https://developer.gnome.org/glib/unstable/glib-Hash-Tables.html#GHashTable"><span class="type">GHashTable</span></a> *</pre> -<p>Owner: NMSettingVpn</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingVpn--service-type"></a><h3>The <code class="literal">“service-type”</code> property</h3> -<pre class="programlisting"> “service-type” <span class="type">char</span> *</pre> -<p>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.</p> -<p>Owner: NMSettingVpn</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingVpn--timeout"></a><h3>The <code class="literal">“timeout”</code> property</h3> -<pre class="programlisting"> “timeout” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>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.</p> -<p>Owner: NMSettingVpn</p> -<p>Flags: Read / Write</p> -<p>Default value: 0</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingVpn--user-name"></a><h3>The <code class="literal">“user-name”</code> property</h3> -<pre class="programlisting"> “user-name” <span class="type">char</span> *</pre> -<p>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.</p> -<p>Owner: NMSettingVpn</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> </div> </div> <div class="footer"> diff --git a/docs/libnm/html/NMSettingVxlan.html b/docs/libnm/html/NMSettingVxlan.html index b722e1f9..69a2a260 100644 --- a/docs/libnm/html/NMSettingVxlan.html +++ b/docs/libnm/html/NMSettingVxlan.html @@ -15,9 +15,7 @@ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle"> <td width="100%" align="left" class="shortcuts"> <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> - <a href="#NMSettingVxlan.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> - <a href="#NMSettingVxlan.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties"> <span class="dim">|</span> - <a href="#NMSettingVxlan.properties" class="shortcut">Properties</a></span> + <a href="#NMSettingVxlan.description" class="shortcut">Description</a></span> </td> <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> <td><a accesskey="u" href="ch03.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> @@ -178,101 +176,6 @@ </table></div> </div> <div class="refsect1"> -<a name="NMSettingVxlan.properties"></a><h2>Properties</h2> -<div class="informaltable"><table class="informaltable" border="0"> -<colgroup> -<col width="150px" class="properties_type"> -<col width="300px" class="properties_name"> -<col width="200px" class="properties_flags"> -</colgroup> -<tbody> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingVxlan.html#NMSettingVxlan--ageing" title="The “ageing” property">ageing</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingVxlan.html#NMSettingVxlan--destination-port" title="The “destination-port” property">destination-port</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingVxlan.html#NMSettingVxlan--id" title="The “id” property">id</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingVxlan.html#NMSettingVxlan--l2-miss" title="The “l2-miss” property">l2-miss</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingVxlan.html#NMSettingVxlan--l3-miss" title="The “l3-miss” property">l3-miss</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingVxlan.html#NMSettingVxlan--learning" title="The “learning” property">learning</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingVxlan.html#NMSettingVxlan--limit" title="The “limit” property">limit</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingVxlan.html#NMSettingVxlan--local" title="The “local” property">local</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingVxlan.html#NMSettingVxlan--parent" title="The “parent” property">parent</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingVxlan.html#NMSettingVxlan--proxy" title="The “proxy” property">proxy</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingVxlan.html#NMSettingVxlan--remote" title="The “remote” property">remote</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingVxlan.html#NMSettingVxlan--rsc" title="The “rsc” property">rsc</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingVxlan.html#NMSettingVxlan--source-port-max" title="The “source-port-max” property">source-port-max</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingVxlan.html#NMSettingVxlan--source-port-min" title="The “source-port-min” property">source-port-min</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingVxlan.html#NMSettingVxlan--tos" title="The “tos” property">tos</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingVxlan.html#NMSettingVxlan--ttl" title="The “ttl” property">ttl</a></td> -<td class="property_flags">Read / Write</td> -</tr> -</tbody> -</table></div> -</div> -<div class="refsect1"> <a name="NMSettingVxlan.other"></a><h2>Types and Values</h2> <div class="informaltable"><table class="informaltable" width="100%" border="0"> <colgroup> @@ -348,21 +251,10 @@ <td class="define_keyword">#define</td> <td class="function_name"><a class="link" href="NMSettingVxlan.html#NM-SETTING-VXLAN-L3-MISS:CAPS" title="NM_SETTING_VXLAN_L3_MISS">NM_SETTING_VXLAN_L3_MISS</a></td> </tr> -<tr> -<td class="datatype_keyword"> </td> -<td class="function_name"><a class="link" href="NMSettingVxlan.html#NMSettingVxlan-struct" title="NMSettingVxlan">NMSettingVxlan</a></td> -</tr> </tbody> </table></div> </div> <div class="refsect1"> -<a name="NMSettingVxlan.object-hierarchy"></a><h2>Object Hierarchy</h2> -<pre class="screen"> <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a> - <span class="lineart">╰──</span> <a class="link" href="NMSetting.html" title="NMSetting">NMSetting</a> - <span class="lineart">╰──</span> NMSettingVxlan -</pre> -</div> -<div class="refsect1"> <a name="NMSettingVxlan.description"></a><h2>Description</h2> <p>The <a class="link" href="NMSettingVxlan.html" title="NMSettingVxlan"><span class="type">NMSettingVxlan</span></a> object is a <a class="link" href="NMSetting.html" title="NMSetting"><span class="type">NMSetting</span></a> subclass that describes properties necessary for connection to VXLAN interfaces.</p> @@ -403,7 +295,7 @@ nm_setting_vxlan_get_parent (<em class="parameter"><code><a class="link" href="N </div> <div class="refsect3"> <a name="nm-setting-vxlan-get-parent.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingVxlan.html#NMSettingVxlan--parent" title="The “parent” property"><span class="type">“parent”</span></a> property of the setting</p> +<p> the <a href="NMSettingVxlan.html#NMSettingVxlan--parent"><span class="type">“parent”</span></a> property of the setting</p> </div> <p class="since">Since: 1.2</p> </div> @@ -429,7 +321,7 @@ nm_setting_vxlan_get_id (<em class="parameter"><code><a class="link" href="NMSet </div> <div class="refsect3"> <a name="nm-setting-vxlan-get-id.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingVxlan.html#NMSettingVxlan--id" title="The “id” property"><span class="type">“id”</span></a> property of the setting</p> +<p> the <a href="NMSettingVxlan.html#NMSettingVxlan--id"><span class="type">“id”</span></a> property of the setting</p> </div> <p class="since">Since: 1.2</p> </div> @@ -455,7 +347,7 @@ nm_setting_vxlan_get_local (<em class="parameter"><code><a class="link" href="NM </div> <div class="refsect3"> <a name="nm-setting-vxlan-get-local.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingVxlan.html#NMSettingVxlan--local" title="The “local” property"><span class="type">“local”</span></a> property of the setting</p> +<p> the <a href="NMSettingVxlan.html#NMSettingVxlan--local"><span class="type">“local”</span></a> property of the setting</p> </div> <p class="since">Since: 1.2</p> </div> @@ -481,7 +373,7 @@ nm_setting_vxlan_get_remote (<em class="parameter"><code><a class="link" href="N </div> <div class="refsect3"> <a name="nm-setting-vxlan-get-remote.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingVxlan.html#NMSettingVxlan--remote" title="The “remote” property"><span class="type">“remote”</span></a> property of the setting</p> +<p> the <a href="NMSettingVxlan.html#NMSettingVxlan--remote"><span class="type">“remote”</span></a> property of the setting</p> </div> <p class="since">Since: 1.2</p> </div> @@ -507,7 +399,7 @@ nm_setting_vxlan_get_source_port_min (<em class="parameter"><code><a class="link </div> <div class="refsect3"> <a name="nm-setting-vxlan-get-source-port-min.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingVxlan.html#NMSettingVxlan--source-port-min" title="The “source-port-min” property"><span class="type">“source-port-min”</span></a> property of the setting</p> +<p> the <a href="NMSettingVxlan.html#NMSettingVxlan--source-port-min"><span class="type">“source-port-min”</span></a> property of the setting</p> </div> <p class="since">Since: 1.2</p> </div> @@ -533,7 +425,7 @@ nm_setting_vxlan_get_source_port_max (<em class="parameter"><code><a class="link </div> <div class="refsect3"> <a name="nm-setting-vxlan-get-source-port-max.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingVxlan.html#NMSettingVxlan--source-port-max" title="The “source-port-max” property"><span class="type">“source-port-max”</span></a> property of the setting</p> +<p> the <a href="NMSettingVxlan.html#NMSettingVxlan--source-port-max"><span class="type">“source-port-max”</span></a> property of the setting</p> </div> <p class="since">Since: 1.2</p> </div> @@ -559,7 +451,7 @@ nm_setting_vxlan_get_destination_port (<em class="parameter"><code><a class="lin </div> <div class="refsect3"> <a name="nm-setting-vxlan-get-destination-port.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingVxlan.html#NMSettingVxlan--destination-port" title="The “destination-port” property"><span class="type">“destination-port”</span></a> property of the setting</p> +<p> the <a href="NMSettingVxlan.html#NMSettingVxlan--destination-port"><span class="type">“destination-port”</span></a> property of the setting</p> </div> <p class="since">Since: 1.2</p> </div> @@ -585,7 +477,7 @@ nm_setting_vxlan_get_tos (<em class="parameter"><code><a class="link" href="NMSe </div> <div class="refsect3"> <a name="nm-setting-vxlan-get-tos.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingVxlan.html#NMSettingVxlan--tos" title="The “tos” property"><span class="type">“tos”</span></a> property of the setting</p> +<p> the <a href="NMSettingVxlan.html#NMSettingVxlan--tos"><span class="type">“tos”</span></a> property of the setting</p> </div> <p class="since">Since: 1.2</p> </div> @@ -611,7 +503,7 @@ nm_setting_vxlan_get_ttl (<em class="parameter"><code><a class="link" href="NMSe </div> <div class="refsect3"> <a name="nm-setting-vxlan-get-ttl.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingVxlan.html#NMSettingVxlan--ttl" title="The “ttl” property"><span class="type">“ttl”</span></a> property of the setting</p> +<p> the <a href="NMSettingVxlan.html#NMSettingVxlan--ttl"><span class="type">“ttl”</span></a> property of the setting</p> </div> <p class="since">Since: 1.2</p> </div> @@ -637,7 +529,7 @@ nm_setting_vxlan_get_ageing (<em class="parameter"><code><a class="link" href="N </div> <div class="refsect3"> <a name="nm-setting-vxlan-get-ageing.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingVxlan.html#NMSettingVxlan--ageing" title="The “ageing” property"><span class="type">“ageing”</span></a> property of the setting</p> +<p> the <a href="NMSettingVxlan.html#NMSettingVxlan--ageing"><span class="type">“ageing”</span></a> property of the setting</p> </div> <p class="since">Since: 1.2</p> </div> @@ -663,7 +555,7 @@ nm_setting_vxlan_get_limit (<em class="parameter"><code><a class="link" href="NM </div> <div class="refsect3"> <a name="nm-setting-vxlan-get-limit.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingVxlan.html#NMSettingVxlan--limit" title="The “limit” property"><span class="type">“limit”</span></a> property of the setting</p> +<p> the <a href="NMSettingVxlan.html#NMSettingVxlan--limit"><span class="type">“limit”</span></a> property of the setting</p> </div> <p class="since">Since: 1.2</p> </div> @@ -689,7 +581,7 @@ nm_setting_vxlan_get_proxy (<em class="parameter"><code><a class="link" href="NM </div> <div class="refsect3"> <a name="nm-setting-vxlan-get-proxy.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingVxlan.html#NMSettingVxlan--proxy" title="The “proxy” property"><span class="type">“proxy”</span></a> property of the setting</p> +<p> the <a href="NMSettingVxlan.html#NMSettingVxlan--proxy"><span class="type">“proxy”</span></a> property of the setting</p> </div> <p class="since">Since: 1.2</p> </div> @@ -715,7 +607,7 @@ nm_setting_vxlan_get_learning (<em class="parameter"><code><a class="link" href= </div> <div class="refsect3"> <a name="nm-setting-vxlan-get-learning.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingVxlan.html#NMSettingVxlan--learning" title="The “learning” property"><span class="type">“learning”</span></a> property of the setting</p> +<p> the <a href="NMSettingVxlan.html#NMSettingVxlan--learning"><span class="type">“learning”</span></a> property of the setting</p> </div> <p class="since">Since: 1.2</p> </div> @@ -741,7 +633,7 @@ nm_setting_vxlan_get_rsc (<em class="parameter"><code><a class="link" href="NMSe </div> <div class="refsect3"> <a name="nm-setting-vxlan-get-rsc.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingVxlan.html#NMSettingVxlan--rsc" title="The “rsc” property"><span class="type">“rsc”</span></a> property of the setting</p> +<p> the <a href="NMSettingVxlan.html#NMSettingVxlan--rsc"><span class="type">“rsc”</span></a> property of the setting</p> </div> <p class="since">Since: 1.2</p> </div> @@ -767,7 +659,7 @@ nm_setting_vxlan_get_l2_miss (<em class="parameter"><code><a class="link" href=" </div> <div class="refsect3"> <a name="nm-setting-vxlan-get-l2-miss.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingVxlan.html#NMSettingVxlan--l2-miss" title="The “l2-miss” property"><span class="type">“l2_miss”</span></a> property of the setting</p> +<p> the <a href="NMSettingVxlan.html#NMSettingVxlan--l2-miss"><span class="type">“l2_miss”</span></a> property of the setting</p> </div> <p class="since">Since: 1.2</p> </div> @@ -793,7 +685,7 @@ nm_setting_vxlan_get_l3_miss (<em class="parameter"><code><a class="link" href=" </div> <div class="refsect3"> <a name="nm-setting-vxlan-get-l3-miss.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingVxlan.html#NMSettingVxlan--l3-miss" title="The “l3-miss” property"><span class="type">“l3_miss”</span></a> property of the setting</p> +<p> the <a href="NMSettingVxlan.html#NMSettingVxlan--l3-miss"><span class="type">“l3_miss”</span></a> property of the setting</p> </div> <p class="since">Since: 1.2</p> </div> @@ -901,188 +793,6 @@ nm_setting_vxlan_get_l3_miss (<em class="parameter"><code><a class="link" href=" <pre class="programlisting">#define NM_SETTING_VXLAN_L3_MISS "l3-miss" </pre> </div> -<hr> -<div class="refsect2"> -<a name="NMSettingVxlan-struct"></a><h3>NMSettingVxlan</h3> -<pre class="programlisting">typedef struct _NMSettingVxlan NMSettingVxlan;</pre> -<p>VXLAN Settings</p> -</div> -</div> -<div class="refsect1"> -<a name="NMSettingVxlan.property-details"></a><h2>Property Details</h2> -<div class="refsect2"> -<a name="NMSettingVxlan--ageing"></a><h3>The <code class="literal">“ageing”</code> property</h3> -<pre class="programlisting"> “ageing” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>Specifies the lifetime in seconds of FDB entries learnt by the kernel.</p> -<p>Owner: NMSettingVxlan</p> -<p>Flags: Read / Write</p> -<p>Default value: 300</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingVxlan--destination-port"></a><h3>The <code class="literal">“destination-port”</code> property</h3> -<pre class="programlisting"> “destination-port” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>Specifies the UDP destination port to communicate to the remote VXLAN -tunnel endpoint.</p> -<p>Owner: NMSettingVxlan</p> -<p>Flags: Read / Write</p> -<p>Allowed values: <= 65535</p> -<p>Default value: 8472</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingVxlan--id"></a><h3>The <code class="literal">“id”</code> property</h3> -<pre class="programlisting"> “id” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>Specifies the VXLAN Network Identifier (or VXLAN Segment Identifier) to -use.</p> -<p>Owner: NMSettingVxlan</p> -<p>Flags: Read / Write</p> -<p>Allowed values: <= 16777215</p> -<p>Default value: 0</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingVxlan--l2-miss"></a><h3>The <code class="literal">“l2-miss”</code> property</h3> -<pre class="programlisting"> “l2-miss” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>Specifies whether netlink LL ADDR miss notifications are generated.</p> -<p>Owner: NMSettingVxlan</p> -<p>Flags: Read / Write</p> -<p>Default value: FALSE</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingVxlan--l3-miss"></a><h3>The <code class="literal">“l3-miss”</code> property</h3> -<pre class="programlisting"> “l3-miss” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>Specifies whether netlink IP ADDR miss notifications are generated.</p> -<p>Owner: NMSettingVxlan</p> -<p>Flags: Read / Write</p> -<p>Default value: FALSE</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingVxlan--learning"></a><h3>The <code class="literal">“learning”</code> property</h3> -<pre class="programlisting"> “learning” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>Specifies whether unknown source link layer addresses and IP addresses -are entered into the VXLAN device forwarding database.</p> -<p>Owner: NMSettingVxlan</p> -<p>Flags: Read / Write</p> -<p>Default value: TRUE</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingVxlan--limit"></a><h3>The <code class="literal">“limit”</code> property</h3> -<pre class="programlisting"> “limit” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>Specifies the maximum number of FDB entries. A value of zero means that -the kernel will store unlimited entries.</p> -<p>Owner: NMSettingVxlan</p> -<p>Flags: Read / Write</p> -<p>Default value: 0</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingVxlan--local"></a><h3>The <code class="literal">“local”</code> property</h3> -<pre class="programlisting"> “local” <span class="type">char</span> *</pre> -<p>If given, specifies the source IP address to use in outgoing packets.</p> -<p>Owner: NMSettingVxlan</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingVxlan--parent"></a><h3>The <code class="literal">“parent”</code> property</h3> -<pre class="programlisting"> “parent” <span class="type">char</span> *</pre> -<p>If given, specifies the parent interface name or parent connection UUID.</p> -<p>Owner: NMSettingVxlan</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingVxlan--proxy"></a><h3>The <code class="literal">“proxy”</code> property</h3> -<pre class="programlisting"> “proxy” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>Specifies whether ARP proxy is turned on.</p> -<p>Owner: NMSettingVxlan</p> -<p>Flags: Read / Write</p> -<p>Default value: FALSE</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingVxlan--remote"></a><h3>The <code class="literal">“remote”</code> property</h3> -<pre class="programlisting"> “remote” <span class="type">char</span> *</pre> -<p>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.</p> -<p>Owner: NMSettingVxlan</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingVxlan--rsc"></a><h3>The <code class="literal">“rsc”</code> property</h3> -<pre class="programlisting"> “rsc” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>Specifies whether route short circuit is turned on.</p> -<p>Owner: NMSettingVxlan</p> -<p>Flags: Read / Write</p> -<p>Default value: FALSE</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingVxlan--source-port-max"></a><h3>The <code class="literal">“source-port-max”</code> property</h3> -<pre class="programlisting"> “source-port-max” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>Specifies the maximum UDP source port to communicate to the remote VXLAN -tunnel endpoint.</p> -<p>Owner: NMSettingVxlan</p> -<p>Flags: Read / Write</p> -<p>Allowed values: <= 65535</p> -<p>Default value: 0</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingVxlan--source-port-min"></a><h3>The <code class="literal">“source-port-min”</code> property</h3> -<pre class="programlisting"> “source-port-min” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>Specifies the minimum UDP source port to communicate to the remote VXLAN -tunnel endpoint.</p> -<p>Owner: NMSettingVxlan</p> -<p>Flags: Read / Write</p> -<p>Allowed values: <= 65535</p> -<p>Default value: 0</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingVxlan--tos"></a><h3>The <code class="literal">“tos”</code> property</h3> -<pre class="programlisting"> “tos” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>Specifies the TOS value to use in outgoing packets.</p> -<p>Owner: NMSettingVxlan</p> -<p>Flags: Read / Write</p> -<p>Allowed values: <= 255</p> -<p>Default value: 0</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingVxlan--ttl"></a><h3>The <code class="literal">“ttl”</code> property</h3> -<pre class="programlisting"> “ttl” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>Specifies the time-to-live value to use in outgoing packets.</p> -<p>Owner: NMSettingVxlan</p> -<p>Flags: Read / Write</p> -<p>Allowed values: <= 255</p> -<p>Default value: 0</p> -<p class="since">Since: 1.2</p> -</div> </div> </div> <div class="footer"> diff --git a/docs/libnm/html/NMSettingWimax.html b/docs/libnm/html/NMSettingWimax.html index 20eeb57f..7bff50bc 100644 --- a/docs/libnm/html/NMSettingWimax.html +++ b/docs/libnm/html/NMSettingWimax.html @@ -15,9 +15,7 @@ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle"> <td width="100%" align="left" class="shortcuts"> <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> - <a href="#NMSettingWimax.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> - <a href="#NMSettingWimax.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties"> <span class="dim">|</span> - <a href="#NMSettingWimax.properties" class="shortcut">Properties</a></span> + <a href="#NMSettingWimax.description" class="shortcut">Description</a></span> </td> <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> <td><a accesskey="u" href="ch03.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> @@ -67,30 +65,6 @@ </table></div> </div> <div class="refsect1"> -<a name="NMSettingWimax.properties"></a><h2>Properties</h2> -<div class="informaltable"><table class="informaltable" border="0"> -<colgroup> -<col width="150px" class="properties_type"> -<col width="300px" class="properties_name"> -<col width="200px" class="properties_flags"> -</colgroup> -<tbody> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingWimax.html#NMSettingWimax--mac-address" title="The “mac-address” property">mac-address</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingWimax.html#NMSettingWimax--network-name" title="The “network-name” property">network-name</a></td> -<td class="property_flags">Read / Write</td> -</tr> -</tbody> -</table></div> -</div> -<div class="refsect1"> <a name="NMSettingWimax.other"></a><h2>Types and Values</h2> <div class="informaltable"><table class="informaltable" width="100%" border="0"> <colgroup> @@ -110,21 +84,10 @@ <td class="define_keyword">#define</td> <td class="function_name"><a class="link" href="NMSettingWimax.html#NM-SETTING-WIMAX-MAC-ADDRESS:CAPS" title="NM_SETTING_WIMAX_MAC_ADDRESS">NM_SETTING_WIMAX_MAC_ADDRESS</a></td> </tr> -<tr> -<td class="datatype_keyword"> </td> -<td class="function_name"><a class="link" href="NMSettingWimax.html#NMSettingWimax-struct" title="NMSettingWimax">NMSettingWimax</a></td> -</tr> </tbody> </table></div> </div> <div class="refsect1"> -<a name="NMSettingWimax.object-hierarchy"></a><h2>Object Hierarchy</h2> -<pre class="screen"> <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a> - <span class="lineart">╰──</span> <a class="link" href="NMSetting.html" title="NMSetting">NMSetting</a> - <span class="lineart">╰──</span> NMSettingWimax -</pre> -</div> -<div class="refsect1"> <a name="NMSettingWimax.description"></a><h2>Description</h2> <p>The <a class="link" href="NMSettingWimax.html" title="NMSettingWimax"><span class="type">NMSettingWimax</span></a> object is a <a class="link" href="NMSetting.html" title="NMSetting"><span class="type">NMSetting</span></a> subclass that describes properties necessary for connection to 802.16e Mobile WiMAX networks.</p> @@ -230,43 +193,6 @@ to.</p> <pre class="programlisting">#define NM_SETTING_WIMAX_MAC_ADDRESS "mac-address" </pre> </div> -<hr> -<div class="refsect2"> -<a name="NMSettingWimax-struct"></a><h3>NMSettingWimax</h3> -<pre class="programlisting">typedef struct _NMSettingWimax NMSettingWimax;</pre> -<p>WiMax Settings</p> -</div> -</div> -<div class="refsect1"> -<a name="NMSettingWimax.property-details"></a><h2>Property Details</h2> -<div class="refsect2"> -<a name="NMSettingWimax--mac-address"></a><h3>The <code class="literal">“mac-address”</code> property</h3> -<pre class="programlisting"> “mac-address” <span class="type">char</span> *</pre> -<p>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).</p> -<div class="warning"> -<p><code class="literal">NMSettingWimax:mac-address</code> has been deprecated since version 1.2 and should not be used in newly-written code.</p> -<p>WiMAX is no longer supported.</p> -</div> -<p>Owner: NMSettingWimax</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWimax--network-name"></a><h3>The <code class="literal">“network-name”</code> property</h3> -<pre class="programlisting"> “network-name” <span class="type">char</span> *</pre> -<p>Network Service Provider (NSP) name of the WiMAX network this connection -should use.</p> -<div class="warning"> -<p><code class="literal">NMSettingWimax:network-name</code> has been deprecated since version 1.2 and should not be used in newly-written code.</p> -<p>WiMAX is no longer supported.</p> -</div> -<p>Owner: NMSettingWimax</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> </div> </div> <div class="footer"> diff --git a/docs/libnm/html/NMSettingWireGuard.html b/docs/libnm/html/NMSettingWireGuard.html index 00d9e981..167bfeb8 100644 --- a/docs/libnm/html/NMSettingWireGuard.html +++ b/docs/libnm/html/NMSettingWireGuard.html @@ -1012,7 +1012,10 @@ retrieve.</p></td> <tr> <td class="parameter_name"><p>out_is_valid</p></td> <td class="parameter_description"><p><a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the returned value is a valid allowed-ip -setting. </p></td> +setting. +This parameter is wrongly not marked as (out) argument, it is +thus not accessible via introspection. This cannot be fixed without +breaking API for introspection users. </p></td> <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td> </tr> </tbody> diff --git a/docs/libnm/html/NMSettingWired.html b/docs/libnm/html/NMSettingWired.html index d2976632..a27878e3 100644 --- a/docs/libnm/html/NMSettingWired.html +++ b/docs/libnm/html/NMSettingWired.html @@ -16,8 +16,7 @@ <td width="100%" align="left" class="shortcuts"> <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> <a href="#NMSettingWired.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> - <a href="#NMSettingWired.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties"> <span class="dim">|</span> - <a href="#NMSettingWired.properties" class="shortcut">Properties</a></span> + <a href="#NMSettingWired.object-hierarchy" class="shortcut">Object Hierarchy</a></span> </td> <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> <td><a accesskey="u" href="ch03.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> @@ -94,6 +93,14 @@ </td> </tr> <tr> +<td class="function_type"> +<a class="link" href="libnm-nm-dbus-interface.html#NMTernary" title="enum NMTernary"><span class="returnvalue">NMTernary</span></a> +</td> +<td class="function_name"> +<a class="link" href="NMSettingWired.html#nm-setting-wired-get-accept-all-mac-addresses" title="nm_setting_wired_get_accept_all_mac_addresses ()">nm_setting_wired_get_accept_all_mac_addresses</a> <span class="c_punctuation">()</span> +</td> +</tr> +<tr> <td class="function_type">const <span class="returnvalue">char</span> * </td> <td class="function_name"> @@ -241,96 +248,6 @@ </table></div> </div> <div class="refsect1"> -<a name="NMSettingWired.properties"></a><h2>Properties</h2> -<div class="informaltable"><table class="informaltable" border="0"> -<colgroup> -<col width="150px" class="properties_type"> -<col width="300px" class="properties_name"> -<col width="200px" class="properties_flags"> -</colgroup> -<tbody> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingWired.html#NMSettingWired--auto-negotiate" title="The “auto-negotiate” property">auto-negotiate</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingWired.html#NMSettingWired--cloned-mac-address" title="The “cloned-mac-address” property">cloned-mac-address</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingWired.html#NMSettingWired--duplex" title="The “duplex” property">duplex</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingWired.html#NMSettingWired--generate-mac-address-mask" title="The “generate-mac-address-mask” property">generate-mac-address-mask</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingWired.html#NMSettingWired--mac-address" title="The “mac-address” property">mac-address</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></td> -<td class="property_name"><a class="link" href="NMSettingWired.html#NMSettingWired--mac-address-blacklist" title="The “mac-address-blacklist” property">mac-address-blacklist</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingWired.html#NMSettingWired--mtu" title="The “mtu” property">mtu</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingWired.html#NMSettingWired--port" title="The “port” property">port</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingWired.html#NMSettingWired--s390-nettype" title="The “s390-nettype” property">s390-nettype</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<a href="https://developer.gnome.org/glib/unstable/glib-Hash-Tables.html#GHashTable"><span class="type">GHashTable</span></a> *</td> -<td class="property_name"><a class="link" href="NMSettingWired.html#NMSettingWired--s390-options" title="The “s390-options” property">s390-options</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></td> -<td class="property_name"><a class="link" href="NMSettingWired.html#NMSettingWired--s390-subchannels" title="The “s390-subchannels” property">s390-subchannels</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingWired.html#NMSettingWired--speed" title="The “speed” property">speed</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingWired.html#NMSettingWired--wake-on-lan" title="The “wake-on-lan” property">wake-on-lan</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingWired.html#NMSettingWired--wake-on-lan-password" title="The “wake-on-lan-password” property">wake-on-lan-password</a></td> -<td class="property_flags">Read / Write</td> -</tr> -</tbody> -</table></div> -</div> -<div class="refsect1"> <a name="NMSettingWired.other"></a><h2>Types and Values</h2> <div class="informaltable"><table class="informaltable" width="100%" border="0"> <colgroup> @@ -403,8 +320,8 @@ <td class="function_name"><a class="link" href="NMSettingWired.html#NM-SETTING-WIRED-WAKE-ON-LAN-PASSWORD:CAPS" title="NM_SETTING_WIRED_WAKE_ON_LAN_PASSWORD">NM_SETTING_WIRED_WAKE_ON_LAN_PASSWORD</a></td> </tr> <tr> -<td class="datatype_keyword"> </td> -<td class="function_name"><a class="link" href="NMSettingWired.html#NMSettingWired-struct" title="NMSettingWired">NMSettingWired</a></td> +<td class="define_keyword">#define</td> +<td class="function_name"><a class="link" href="NMSettingWired.html#NM-SETTING-WIRED-ACCEPT-ALL-MAC-ADDRESSES:CAPS" title="NM_SETTING_WIRED_ACCEPT_ALL_MAC_ADDRESSES">NM_SETTING_WIRED_ACCEPT_ALL_MAC_ADDRESSES</a></td> </tr> </tbody> </table></div> @@ -413,9 +330,6 @@ <a name="NMSettingWired.object-hierarchy"></a><h2>Object Hierarchy</h2> <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html">GFlags</a> <span class="lineart">╰──</span> NMSettingWiredWakeOnLan - <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a> - <span class="lineart">╰──</span> <a class="link" href="NMSetting.html" title="NMSetting">NMSetting</a> - <span class="lineart">╰──</span> NMSettingWired </pre> </div> <div class="refsect1"> @@ -458,7 +372,7 @@ nm_setting_wired_get_port (<em class="parameter"><code><a class="link" href="NMS </div> <div class="refsect3"> <a name="nm-setting-wired-get-port.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingWired.html#NMSettingWired--port" title="The “port” property"><span class="type">“port”</span></a> property of the setting</p> +<p> the <a href="NMSettingWired.html#NMSettingWired--port"><span class="type">“port”</span></a> property of the setting</p> </div> </div> <hr> @@ -483,7 +397,7 @@ nm_setting_wired_get_speed (<em class="parameter"><code><a class="link" href="NM </div> <div class="refsect3"> <a name="nm-setting-wired-get-speed.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingWired.html#NMSettingWired--speed" title="The “speed” property"><span class="type">“speed”</span></a> property of the setting</p> +<p> the <a href="NMSettingWired.html#NMSettingWired--speed"><span class="type">“speed”</span></a> property of the setting</p> </div> </div> <hr> @@ -508,7 +422,7 @@ nm_setting_wired_get_duplex (<em class="parameter"><code><a class="link" href="N </div> <div class="refsect3"> <a name="nm-setting-wired-get-duplex.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingWired.html#NMSettingWired--duplex" title="The “duplex” property"><span class="type">“duplex”</span></a> property of the setting</p> +<p> the <a href="NMSettingWired.html#NMSettingWired--duplex"><span class="type">“duplex”</span></a> property of the setting</p> </div> </div> <hr> @@ -533,7 +447,7 @@ nm_setting_wired_get_auto_negotiate (<em class="parameter"><code><a class="link" </div> <div class="refsect3"> <a name="nm-setting-wired-get-auto-negotiate.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingWired.html#NMSettingWired--auto-negotiate" title="The “auto-negotiate” property"><span class="type">“auto-negotiate”</span></a> property of the setting</p> +<p> the <a href="NMSettingWired.html#NMSettingWired--auto-negotiate"><span class="type">“auto-negotiate”</span></a> property of the setting</p> </div> </div> <hr> @@ -558,7 +472,7 @@ nm_setting_wired_get_mac_address (<em class="parameter"><code><a class="link" hr </div> <div class="refsect3"> <a name="nm-setting-wired-get-mac-address.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingWired.html#NMSettingWired--mac-address" title="The “mac-address” property"><span class="type">“mac-address”</span></a> property of the setting</p> +<p> the <a href="NMSettingWired.html#NMSettingWired--mac-address"><span class="type">“mac-address”</span></a> property of the setting</p> </div> </div> <hr> @@ -584,11 +498,38 @@ nm_setting_wired_get_cloned_mac_address </div> <div class="refsect3"> <a name="nm-setting-wired-get-cloned-mac-address.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingWired.html#NMSettingWired--cloned-mac-address" title="The “cloned-mac-address” property"><span class="type">“cloned-mac-address”</span></a> property of the setting</p> +<p> the <a href="NMSettingWired.html#NMSettingWired--cloned-mac-address"><span class="type">“cloned-mac-address”</span></a> property of the setting</p> </div> </div> <hr> <div class="refsect2"> +<a name="nm-setting-wired-get-accept-all-mac-addresses"></a><h3>nm_setting_wired_get_accept_all_mac_addresses ()</h3> +<pre class="programlisting"><a class="link" href="libnm-nm-dbus-interface.html#NMTernary" title="enum NMTernary"><span class="returnvalue">NMTernary</span></a> +nm_setting_wired_get_accept_all_mac_addresses + (<em class="parameter"><code><a class="link" href="NMSettingWired.html" title="NMSettingWired"><span class="type">NMSettingWired</span></a> *setting</code></em>);</pre> +<div class="refsect3"> +<a name="nm-setting-wired-get-accept-all-mac-addresses.parameters"></a><h4>Parameters</h4> +<div class="informaltable"><table class="informaltable" width="100%" border="0"> +<colgroup> +<col width="150px" class="parameters_name"> +<col class="parameters_description"> +<col width="200px" class="parameters_annotations"> +</colgroup> +<tbody><tr> +<td class="parameter_name"><p>setting</p></td> +<td class="parameter_description"><p>the <a class="link" href="NMSettingWired.html" title="NMSettingWired"><span class="type">NMSettingWired</span></a></p></td> +<td class="parameter_annotations"> </td> +</tr></tbody> +</table></div> +</div> +<div class="refsect3"> +<a name="nm-setting-wired-get-accept-all-mac-addresses.returns"></a><h4>Returns</h4> +<p> the <span class="type">“accept-all-mac-addresses”</span> property of the setting</p> +</div> +<p class="since">Since: 1.32</p> +</div> +<hr> +<div class="refsect2"> <a name="nm-setting-wired-get-generate-mac-address-mask"></a><h3>nm_setting_wired_get_generate_mac_address_mask ()</h3> <pre class="programlisting">const <span class="returnvalue">char</span> * nm_setting_wired_get_generate_mac_address_mask @@ -610,7 +551,7 @@ nm_setting_wired_get_generate_mac_address_mask </div> <div class="refsect3"> <a name="nm-setting-wired-get-generate-mac-address-mask.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingWired.html#NMSettingWired--generate-mac-address-mask" title="The “generate-mac-address-mask” property"><span class="type">“generate-mac-address-mask”</span></a> property of the setting</p> +<p> the <a href="NMSettingWired.html#NMSettingWired--generate-mac-address-mask"><span class="type">“generate-mac-address-mask”</span></a> property of the setting</p> </div> <p class="since">Since: 1.4</p> </div> @@ -637,7 +578,7 @@ nm_setting_wired_get_mac_address_blacklist </div> <div class="refsect3"> <a name="nm-setting-wired-get-mac-address-blacklist.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingWired.html#NMSettingWired--mac-address-blacklist" title="The “mac-address-blacklist” property"><span class="type">“mac-address-blacklist”</span></a> property of the setting</p> +<p> the <a href="NMSettingWired.html#NMSettingWired--mac-address-blacklist"><span class="type">“mac-address-blacklist”</span></a> property of the setting</p> </div> </div> <hr> @@ -709,7 +650,7 @@ at index <em class="parameter"><code>idx</code></em> nm_setting_wired_add_mac_blacklist_item (<em class="parameter"><code><a class="link" href="NMSettingWired.html" title="NMSettingWired"><span class="type">NMSettingWired</span></a> *setting</code></em>, <em class="parameter"><code>const <span class="type">char</span> *mac</code></em>);</pre> -<p>Adds a new MAC address to the <a class="link" href="NMSettingWired.html#NMSettingWired--mac-address-blacklist" title="The “mac-address-blacklist” property"><span class="type">“mac-address-blacklist”</span></a> property.</p> +<p>Adds a new MAC address to the <a href="NMSettingWired.html#NMSettingWired--mac-address-blacklist"><span class="type">“mac-address-blacklist”</span></a> property.</p> <div class="refsect3"> <a name="nm-setting-wired-add-mac-blacklist-item.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -852,7 +793,7 @@ nm_setting_wired_get_mtu (<em class="parameter"><code><a class="link" href="NMSe </div> <div class="refsect3"> <a name="nm-setting-wired-get-mtu.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingWired.html#NMSettingWired--mtu" title="The “mtu” property"><span class="type">“mtu”</span></a> property of the setting</p> +<p> the <a href="NMSettingWired.html#NMSettingWired--mtu"><span class="type">“mtu”</span></a> property of the setting</p> </div> </div> <hr> @@ -977,14 +918,14 @@ such as during option iteration.</p> <td class="parameter_name"><p>out_key</p></td> <td class="parameter_description"><p>on return, the key name of the s390 specific option; this value is owned by the setting and should not be modified. </p></td> -<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td> +<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td> </tr> <tr> <td class="parameter_name"><p>out_value</p></td> <td class="parameter_description"><p>on return, the value of the key of the s390 specific option; this value is owned by the setting and should not be modified. </p></td> -<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td> +<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></td> </tr> </tbody> </table></div> @@ -1041,10 +982,10 @@ setting; the value is owned by the setting and must not be modified</p> nm_setting_wired_add_s390_option (<em class="parameter"><code><a class="link" href="NMSettingWired.html" title="NMSettingWired"><span class="type">NMSettingWired</span></a> *setting</code></em>, <em class="parameter"><code>const <span class="type">char</span> *key</code></em>, <em class="parameter"><code>const <span class="type">char</span> *value</code></em>);</pre> -<p>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.</p> +<p>Add an option to the table. If the key already exists, the value gets +replaced.</p> +<p>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.</p> <div class="refsect3"> <a name="nm-setting-wired-add-s390-option.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -1074,8 +1015,7 @@ may already exist.</p> </div> <div class="refsect3"> <a name="nm-setting-wired-add-s390-option.returns"></a><h4>Returns</h4> -<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the option was valid and was added to the internal option -list, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if it was not.</p> +<p> since 1.32 this always returns <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>.</p> </div> </div> <hr> @@ -1213,7 +1153,7 @@ nm_setting_wired_get_wake_on_lan_password <hr> <div class="refsect2"> <a name="NMSettingWiredWakeOnLan"></a><h3>enum NMSettingWiredWakeOnLan</h3> -<p>Options for <a class="link" href="NMSettingWired.html#NMSettingWired--wake-on-lan" title="The “wake-on-lan” property"><span class="type">“wake-on-lan”</span></a>. Note that not all options +<p>Options for <a href="NMSettingWired.html#NMSettingWired--wake-on-lan"><span class="type">“wake-on-lan”</span></a>. Note that not all options are supported by all devices.</p> <div class="refsect3"> <a name="NMSettingWiredWakeOnLan.members"></a><h4>Members</h4> @@ -1397,227 +1337,9 @@ incompatible with other flags</p> </div> <hr> <div class="refsect2"> -<a name="NMSettingWired-struct"></a><h3>NMSettingWired</h3> -<pre class="programlisting">typedef struct _NMSettingWired NMSettingWired;</pre> -<p>Wired Ethernet Settings</p> -</div> -</div> -<div class="refsect1"> -<a name="NMSettingWired.property-details"></a><h2>Property Details</h2> -<div class="refsect2"> -<a name="NMSettingWired--auto-negotiate"></a><h3>The <code class="literal">“auto-negotiate”</code> property</h3> -<pre class="programlisting"> “auto-negotiate” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>When <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, 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 <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>, "speed" and "duplex" properties should be both set or -link configuration will be skipped.</p> -<p>Owner: NMSettingWired</p> -<p>Flags: Read / Write</p> -<p>Default value: FALSE</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWired--cloned-mac-address"></a><h3>The <code class="literal">“cloned-mac-address”</code> property</h3> -<pre class="programlisting"> “cloned-mac-address” <span class="type">char</span> *</pre> -<p>If specified, request that the device use this MAC address instead. -This is known as MAC cloning or spoofing.</p> -<p>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.</p> -<p>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).</p> -<p>On D-Bus, this field is expressed as "assigned-mac-address" or the deprecated -"cloned-mac-address".</p> -<p>Owner: NMSettingWired</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWired--duplex"></a><h3>The <code class="literal">“duplex”</code> property</h3> -<pre class="programlisting"> “duplex” <span class="type">char</span> *</pre> -<p>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.</p> -<p>Owner: NMSettingWired</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWired--generate-mac-address-mask"></a><h3>The <code class="literal">“generate-mac-address-mask”</code> property</h3> -<pre class="programlisting"> “generate-mac-address-mask” <span class="type">char</span> *</pre> -<p>With <a class="link" href="NMSettingWired.html#NMSettingWired--cloned-mac-address" title="The “cloned-mac-address” property"><span class="type">“cloned-mac-address”</span></a> 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.</p> -<p>If the property is <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, it is eligible to be overwritten by a default -connection setting. If the value is still <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> or an empty string, the -default is to create a locally-administered, unicast MAC address.</p> -<p>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.</p> -<p>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.</p> -<p>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.</p> -<p>Owner: NMSettingWired</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWired--mac-address"></a><h3>The <code class="literal">“mac-address”</code> property</h3> -<pre class="programlisting"> “mac-address” <span class="type">char</span> *</pre> -<p>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).</p> -<p>Owner: NMSettingWired</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWired--mac-address-blacklist"></a><h3>The <code class="literal">“mac-address-blacklist”</code> property</h3> -<pre class="programlisting"> “mac-address-blacklist” <a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></pre> -<p>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).</p> -<p>Owner: NMSettingWired</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWired--mtu"></a><h3>The <code class="literal">“mtu”</code> property</h3> -<pre class="programlisting"> “mtu” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>If non-zero, only transmit packets of the specified size or smaller, -breaking larger packets up into multiple Ethernet frames.</p> -<p>Owner: NMSettingWired</p> -<p>Flags: Read / Write</p> -<p>Default value: 0</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWired--port"></a><h3>The <code class="literal">“port”</code> property</h3> -<pre class="programlisting"> “port” <span class="type">char</span> *</pre> -<p>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.</p> -<p>Owner: NMSettingWired</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWired--s390-nettype"></a><h3>The <code class="literal">“s390-nettype”</code> property</h3> -<pre class="programlisting"> “s390-nettype” <span class="type">char</span> *</pre> -<p>s390 network device type; one of "qeth", "lcs", or "ctc", representing -the different types of virtual network devices available on s390 systems.</p> -<p>Owner: NMSettingWired</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWired--s390-options"></a><h3>The <code class="literal">“s390-options”</code> property</h3> -<pre class="programlisting"> “s390-options” <a href="https://developer.gnome.org/glib/unstable/glib-Hash-Tables.html#GHashTable"><span class="type">GHashTable</span></a> *</pre> -<p>Owner: NMSettingWired</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWired--s390-subchannels"></a><h3>The <code class="literal">“s390-subchannels”</code> property</h3> -<pre class="programlisting"> “s390-subchannels” <a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></pre> -<p>Identifies specific subchannels that this network device uses for -communication with z/VM or s390 host. Like the -<a class="link" href="NMSettingWired.html#NMSettingWired--mac-address" title="The “mac-address” property"><span class="type">“mac-address”</span></a> 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.</p> -<p>Owner: NMSettingWired</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWired--speed"></a><h3>The <code class="literal">“speed”</code> property</h3> -<pre class="programlisting"> “speed” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>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.</p> -<p>Owner: NMSettingWired</p> -<p>Flags: Read / Write</p> -<p>Default value: 0</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWired--wake-on-lan"></a><h3>The <code class="literal">“wake-on-lan”</code> property</h3> -<pre class="programlisting"> “wake-on-lan” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>The <a class="link" href="NMSettingWired.html#NMSettingWiredWakeOnLan" title="enum NMSettingWiredWakeOnLan"><span class="type">NMSettingWiredWakeOnLan</span></a> options to enable. Not all devices support all options. -May be any combination of <a class="link" href="NMSettingWired.html#NM-SETTING-WIRED-WAKE-ON-LAN-PHY:CAPS"><code class="literal">NM_SETTING_WIRED_WAKE_ON_LAN_PHY</code></a>, -<a class="link" href="NMSettingWired.html#NM-SETTING-WIRED-WAKE-ON-LAN-UNICAST:CAPS"><code class="literal">NM_SETTING_WIRED_WAKE_ON_LAN_UNICAST</code></a>, <a class="link" href="NMSettingWired.html#NM-SETTING-WIRED-WAKE-ON-LAN-MULTICAST:CAPS"><code class="literal">NM_SETTING_WIRED_WAKE_ON_LAN_MULTICAST</code></a>, -<a class="link" href="NMSettingWired.html#NM-SETTING-WIRED-WAKE-ON-LAN-BROADCAST:CAPS"><code class="literal">NM_SETTING_WIRED_WAKE_ON_LAN_BROADCAST</code></a>, <a class="link" href="NMSettingWired.html#NM-SETTING-WIRED-WAKE-ON-LAN-ARP:CAPS"><code class="literal">NM_SETTING_WIRED_WAKE_ON_LAN_ARP</code></a>, -<a class="link" href="NMSettingWired.html#NM-SETTING-WIRED-WAKE-ON-LAN-MAGIC:CAPS"><code class="literal">NM_SETTING_WIRED_WAKE_ON_LAN_MAGIC</code></a> or the special values -<a class="link" href="NMSettingWired.html#NM-SETTING-WIRED-WAKE-ON-LAN-DEFAULT:CAPS"><code class="literal">NM_SETTING_WIRED_WAKE_ON_LAN_DEFAULT</code></a> (to use global settings) and -<a class="link" href="NMSettingWired.html#NM-SETTING-WIRED-WAKE-ON-LAN-IGNORE:CAPS"><code class="literal">NM_SETTING_WIRED_WAKE_ON_LAN_IGNORE</code></a> (to disable management of Wake-on-LAN in -NetworkManager).</p> -<p>Owner: NMSettingWired</p> -<p>Flags: Read / Write</p> -<p>Default value: 1</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWired--wake-on-lan-password"></a><h3>The <code class="literal">“wake-on-lan-password”</code> property</h3> -<pre class="programlisting"> “wake-on-lan-password” <span class="type">char</span> *</pre> -<p>If specified, the password used with magic-packet-based -Wake-on-LAN, represented as an Ethernet MAC address. If <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, -no password will be required.</p> -<p>Owner: NMSettingWired</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -<p class="since">Since: 1.2</p> +<a name="NM-SETTING-WIRED-ACCEPT-ALL-MAC-ADDRESSES:CAPS"></a><h3>NM_SETTING_WIRED_ACCEPT_ALL_MAC_ADDRESSES</h3> +<pre class="programlisting">#define NM_SETTING_WIRED_ACCEPT_ALL_MAC_ADDRESSES "accept-all-mac-addresses" +</pre> </div> </div> </div> diff --git a/docs/libnm/html/NMSettingWireless.html b/docs/libnm/html/NMSettingWireless.html index 0ce428a4..18a91960 100644 --- a/docs/libnm/html/NMSettingWireless.html +++ b/docs/libnm/html/NMSettingWireless.html @@ -16,8 +16,7 @@ <td width="100%" align="left" class="shortcuts"> <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> <a href="#NMSettingWireless.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> - <a href="#NMSettingWireless.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties"> <span class="dim">|</span> - <a href="#NMSettingWireless.properties" class="shortcut">Properties</a></span> + <a href="#NMSettingWireless.object-hierarchy" class="shortcut">Object Hierarchy</a></span> </td> <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> <td><a accesskey="u" href="ch03.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> @@ -260,115 +259,6 @@ </table></div> </div> <div class="refsect1"> -<a name="NMSettingWireless.properties"></a><h2>Properties</h2> -<div class="informaltable"><table class="informaltable" border="0"> -<colgroup> -<col width="150px" class="properties_type"> -<col width="300px" class="properties_name"> -<col width="200px" class="properties_flags"> -</colgroup> -<tbody> -<tr> -<td class="property_type"><a class="link" href="libnm-nm-dbus-interface.html#NMTernary" title="enum NMTernary"><span class="type">NMTernary</span></a></td> -<td class="property_name"><a class="link" href="NMSettingWireless.html#NMSettingWireless--ap-isolation" title="The “ap-isolation” property">ap-isolation</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingWireless.html#NMSettingWireless--band" title="The “band” property">band</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingWireless.html#NMSettingWireless--bssid" title="The “bssid” property">bssid</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingWireless.html#NMSettingWireless--channel" title="The “channel” property">channel</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingWireless.html#NMSettingWireless--cloned-mac-address" title="The “cloned-mac-address” property">cloned-mac-address</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingWireless.html#NMSettingWireless--generate-mac-address-mask" title="The “generate-mac-address-mask” property">generate-mac-address-mask</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td> -<td class="property_name"><a class="link" href="NMSettingWireless.html#NMSettingWireless--hidden" title="The “hidden” property">hidden</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingWireless.html#NMSettingWireless--mac-address" title="The “mac-address” property">mac-address</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></td> -<td class="property_name"><a class="link" href="NMSettingWireless.html#NMSettingWireless--mac-address-blacklist" title="The “mac-address-blacklist” property">mac-address-blacklist</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingWireless.html#NMSettingWireless--mac-address-randomization" title="The “mac-address-randomization” property">mac-address-randomization</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingWireless.html#NMSettingWireless--mode" title="The “mode” property">mode</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingWireless.html#NMSettingWireless--mtu" title="The “mtu” property">mtu</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingWireless.html#NMSettingWireless--powersave" title="The “powersave” property">powersave</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingWireless.html#NMSettingWireless--rate" title="The “rate” property">rate</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></td> -<td class="property_name"><a class="link" href="NMSettingWireless.html#NMSettingWireless--seen-bssids" title="The “seen-bssids” property">seen-bssids</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<a href="https://developer.gnome.org/glib/unstable/glib-Byte-Arrays.html#GBytes"><span class="type">GBytes</span></a> *</td> -<td class="property_name"><a class="link" href="NMSettingWireless.html#NMSettingWireless--ssid" title="The “ssid” property">ssid</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingWireless.html#NMSettingWireless--tx-power" title="The “tx-power” property">tx-power</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingWireless.html#NMSettingWireless--wake-on-wlan" title="The “wake-on-wlan” property">wake-on-wlan</a></td> -<td class="property_flags">Read / Write</td> -</tr> -</tbody> -</table></div> -</div> -<div class="refsect1"> <a name="NMSettingWireless.other"></a><h2>Types and Values</h2> <div class="informaltable"><table class="informaltable" width="100%" border="0"> <colgroup> @@ -476,10 +366,6 @@ <td class="datatype_keyword">enum</td> <td class="function_name"><a class="link" href="NMSettingWireless.html#NMSettingWirelessPowersave" title="enum NMSettingWirelessPowersave">NMSettingWirelessPowersave</a></td> </tr> -<tr> -<td class="datatype_keyword"> </td> -<td class="function_name"><a class="link" href="NMSettingWireless.html#NMSettingWireless-struct" title="NMSettingWireless">NMSettingWireless</a></td> -</tr> </tbody> </table></div> </div> @@ -489,9 +375,6 @@ <span class="lineart">╰──</span> NMSettingWirelessPowersave <a href="/usr/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html">GFlags</a> <span class="lineart">╰──</span> NMSettingWirelessWakeOnWLan - <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a> - <span class="lineart">╰──</span> <a class="link" href="NMSetting.html" title="NMSetting">NMSetting</a> - <span class="lineart">╰──</span> NMSettingWireless </pre> </div> <div class="refsect1"> @@ -534,7 +417,7 @@ nm_setting_wireless_get_ssid (<em class="parameter"><code><a class="link" href=" </div> <div class="refsect3"> <a name="nm-setting-wireless-get-ssid.returns"></a><h4>Returns</h4> -<p>the <a class="link" href="NMSettingWireless.html#NMSettingWireless--ssid" title="The “ssid” property"><span class="type">“ssid”</span></a> property of the setting. </p> +<p>the <a href="NMSettingWireless.html#NMSettingWireless--ssid"><span class="type">“ssid”</span></a> property of the setting. </p> <p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p> </div> </div> @@ -560,7 +443,7 @@ nm_setting_wireless_get_mode (<em class="parameter"><code><a class="link" href=" </div> <div class="refsect3"> <a name="nm-setting-wireless-get-mode.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingWireless.html#NMSettingWireless--mode" title="The “mode” property"><span class="type">“mode”</span></a> property of the setting</p> +<p> the <a href="NMSettingWireless.html#NMSettingWireless--mode"><span class="type">“mode”</span></a> property of the setting</p> </div> </div> <hr> @@ -585,7 +468,7 @@ nm_setting_wireless_get_band (<em class="parameter"><code><a class="link" href=" </div> <div class="refsect3"> <a name="nm-setting-wireless-get-band.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingWireless.html#NMSettingWireless--band" title="The “band” property"><span class="type">“band”</span></a> property of the setting</p> +<p> the <a href="NMSettingWireless.html#NMSettingWireless--band"><span class="type">“band”</span></a> property of the setting</p> </div> </div> <hr> @@ -610,7 +493,7 @@ nm_setting_wireless_get_channel (<em class="parameter"><code><a class="link" hre </div> <div class="refsect3"> <a name="nm-setting-wireless-get-channel.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingWireless.html#NMSettingWireless--channel" title="The “channel” property"><span class="type">“channel”</span></a> property of the setting</p> +<p> the <a href="NMSettingWireless.html#NMSettingWireless--channel"><span class="type">“channel”</span></a> property of the setting</p> </div> </div> <hr> @@ -635,7 +518,7 @@ nm_setting_wireless_get_bssid (<em class="parameter"><code><a class="link" href= </div> <div class="refsect3"> <a name="nm-setting-wireless-get-bssid.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingWireless.html#NMSettingWireless--bssid" title="The “bssid” property"><span class="type">“bssid”</span></a> property of the setting</p> +<p> the <a href="NMSettingWireless.html#NMSettingWireless--bssid"><span class="type">“bssid”</span></a> property of the setting</p> </div> </div> <hr> @@ -660,7 +543,7 @@ nm_setting_wireless_get_rate (<em class="parameter"><code><a class="link" href=" </div> <div class="refsect3"> <a name="nm-setting-wireless-get-rate.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingWireless.html#NMSettingWireless--rate" title="The “rate” property"><span class="type">“rate”</span></a> property of the setting</p> +<p> the <a href="NMSettingWireless.html#NMSettingWireless--rate"><span class="type">“rate”</span></a> property of the setting</p> </div> </div> <hr> @@ -685,7 +568,7 @@ nm_setting_wireless_get_tx_power (<em class="parameter"><code><a class="link" hr </div> <div class="refsect3"> <a name="nm-setting-wireless-get-tx-power.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingWireless.html#NMSettingWireless--tx-power" title="The “tx-power” property"><span class="type">“tx-power”</span></a> property of the setting</p> +<p> the <a href="NMSettingWireless.html#NMSettingWireless--tx-power"><span class="type">“tx-power”</span></a> property of the setting</p> </div> </div> <hr> @@ -710,7 +593,7 @@ nm_setting_wireless_get_mac_address (<em class="parameter"><code><a class="link" </div> <div class="refsect3"> <a name="nm-setting-wireless-get-mac-address.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingWireless.html#NMSettingWireless--mac-address" title="The “mac-address” property"><span class="type">“mac-address”</span></a> property of the setting</p> +<p> the <a href="NMSettingWireless.html#NMSettingWireless--mac-address"><span class="type">“mac-address”</span></a> property of the setting</p> </div> </div> <hr> @@ -736,7 +619,7 @@ nm_setting_wireless_get_cloned_mac_address </div> <div class="refsect3"> <a name="nm-setting-wireless-get-cloned-mac-address.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingWireless.html#NMSettingWireless--cloned-mac-address" title="The “cloned-mac-address” property"><span class="type">“cloned-mac-address”</span></a> property of the setting</p> +<p> the <a href="NMSettingWireless.html#NMSettingWireless--cloned-mac-address"><span class="type">“cloned-mac-address”</span></a> property of the setting</p> </div> </div> <hr> @@ -762,7 +645,7 @@ nm_setting_wireless_get_generate_mac_address_mask </div> <div class="refsect3"> <a name="nm-setting-wireless-get-generate-mac-address-mask.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingWireless.html#NMSettingWireless--generate-mac-address-mask" title="The “generate-mac-address-mask” property"><span class="type">“generate-mac-address-mask”</span></a> property of the setting</p> +<p> the <a href="NMSettingWireless.html#NMSettingWireless--generate-mac-address-mask"><span class="type">“generate-mac-address-mask”</span></a> property of the setting</p> </div> <p class="since">Since: 1.4</p> </div> @@ -789,7 +672,7 @@ nm_setting_wireless_get_mac_address_blacklist </div> <div class="refsect3"> <a name="nm-setting-wireless-get-mac-address-blacklist.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingWireless.html#NMSettingWireless--mac-address-blacklist" title="The “mac-address-blacklist” property"><span class="type">“mac-address-blacklist”</span></a> property of the setting</p> +<p> the <a href="NMSettingWireless.html#NMSettingWireless--mac-address-blacklist"><span class="type">“mac-address-blacklist”</span></a> property of the setting</p> </div> </div> <hr> @@ -861,7 +744,7 @@ at index <em class="parameter"><code>idx</code></em> nm_setting_wireless_add_mac_blacklist_item (<em class="parameter"><code><a class="link" href="NMSettingWireless.html" title="NMSettingWireless"><span class="type">NMSettingWireless</span></a> *setting</code></em>, <em class="parameter"><code>const <span class="type">char</span> *mac</code></em>);</pre> -<p>Adds a new MAC address to the <a class="link" href="NMSettingWireless.html#NMSettingWireless--mac-address-blacklist" title="The “mac-address-blacklist” property"><span class="type">“mac-address-blacklist”</span></a> property.</p> +<p>Adds a new MAC address to the <a href="NMSettingWireless.html#NMSettingWireless--mac-address-blacklist"><span class="type">“mac-address-blacklist”</span></a> property.</p> <div class="refsect3"> <a name="nm-setting-wireless-add-mac-blacklist-item.parameters"></a><h4>Parameters</h4> <div class="informaltable"><table class="informaltable" width="100%" border="0"> @@ -1004,7 +887,7 @@ nm_setting_wireless_get_mtu (<em class="parameter"><code><a class="link" href="N </div> <div class="refsect3"> <a name="nm-setting-wireless-get-mtu.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingWireless.html#NMSettingWireless--mtu" title="The “mtu” property"><span class="type">“mtu”</span></a> property of the setting</p> +<p> the <a href="NMSettingWireless.html#NMSettingWireless--mtu"><span class="type">“mtu”</span></a> property of the setting</p> </div> </div> <hr> @@ -1029,7 +912,7 @@ nm_setting_wireless_get_hidden (<em class="parameter"><code><a class="link" href </div> <div class="refsect3"> <a name="nm-setting-wireless-get-hidden.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingWireless.html#NMSettingWireless--hidden" title="The “hidden” property"><span class="type">“hidden”</span></a> property of the setting</p> +<p> the <a href="NMSettingWireless.html#NMSettingWireless--hidden"><span class="type">“hidden”</span></a> property of the setting</p> </div> </div> <hr> @@ -1054,7 +937,7 @@ nm_setting_wireless_get_powersave (<em class="parameter"><code><a class="link" h </div> <div class="refsect3"> <a name="nm-setting-wireless-get-powersave.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingWireless.html#NMSettingWireless--powersave" title="The “powersave” property"><span class="type">“powersave”</span></a> property of the setting</p> +<p> the <a href="NMSettingWireless.html#NMSettingWireless--powersave"><span class="type">“powersave”</span></a> property of the setting</p> </div> <p class="since">Since: 1.2</p> </div> @@ -1081,7 +964,7 @@ nm_setting_wireless_get_mac_address_randomization </div> <div class="refsect3"> <a name="nm-setting-wireless-get-mac-address-randomization.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingWireless.html#NMSettingWireless--mac-address-randomization" title="The “mac-address-randomization” property"><span class="type">“mac-address-randomization”</span></a> property of the +<p> the <a href="NMSettingWireless.html#NMSettingWireless--mac-address-randomization"><span class="type">“mac-address-randomization”</span></a> property of the setting</p> </div> <p class="since">Since: 1.2</p> @@ -1300,7 +1183,7 @@ nm_setting_wireless_get_ap_isolation (<em class="parameter"><code><a class="link </div> <div class="refsect3"> <a name="nm-setting-wireless-get-ap-isolation.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingWireless.html#NMSettingWireless--ap-isolation" title="The “ap-isolation” property"><span class="type">“ap-isolation”</span></a> property of the setting</p> +<p> the <a href="NMSettingWireless.html#NMSettingWireless--ap-isolation"><span class="type">“ap-isolation”</span></a> property of the setting</p> </div> <p class="since">Since: 1.28</p> </div> @@ -1315,7 +1198,7 @@ nm_setting_wireless_get_ap_isolation (<em class="parameter"><code><a class="link <hr> <div class="refsect2"> <a name="NMSettingWirelessWakeOnWLan"></a><h3>enum NMSettingWirelessWakeOnWLan</h3> -<p>Options for <a class="link" href="NMSettingWireless.html#NMSettingWireless--wake-on-wlan" title="The “wake-on-wlan” property"><span class="type">“wake-on-wlan”</span></a>. Note that not all options +<p>Options for <a href="NMSettingWireless.html#NMSettingWireless--wake-on-wlan"><span class="type">“wake-on-wlan”</span></a>. Note that not all options are supported by all devices.</p> <div class="refsect3"> <a name="NMSettingWirelessWakeOnWLan.members"></a><h4>Members</h4> @@ -1619,285 +1502,6 @@ for this connection.</p> </table></div> </div> </div> -<hr> -<div class="refsect2"> -<a name="NMSettingWireless-struct"></a><h3>NMSettingWireless</h3> -<pre class="programlisting">typedef struct _NMSettingWireless NMSettingWireless;</pre> -<p>Wi-Fi Settings</p> -</div> -</div> -<div class="refsect1"> -<a name="NMSettingWireless.property-details"></a><h2>Property Details</h2> -<div class="refsect2"> -<a name="NMSettingWireless--ap-isolation"></a><h3>The <code class="literal">“ap-isolation”</code> property</h3> -<pre class="programlisting"> “ap-isolation” <a class="link" href="libnm-nm-dbus-interface.html#NMTernary" title="enum NMTernary"><span class="type">NMTernary</span></a></pre> -<p>Configures AP isolation, which prevents communication between -wireless devices connected to this AP. This property can be set -to a value different from <a class="link" href="libnm-nm-dbus-interface.html#NM-TERNARY-DEFAULT:CAPS"><code class="literal">NM_TERNARY_DEFAULT</code></a> only when the -interface is configured in AP mode.</p> -<p>If set to <a class="link" href="libnm-nm-dbus-interface.html#NM-TERNARY-TRUE:CAPS"><code class="literal">NM_TERNARY_TRUE</code></a>, 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.</p> -<p>If set to <a class="link" href="libnm-nm-dbus-interface.html#NM-TERNARY-FALSE:CAPS"><code class="literal">NM_TERNARY_FALSE</code></a>, devices can talk to each other.</p> -<p>When set to <a class="link" href="libnm-nm-dbus-interface.html#NM-TERNARY-DEFAULT:CAPS"><code class="literal">NM_TERNARY_DEFAULT</code></a>, the global default is used; in -case the global default is unspecified it is assumed to be -<a class="link" href="libnm-nm-dbus-interface.html#NM-TERNARY-FALSE:CAPS"><code class="literal">NM_TERNARY_FALSE</code></a>.</p> -<p>Owner: NMSettingWireless</p> -<p>Flags: Read / Write</p> -<p>Default value: NM_TERNARY_DEFAULT</p> -<p class="since">Since: 1.28</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWireless--band"></a><h3>The <code class="literal">“band”</code> property</h3> -<pre class="programlisting"> “band” <span class="type">char</span> *</pre> -<p>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.</p> -<p>Owner: NMSettingWireless</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWireless--bssid"></a><h3>The <code class="literal">“bssid”</code> property</h3> -<pre class="programlisting"> “bssid” <span class="type">char</span> *</pre> -<p>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.</p> -<p>Owner: NMSettingWireless</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWireless--channel"></a><h3>The <code class="literal">“channel”</code> property</h3> -<pre class="programlisting"> “channel” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>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.</p> -<p>Owner: NMSettingWireless</p> -<p>Flags: Read / Write</p> -<p>Default value: 0</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWireless--cloned-mac-address"></a><h3>The <code class="literal">“cloned-mac-address”</code> property</h3> -<pre class="programlisting"> “cloned-mac-address” <span class="type">char</span> *</pre> -<p>If specified, request that the device use this MAC address instead. -This is known as MAC cloning or spoofing.</p> -<p>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.</p> -<p>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).</p> -<p>On D-Bus, this field is expressed as "assigned-mac-address" or the deprecated -"cloned-mac-address".</p> -<p>Owner: NMSettingWireless</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWireless--generate-mac-address-mask"></a><h3>The <code class="literal">“generate-mac-address-mask”</code> property</h3> -<pre class="programlisting"> “generate-mac-address-mask” <span class="type">char</span> *</pre> -<p>With <a class="link" href="NMSettingWireless.html#NMSettingWireless--cloned-mac-address" title="The “cloned-mac-address” property"><span class="type">“cloned-mac-address”</span></a> 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.</p> -<p>If the property is <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, it is eligible to be overwritten by a default -connection setting. If the value is still <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> or an empty string, the -default is to create a locally-administered, unicast MAC address.</p> -<p>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.</p> -<p>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.</p> -<p>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.</p> -<p>Owner: NMSettingWireless</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWireless--hidden"></a><h3>The <code class="literal">“hidden”</code> property</h3> -<pre class="programlisting"> “hidden” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre> -<p>If <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, indicates that the network is a non-broadcasting network that -hides its SSID. This works both in infrastructure and AP mode.</p> -<p>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.</p> -<p>In AP mode, the created network does not broadcast its SSID.</p> -<p>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.</p> -<p>Owner: NMSettingWireless</p> -<p>Flags: Read / Write</p> -<p>Default value: FALSE</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWireless--mac-address"></a><h3>The <code class="literal">“mac-address”</code> property</h3> -<pre class="programlisting"> “mac-address” <span class="type">char</span> *</pre> -<p>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).</p> -<p>Owner: NMSettingWireless</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWireless--mac-address-blacklist"></a><h3>The <code class="literal">“mac-address-blacklist”</code> property</h3> -<pre class="programlisting"> “mac-address-blacklist” <a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></pre> -<p>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").</p> -<p>Owner: NMSettingWireless</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWireless--mac-address-randomization"></a><h3>The <code class="literal">“mac-address-randomization”</code> property</h3> -<pre class="programlisting"> “mac-address-randomization” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>One of <a class="link" href="NMSetting.html#NM-SETTING-MAC-RANDOMIZATION-DEFAULT:CAPS"><code class="literal">NM_SETTING_MAC_RANDOMIZATION_DEFAULT</code></a> (never randomize unless -the user has set a global default to randomize and the supplicant -supports randomization), <a class="link" href="NMSetting.html#NM-SETTING-MAC-RANDOMIZATION-NEVER:CAPS"><code class="literal">NM_SETTING_MAC_RANDOMIZATION_NEVER</code></a> (never -randomize the MAC address), or <a class="link" href="NMSetting.html#NM-SETTING-MAC-RANDOMIZATION-ALWAYS:CAPS"><code class="literal">NM_SETTING_MAC_RANDOMIZATION_ALWAYS</code></a> -(always randomize the MAC address). This property is deprecated for -'cloned-mac-address'.</p> -<div class="warning"> -<p><code class="literal">NMSettingWireless:mac-address-randomization</code> has been deprecated since version 1.4 and should not be used in newly-written code.</p> -<p>Deprecated by NMSettingWireless:cloned-mac-address property.</p> -</div> -<p>Owner: NMSettingWireless</p> -<p>Flags: Read / Write</p> -<p>Default value: 0</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWireless--mode"></a><h3>The <code class="literal">“mode”</code> property</h3> -<pre class="programlisting"> “mode” <span class="type">char</span> *</pre> -<p>Wi-Fi network mode; one of "infrastructure", "mesh", "adhoc" or "ap". If blank, -infrastructure is assumed.</p> -<p>Owner: NMSettingWireless</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWireless--mtu"></a><h3>The <code class="literal">“mtu”</code> property</h3> -<pre class="programlisting"> “mtu” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>If non-zero, only transmit packets of the specified size or smaller, -breaking larger packets up into multiple Ethernet frames.</p> -<p>Owner: NMSettingWireless</p> -<p>Flags: Read / Write</p> -<p>Default value: 0</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWireless--powersave"></a><h3>The <code class="literal">“powersave”</code> property</h3> -<pre class="programlisting"> “powersave” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>One of <a class="link" href="NMSettingWireless.html#NM-SETTING-WIRELESS-POWERSAVE-DISABLE:CAPS"><code class="literal">NM_SETTING_WIRELESS_POWERSAVE_DISABLE</code></a> (disable Wi-Fi power -saving), <a class="link" href="NMSettingWireless.html#NM-SETTING-WIRELESS-POWERSAVE-ENABLE:CAPS"><code class="literal">NM_SETTING_WIRELESS_POWERSAVE_ENABLE</code></a> (enable Wi-Fi power -saving), <a class="link" href="NMSettingWireless.html#NM-SETTING-WIRELESS-POWERSAVE-IGNORE:CAPS"><code class="literal">NM_SETTING_WIRELESS_POWERSAVE_IGNORE</code></a> (don't touch currently -configure setting) or <a class="link" href="NMSettingWireless.html#NM-SETTING-WIRELESS-POWERSAVE-DEFAULT:CAPS"><code class="literal">NM_SETTING_WIRELESS_POWERSAVE_DEFAULT</code></a> (use the -globally configured value). All other values are reserved.</p> -<p>Owner: NMSettingWireless</p> -<p>Flags: Read / Write</p> -<p>Default value: 0</p> -<p class="since">Since: 1.2</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWireless--rate"></a><h3>The <code class="literal">“rate”</code> property</h3> -<pre class="programlisting"> “rate” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>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.</p> -<p>Owner: NMSettingWireless</p> -<p>Flags: Read / Write</p> -<p>Default value: 0</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWireless--seen-bssids"></a><h3>The <code class="literal">“seen-bssids”</code> property</h3> -<pre class="programlisting"> “seen-bssids” <a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></pre> -<p>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.</p> -<p>Owner: NMSettingWireless</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWireless--ssid"></a><h3>The <code class="literal">“ssid”</code> property</h3> -<pre class="programlisting"> “ssid” <a href="https://developer.gnome.org/glib/unstable/glib-Byte-Arrays.html#GBytes"><span class="type">GBytes</span></a> *</pre> -<p>SSID of the Wi-Fi network. Must be specified.</p> -<p>Owner: NMSettingWireless</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWireless--tx-power"></a><h3>The <code class="literal">“tx-power”</code> property</h3> -<pre class="programlisting"> “tx-power” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>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.</p> -<p>Owner: NMSettingWireless</p> -<p>Flags: Read / Write</p> -<p>Default value: 0</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWireless--wake-on-wlan"></a><h3>The <code class="literal">“wake-on-wlan”</code> property</h3> -<pre class="programlisting"> “wake-on-wlan” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>The <a class="link" href="NMSettingWireless.html#NMSettingWirelessWakeOnWLan" title="enum NMSettingWirelessWakeOnWLan"><span class="type">NMSettingWirelessWakeOnWLan</span></a> options to enable. Not all devices support all options. -May be any combination of <a class="link" href="NMSettingWireless.html#NM-SETTING-WIRELESS-WAKE-ON-WLAN-ANY:CAPS"><code class="literal">NM_SETTING_WIRELESS_WAKE_ON_WLAN_ANY</code></a>, -<a class="link" href="NMSettingWireless.html#NM-SETTING-WIRELESS-WAKE-ON-WLAN-DISCONNECT:CAPS"><code class="literal">NM_SETTING_WIRELESS_WAKE_ON_WLAN_DISCONNECT</code></a>, -<a class="link" href="NMSettingWireless.html#NM-SETTING-WIRELESS-WAKE-ON-WLAN-MAGIC:CAPS"><code class="literal">NM_SETTING_WIRELESS_WAKE_ON_WLAN_MAGIC</code></a>, -<a class="link" href="NMSettingWireless.html#NM-SETTING-WIRELESS-WAKE-ON-WLAN-GTK-REKEY-FAILURE:CAPS"><code class="literal">NM_SETTING_WIRELESS_WAKE_ON_WLAN_GTK_REKEY_FAILURE</code></a>, -<a class="link" href="NMSettingWireless.html#NM-SETTING-WIRELESS-WAKE-ON-WLAN-EAP-IDENTITY-REQUEST:CAPS"><code class="literal">NM_SETTING_WIRELESS_WAKE_ON_WLAN_EAP_IDENTITY_REQUEST</code></a>, -<a class="link" href="NMSettingWireless.html#NM-SETTING-WIRELESS-WAKE-ON-WLAN-4WAY-HANDSHAKE:CAPS"><code class="literal">NM_SETTING_WIRELESS_WAKE_ON_WLAN_4WAY_HANDSHAKE</code></a>, -<a class="link" href="NMSettingWireless.html#NM-SETTING-WIRELESS-WAKE-ON-WLAN-RFKILL-RELEASE:CAPS"><code class="literal">NM_SETTING_WIRELESS_WAKE_ON_WLAN_RFKILL_RELEASE</code></a>, -<a class="link" href="NMSettingWireless.html#NM-SETTING-WIRELESS-WAKE-ON-WLAN-TCP:CAPS"><code class="literal">NM_SETTING_WIRELESS_WAKE_ON_WLAN_TCP</code></a> or the special values -<a class="link" href="NMSettingWireless.html#NM-SETTING-WIRELESS-WAKE-ON-WLAN-DEFAULT:CAPS"><code class="literal">NM_SETTING_WIRELESS_WAKE_ON_WLAN_DEFAULT</code></a> (to use global settings) and -<a class="link" href="NMSettingWireless.html#NM-SETTING-WIRELESS-WAKE-ON-WLAN-IGNORE:CAPS"><code class="literal">NM_SETTING_WIRELESS_WAKE_ON_WLAN_IGNORE</code></a> (to disable management of Wake-on-LAN in -NetworkManager).</p> -<p>Owner: NMSettingWireless</p> -<p>Flags: Read / Write</p> -<p>Default value: 1</p> -<p class="since">Since: 1.12</p> -</div> </div> </div> <div class="footer"> diff --git a/docs/libnm/html/NMSettingWirelessSecurity.html b/docs/libnm/html/NMSettingWirelessSecurity.html index 4e1e5179..a98578ed 100644 --- a/docs/libnm/html/NMSettingWirelessSecurity.html +++ b/docs/libnm/html/NMSettingWirelessSecurity.html @@ -16,8 +16,7 @@ <td width="100%" align="left" class="shortcuts"> <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> <a href="#NMSettingWirelessSecurity.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> - <a href="#NMSettingWirelessSecurity.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties"> <span class="dim">|</span> - <a href="#NMSettingWirelessSecurity.properties" class="shortcut">Properties</a></span> + <a href="#NMSettingWirelessSecurity.object-hierarchy" class="shortcut">Object Hierarchy</a></span> </td> <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> <td><a accesskey="u" href="ch03.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> @@ -309,127 +308,6 @@ use WEP, LEAP, WPA or WPA2/RSN security</p> </table></div> </div> <div class="refsect1"> -<a name="NMSettingWirelessSecurity.properties"></a><h2>Properties</h2> -<div class="informaltable"><table class="informaltable" border="0"> -<colgroup> -<col width="150px" class="properties_type"> -<col width="300px" class="properties_name"> -<col width="200px" class="properties_flags"> -</colgroup> -<tbody> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--auth-alg" title="The “auth-alg” property">auth-alg</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><span class="type">int</span></td> -<td class="property_name"><a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--fils" title="The “fils” property">fils</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></td> -<td class="property_name"><a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--group" title="The “group” property">group</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--key-mgmt" title="The “key-mgmt” property">key-mgmt</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--leap-password" title="The “leap-password” property">leap-password</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a></td> -<td class="property_name"><a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--leap-password-flags" title="The “leap-password-flags” property">leap-password-flags</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--leap-username" title="The “leap-username” property">leap-username</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></td> -<td class="property_name"><a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--pairwise" title="The “pairwise” property">pairwise</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><span class="type">int</span></td> -<td class="property_name"><a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--pmf" title="The “pmf” property">pmf</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></td> -<td class="property_name"><a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--proto" title="The “proto” property">proto</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--psk" title="The “psk” property">psk</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a></td> -<td class="property_name"><a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--psk-flags" title="The “psk-flags” property">psk-flags</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a></td> -<td class="property_name"><a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-key-flags" title="The “wep-key-flags” property">wep-key-flags</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a class="link" href="NMSettingWirelessSecurity.html#NMWepKeyType" title="enum NMWepKeyType"><span class="type">NMWepKeyType</span></a></td> -<td class="property_name"><a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-key-type" title="The “wep-key-type” property">wep-key-type</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-key0" title="The “wep-key0” property">wep-key0</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-key1" title="The “wep-key1” property">wep-key1</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-key2" title="The “wep-key2” property">wep-key2</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"> -<span class="type">char</span> *</td> -<td class="property_name"><a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-key3" title="The “wep-key3” property">wep-key3</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-tx-keyidx" title="The “wep-tx-keyidx” property">wep-tx-keyidx</a></td> -<td class="property_flags">Read / Write</td> -</tr> -<tr> -<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td> -<td class="property_name"><a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wps-method" title="The “wps-method” property">wps-method</a></td> -<td class="property_flags">Read / Write</td> -</tr> -</tbody> -</table></div> -</div> -<div class="refsect1"> <a name="NMSettingWirelessSecurity.other"></a><h2>Types and Values</h2> <div class="informaltable"><table class="informaltable" width="100%" border="0"> <colgroup> @@ -537,10 +415,6 @@ use WEP, LEAP, WPA or WPA2/RSN security</p> <td class="define_keyword">#define</td> <td class="function_name"><a class="link" href="NMSettingWirelessSecurity.html#NM-SETTING-WIRELESS-SECURITY-FILS:CAPS" title="NM_SETTING_WIRELESS_SECURITY_FILS">NM_SETTING_WIRELESS_SECURITY_FILS</a></td> </tr> -<tr> -<td class="datatype_keyword"> </td> -<td class="function_name"><a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity-struct" title="NMSettingWirelessSecurity">NMSettingWirelessSecurity</a></td> -</tr> </tbody> </table></div> </div> @@ -552,9 +426,6 @@ use WEP, LEAP, WPA or WPA2/RSN security</p> <span class="lineart">╰──</span> NMWepKeyType <a href="/usr/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html">GFlags</a> <span class="lineart">╰──</span> NMSettingWirelessSecurityWpsMethod - <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a> - <span class="lineart">╰──</span> <a class="link" href="NMSetting.html" title="NMSetting">NMSetting</a> - <span class="lineart">╰──</span> NMSettingWirelessSecurity </pre> </div> <div class="refsect1"> @@ -608,7 +479,7 @@ nm_setting_wireless_security_get_key_mgmt </div> <div class="refsect3"> <a name="nm-setting-wireless-security-get-key-mgmt.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--key-mgmt" title="The “key-mgmt” property"><span class="type">“key-mgmt”</span></a> property of the setting</p> +<p> the <a href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--key-mgmt"><span class="type">“key-mgmt”</span></a> property of the setting</p> </div> </div> <hr> @@ -1222,7 +1093,7 @@ nm_setting_wireless_security_get_psk (<em class="parameter"><code><a class="link </div> <div class="refsect3"> <a name="nm-setting-wireless-security-get-psk.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--psk" title="The “psk” property"><span class="type">“psk”</span></a> property of the setting</p> +<p> the <a href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--psk"><span class="type">“psk”</span></a> property of the setting</p> </div> </div> <hr> @@ -1249,7 +1120,7 @@ nm_setting_wireless_security_get_psk_flags <div class="refsect3"> <a name="nm-setting-wireless-security-get-psk-flags.returns"></a><h4>Returns</h4> <p> the <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a> pertaining to the -<a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--psk" title="The “psk” property"><span class="type">“psk”</span></a></p> +<a href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--psk"><span class="type">“psk”</span></a></p> </div> </div> <hr> @@ -1275,7 +1146,7 @@ nm_setting_wireless_security_get_leap_username </div> <div class="refsect3"> <a name="nm-setting-wireless-security-get-leap-username.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--leap-username" title="The “leap-username” property"><span class="type">“leap-username”</span></a> property of the setting</p> +<p> the <a href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--leap-username"><span class="type">“leap-username”</span></a> property of the setting</p> </div> </div> <hr> @@ -1301,7 +1172,7 @@ nm_setting_wireless_security_get_leap_password </div> <div class="refsect3"> <a name="nm-setting-wireless-security-get-leap-password.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--leap-password" title="The “leap-password” property"><span class="type">“leap-password”</span></a> property of the setting</p> +<p> the <a href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--leap-password"><span class="type">“leap-password”</span></a> property of the setting</p> </div> </div> <hr> @@ -1328,7 +1199,7 @@ nm_setting_wireless_security_get_leap_password_flags <div class="refsect3"> <a name="nm-setting-wireless-security-get-leap-password-flags.returns"></a><h4>Returns</h4> <p> the <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a> pertaining to the -<a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--leap-password" title="The “leap-password” property"><span class="type">“leap-password”</span></a></p> +<a href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--leap-password"><span class="type">“leap-password”</span></a></p> </div> </div> <hr> @@ -1396,7 +1267,7 @@ nm_setting_wireless_security_set_wep_key <tr> <td class="parameter_name"><p>key</p></td> <td class="parameter_description"><p>the WEP key as a string, in either hexadecimal, ASCII, or passphrase -form as determined by the value of the <a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-key-type" title="The “wep-key-type” property"><span class="type">“wep-key-type”</span></a> +form as determined by the value of the <a href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-key-type"><span class="type">“wep-key-type”</span></a> property.</p></td> <td class="parameter_annotations"> </td> </tr> @@ -1427,7 +1298,7 @@ nm_setting_wireless_security_get_wep_tx_keyidx </div> <div class="refsect3"> <a name="nm-setting-wireless-security-get-wep-tx-keyidx.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-tx-keyidx" title="The “wep-tx-keyidx” property"><span class="type">“wep-tx-keyidx”</span></a> property of the setting</p> +<p> the <a href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-tx-keyidx"><span class="type">“wep-tx-keyidx”</span></a> property of the setting</p> </div> </div> <hr> @@ -1453,7 +1324,7 @@ nm_setting_wireless_security_get_auth_alg </div> <div class="refsect3"> <a name="nm-setting-wireless-security-get-auth-alg.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--auth-alg" title="The “auth-alg” property"><span class="type">“auth-alg”</span></a> property of the setting</p> +<p> the <a href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--auth-alg"><span class="type">“auth-alg”</span></a> property of the setting</p> </div> </div> <hr> @@ -1505,7 +1376,7 @@ nm_setting_wireless_security_get_wep_key_type </div> <div class="refsect3"> <a name="nm-setting-wireless-security-get-wep-key-type.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-key-type" title="The “wep-key-type” property"><span class="type">“wep-key-type”</span></a> property of the setting</p> +<p> the <a href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-key-type"><span class="type">“wep-key-type”</span></a> property of the setting</p> </div> </div> <hr> @@ -1531,7 +1402,7 @@ nm_setting_wireless_security_get_wps_method </div> <div class="refsect3"> <a name="nm-setting-wireless-security-get-wps-method.returns"></a><h4>Returns</h4> -<p> the <a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wps-method" title="The “wps-method” property"><span class="type">“wps-method”</span></a> property of the setting</p> +<p> the <a href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wps-method"><span class="type">“wps-method”</span></a> property of the setting</p> </div> <p class="since">Since: 1.10</p> </div> @@ -1898,248 +1769,6 @@ although, with the same numeric values.</p> <pre class="programlisting">#define NM_SETTING_WIRELESS_SECURITY_FILS "fils" </pre> </div> -<hr> -<div class="refsect2"> -<a name="NMSettingWirelessSecurity-struct"></a><h3>NMSettingWirelessSecurity</h3> -<pre class="programlisting">typedef struct _NMSettingWirelessSecurity NMSettingWirelessSecurity;</pre> -<p>Wi-Fi Security Settings</p> -</div> -</div> -<div class="refsect1"> -<a name="NMSettingWirelessSecurity.property-details"></a><h2>Property Details</h2> -<div class="refsect2"> -<a name="NMSettingWirelessSecurity--auth-alg"></a><h3>The <code class="literal">“auth-alg”</code> property</h3> -<pre class="programlisting"> “auth-alg” <span class="type">char</span> *</pre> -<p>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.</p> -<p>Owner: NMSettingWirelessSecurity</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWirelessSecurity--fils"></a><h3>The <code class="literal">“fils”</code> property</h3> -<pre class="programlisting"> “fils” <span class="type">int</span></pre> -<p>Indicates whether Fast Initial Link Setup (802.11ai) must be enabled for -the connection. One of <a class="link" href="NMSettingWirelessSecurity.html#NM-SETTING-WIRELESS-SECURITY-FILS-DEFAULT:CAPS"><code class="literal">NM_SETTING_WIRELESS_SECURITY_FILS_DEFAULT</code></a> (use -global default value), <a class="link" href="NMSettingWirelessSecurity.html#NM-SETTING-WIRELESS-SECURITY-FILS-DISABLE:CAPS"><code class="literal">NM_SETTING_WIRELESS_SECURITY_FILS_DISABLE</code></a> -(disable FILS), <a class="link" href="NMSettingWirelessSecurity.html#NM-SETTING-WIRELESS-SECURITY-FILS-OPTIONAL:CAPS"><code class="literal">NM_SETTING_WIRELESS_SECURITY_FILS_OPTIONAL</code></a> (enable FILS -if the supplicant and the access point support it) or -<a class="link" href="NMSettingWirelessSecurity.html#NM-SETTING-WIRELESS-SECURITY-FILS-REQUIRED:CAPS"><code class="literal">NM_SETTING_WIRELESS_SECURITY_FILS_REQUIRED</code></a> (enable FILS and fail if not -supported). When set to <a class="link" href="NMSettingWirelessSecurity.html#NM-SETTING-WIRELESS-SECURITY-FILS-DEFAULT:CAPS"><code class="literal">NM_SETTING_WIRELESS_SECURITY_FILS_DEFAULT</code></a> and -no global default is set, FILS will be optionally enabled.</p> -<p>Owner: NMSettingWirelessSecurity</p> -<p>Flags: Read / Write</p> -<p>Default value: 0</p> -<p class="since">Since: 1.12</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWirelessSecurity--group"></a><h3>The <code class="literal">“group”</code> property</h3> -<pre class="programlisting"> “group” <a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></pre> -<p>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".</p> -<p>Owner: NMSettingWirelessSecurity</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWirelessSecurity--key-mgmt"></a><h3>The <code class="literal">“key-mgmt”</code> property</h3> -<pre class="programlisting"> “key-mgmt” <span class="type">char</span> *</pre> -<p>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.</p> -<p>Owner: NMSettingWirelessSecurity</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWirelessSecurity--leap-password"></a><h3>The <code class="literal">“leap-password”</code> property</h3> -<pre class="programlisting"> “leap-password” <span class="type">char</span> *</pre> -<p>The login password for legacy LEAP connections (ie, key-mgmt = -"ieee8021x" and auth-alg = "leap").</p> -<p>Owner: NMSettingWirelessSecurity</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWirelessSecurity--leap-password-flags"></a><h3>The <code class="literal">“leap-password-flags”</code> property</h3> -<pre class="programlisting"> “leap-password-flags” <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a></pre> -<p>Flags indicating how to handle the -<a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--leap-password" title="The “leap-password” property"><span class="type">“leap-password”</span></a> property.</p> -<p>Owner: NMSettingWirelessSecurity</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWirelessSecurity--leap-username"></a><h3>The <code class="literal">“leap-username”</code> property</h3> -<pre class="programlisting"> “leap-username” <span class="type">char</span> *</pre> -<p>The login username for legacy LEAP connections (ie, key-mgmt = -"ieee8021x" and auth-alg = "leap").</p> -<p>Owner: NMSettingWirelessSecurity</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWirelessSecurity--pairwise"></a><h3>The <code class="literal">“pairwise”</code> property</h3> -<pre class="programlisting"> “pairwise” <a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></pre> -<p>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".</p> -<p>Owner: NMSettingWirelessSecurity</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWirelessSecurity--pmf"></a><h3>The <code class="literal">“pmf”</code> property</h3> -<pre class="programlisting"> “pmf” <span class="type">int</span></pre> -<p>Indicates whether Protected Management Frames (802.11w) must be enabled -for the connection. One of <a class="link" href="NMSettingWirelessSecurity.html#NM-SETTING-WIRELESS-SECURITY-PMF-DEFAULT:CAPS"><code class="literal">NM_SETTING_WIRELESS_SECURITY_PMF_DEFAULT</code></a> -(use global default value), <a class="link" href="NMSettingWirelessSecurity.html#NM-SETTING-WIRELESS-SECURITY-PMF-DISABLE:CAPS"><code class="literal">NM_SETTING_WIRELESS_SECURITY_PMF_DISABLE</code></a> -(disable PMF), <a class="link" href="NMSettingWirelessSecurity.html#NM-SETTING-WIRELESS-SECURITY-PMF-OPTIONAL:CAPS"><code class="literal">NM_SETTING_WIRELESS_SECURITY_PMF_OPTIONAL</code></a> (enable PMF if -the supplicant and the access point support it) or -<a class="link" href="NMSettingWirelessSecurity.html#NM-SETTING-WIRELESS-SECURITY-PMF-REQUIRED:CAPS"><code class="literal">NM_SETTING_WIRELESS_SECURITY_PMF_REQUIRED</code></a> (enable PMF and fail if not -supported). When set to <a class="link" href="NMSettingWirelessSecurity.html#NM-SETTING-WIRELESS-SECURITY-PMF-DEFAULT:CAPS"><code class="literal">NM_SETTING_WIRELESS_SECURITY_PMF_DEFAULT</code></a> and no -global default is set, PMF will be optionally enabled.</p> -<p>Owner: NMSettingWirelessSecurity</p> -<p>Flags: Read / Write</p> -<p>Default value: 0</p> -<p class="since">Since: 1.10</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWirelessSecurity--proto"></a><h3>The <code class="literal">“proto”</code> property</h3> -<pre class="programlisting"> “proto” <a href="https://developer.gnome.org/glib/unstable/glib-String-Utility-Functions.html#GStrv"><span class="type">GStrv</span></a></pre> -<p>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.</p> -<p>Owner: NMSettingWirelessSecurity</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWirelessSecurity--psk"></a><h3>The <code class="literal">“psk”</code> property</h3> -<pre class="programlisting"> “psk” <span class="type">char</span> *</pre> -<p>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.</p> -<p>Owner: NMSettingWirelessSecurity</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWirelessSecurity--psk-flags"></a><h3>The <code class="literal">“psk-flags”</code> property</h3> -<pre class="programlisting"> “psk-flags” <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a></pre> -<p>Flags indicating how to handle the <a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--psk" title="The “psk” property"><span class="type">“psk”</span></a> -property.</p> -<p>Owner: NMSettingWirelessSecurity</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWirelessSecurity--wep-key-flags"></a><h3>The <code class="literal">“wep-key-flags”</code> property</h3> -<pre class="programlisting"> “wep-key-flags” <a class="link" href="NMSetting.html#NMSettingSecretFlags" title="enum NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a></pre> -<p>Flags indicating how to handle the <a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-key0" title="The “wep-key0” property"><span class="type">“wep-key0”</span></a>, -<a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-key1" title="The “wep-key1” property"><span class="type">“wep-key1”</span></a>, <a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-key2" title="The “wep-key2” property"><span class="type">“wep-key2”</span></a>, -and <a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-key3" title="The “wep-key3” property"><span class="type">“wep-key3”</span></a> properties.</p> -<p>Owner: NMSettingWirelessSecurity</p> -<p>Flags: Read / Write</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWirelessSecurity--wep-key-type"></a><h3>The <code class="literal">“wep-key-type”</code> property</h3> -<pre class="programlisting"> “wep-key-type” <a class="link" href="NMSettingWirelessSecurity.html#NMWepKeyType" title="enum NMWepKeyType"><span class="type">NMWepKeyType</span></a></pre> -<p>Controls the interpretation of WEP keys. Allowed values are -<a class="link" href="NMSettingWirelessSecurity.html#NM-WEP-KEY-TYPE-KEY:CAPS"><code class="literal">NM_WEP_KEY_TYPE_KEY</code></a>, in which case the key is either a 10- or -26-character hexadecimal string, or a 5- or 13-character ASCII password; -or <a class="link" href="NMSettingWirelessSecurity.html#NM-WEP-KEY-TYPE-PASSPHRASE:CAPS"><code class="literal">NM_WEP_KEY_TYPE_PASSPHRASE</code></a>, 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.</p> -<p>Owner: NMSettingWirelessSecurity</p> -<p>Flags: Read / Write</p> -<p>Default value: NM_WEP_KEY_TYPE_UNKNOWN</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWirelessSecurity--wep-key0"></a><h3>The <code class="literal">“wep-key0”</code> property</h3> -<pre class="programlisting"> “wep-key0” <span class="type">char</span> *</pre> -<p>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.</p> -<p>Owner: NMSettingWirelessSecurity</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWirelessSecurity--wep-key1"></a><h3>The <code class="literal">“wep-key1”</code> property</h3> -<pre class="programlisting"> “wep-key1” <span class="type">char</span> *</pre> -<p>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.</p> -<p>Owner: NMSettingWirelessSecurity</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWirelessSecurity--wep-key2"></a><h3>The <code class="literal">“wep-key2”</code> property</h3> -<pre class="programlisting"> “wep-key2” <span class="type">char</span> *</pre> -<p>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.</p> -<p>Owner: NMSettingWirelessSecurity</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWirelessSecurity--wep-key3"></a><h3>The <code class="literal">“wep-key3”</code> property</h3> -<pre class="programlisting"> “wep-key3” <span class="type">char</span> *</pre> -<p>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.</p> -<p>Owner: NMSettingWirelessSecurity</p> -<p>Flags: Read / Write</p> -<p>Default value: NULL</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWirelessSecurity--wep-tx-keyidx"></a><h3>The <code class="literal">“wep-tx-keyidx”</code> property</h3> -<pre class="programlisting"> “wep-tx-keyidx” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>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.</p> -<p>Owner: NMSettingWirelessSecurity</p> -<p>Flags: Read / Write</p> -<p>Allowed values: <= 3</p> -<p>Default value: 0</p> -</div> -<hr> -<div class="refsect2"> -<a name="NMSettingWirelessSecurity--wps-method"></a><h3>The <code class="literal">“wps-method”</code> property</h3> -<pre class="programlisting"> “wps-method” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre> -<p>Flags indicating which mode of WPS is to be used if any.</p> -<p>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.</p> -<p>WPS can be disabled by setting this property to a value of 1.</p> -<p>Owner: NMSettingWirelessSecurity</p> -<p>Flags: Read / Write</p> -<p>Default value: 0</p> -<p class="since">Since: 1.10</p> -</div> </div> </div> <div class="footer"> diff --git a/docs/libnm/html/NMSimpleConnection.html b/docs/libnm/html/NMSimpleConnection.html index a44a69de..9f780d8b 100644 --- a/docs/libnm/html/NMSimpleConnection.html +++ b/docs/libnm/html/NMSimpleConnection.html @@ -15,9 +15,7 @@ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle"> <td width="100%" align="left" class="shortcuts"> <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> - <a href="#NMSimpleConnection.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> - <a href="#NMSimpleConnection.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_interfaces"> <span class="dim">|</span> - <a href="#NMSimpleConnection.implemented-interfaces" class="shortcut">Implemented Interfaces</a></span> + <a href="#NMSimpleConnection.description" class="shortcut">Description</a></span> </td> <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> <td><a accesskey="u" href="ch03.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> @@ -69,31 +67,6 @@ </table></div> </div> <div class="refsect1"> -<a name="NMSimpleConnection.other"></a><h2>Types and Values</h2> -<div class="informaltable"><table class="informaltable" width="100%" border="0"> -<colgroup> -<col width="150px" class="other_proto_type"> -<col class="other_proto_name"> -</colgroup> -<tbody><tr> -<td class="datatype_keyword"> </td> -<td class="function_name"><a class="link" href="NMSimpleConnection.html#NMSimpleConnection-struct" title="NMSimpleConnection">NMSimpleConnection</a></td> -</tr></tbody> -</table></div> -</div> -<div class="refsect1"> -<a name="NMSimpleConnection.object-hierarchy"></a><h2>Object Hierarchy</h2> -<pre class="screen"> <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a> - <span class="lineart">╰──</span> NMSimpleConnection -</pre> -</div> -<div class="refsect1"> -<a name="NMSimpleConnection.implemented-interfaces"></a><h2>Implemented Interfaces</h2> -<p> -NMSimpleConnection implements - <a class="link" href="NMConnection.html" title="NMConnection">NMConnection</a>.</p> -</div> -<div class="refsect1"> <a name="NMSimpleConnection.description"></a><h2>Description</h2> <p>An <a class="link" href="NMSimpleConnection.html" title="NMSimpleConnection"><span class="type">NMSimpleConnection</span></a> does not directly represent a D-Bus-exported connection, but might be used in the process of creating a new one.</p> @@ -179,13 +152,6 @@ and properties as the source <a class="link" href="NMConnection.html" title="NMC </div> </div> </div> -<div class="refsect1"> -<a name="NMSimpleConnection.other_details"></a><h2>Types and Values</h2> -<div class="refsect2"> -<a name="NMSimpleConnection-struct"></a><h3>NMSimpleConnection</h3> -<pre class="programlisting">typedef struct _NMSimpleConnection NMSimpleConnection;</pre> -</div> -</div> </div> <div class="footer"> <hr>Generated by GTK-Doc V1.33.0</div> diff --git a/docs/libnm/html/api-index-full.html b/docs/libnm/html/api-index-full.html index 98bfa164..8356b714 100644 --- a/docs/libnm/html/api-index-full.html +++ b/docs/libnm/html/api-index-full.html @@ -1341,6 +1341,10 @@ NMLInitData, struct in <a class="link" href="NMIPConfig.html" title="NMIPConfig" </dt> <dd></dd> <dt> +<a class="link" href="NMDevice.html#NMLldpNeighbor-struct" title="NMLldpNeighbor">NMLldpNeighbor</a>, struct in <a class="link" href="NMDevice.html" title="NMDevice">NMDevice</a> +</dt> +<dd></dd> +<dt> nml_cleanup_context_busy_watcher_on_idle, function in <a class="link" href="NMIPConfig.html" title="NMIPConfig">NMIPConfig</a> </dt> <dd></dd> @@ -1561,18 +1565,6 @@ NML_NMCLIENT_LOG_W, macro in <a class="link" href="NMIPConfig.html" title="NMIPC </dt> <dd></dd> <dt> -NMMetaSettingInfo, typedef in nm-meta-setting-base-impl -</dt> -<dd></dd> -<dt> -NMMetaSettingInfo_Alias, struct in nm-meta-setting-base-impl -</dt> -<dd></dd> -<dt> -NMMetaSettingType, enum in nm-meta-setting-base-impl -</dt> -<dd></dd> -<dt> <a class="link" href="libnm-nm-dbus-interface.html#NMMetered" title="enum NMMetered">NMMetered</a>, enum in <a class="link" href="libnm-nm-dbus-interface.html" title="nm-dbus-interface">nm-dbus-interface</a> </dt> <dd></dd> @@ -1673,7 +1665,7 @@ NMRemoteConnection:visible, object property in NMDeviceOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting.html#NMSetting-struct" title="NMSetting">NMSetting</a>, struct in <a class="link" href="NMSetting.html" title="NMSetting">NMSetting</a> +<a href="NMSetting.html#NMSetting-struct">NMSetting</a>, struct in NMSettingOvs </dt> <dd></dd> <dt> @@ -1685,195 +1677,195 @@ NMSetting6Lowpan:parent, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x-struct" title="NMSetting8021x">NMSetting8021x</a>, struct in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x-struct">NMSetting8021x</a>, struct in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--altsubject-matches" title="The “altsubject-matches” property">NMSetting8021x:altsubject-matches</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--altsubject-matches">NMSetting8021x:altsubject-matches</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--anonymous-identity" title="The “anonymous-identity” property">NMSetting8021x:anonymous-identity</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--anonymous-identity">NMSetting8021x:anonymous-identity</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--auth-timeout" title="The “auth-timeout” property">NMSetting8021x:auth-timeout</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--auth-timeout">NMSetting8021x:auth-timeout</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--ca-cert" title="The “ca-cert” property">NMSetting8021x:ca-cert</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--ca-cert">NMSetting8021x:ca-cert</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--ca-cert-password" title="The “ca-cert-password” property">NMSetting8021x:ca-cert-password</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--ca-cert-password">NMSetting8021x:ca-cert-password</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--ca-cert-password-flags" title="The “ca-cert-password-flags” property">NMSetting8021x:ca-cert-password-flags</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--ca-cert-password-flags">NMSetting8021x:ca-cert-password-flags</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--ca-path" title="The “ca-path” property">NMSetting8021x:ca-path</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--ca-path">NMSetting8021x:ca-path</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--client-cert" title="The “client-cert” property">NMSetting8021x:client-cert</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--client-cert">NMSetting8021x:client-cert</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--client-cert-password" title="The “client-cert-password” property">NMSetting8021x:client-cert-password</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--client-cert-password">NMSetting8021x:client-cert-password</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--client-cert-password-flags" title="The “client-cert-password-flags” property">NMSetting8021x:client-cert-password-flags</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--client-cert-password-flags">NMSetting8021x:client-cert-password-flags</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--domain-match" title="The “domain-match” property">NMSetting8021x:domain-match</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--domain-match">NMSetting8021x:domain-match</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--domain-suffix-match" title="The “domain-suffix-match” property">NMSetting8021x:domain-suffix-match</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--domain-suffix-match">NMSetting8021x:domain-suffix-match</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--eap" title="The “eap” property">NMSetting8021x:eap</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--eap">NMSetting8021x:eap</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--identity" title="The “identity” property">NMSetting8021x:identity</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--identity">NMSetting8021x:identity</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--optional" title="The “optional” property">NMSetting8021x:optional</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--optional">NMSetting8021x:optional</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--pac-file" title="The “pac-file” property">NMSetting8021x:pac-file</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--pac-file">NMSetting8021x:pac-file</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--password" title="The “password” property">NMSetting8021x:password</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--password">NMSetting8021x:password</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--password-flags" title="The “password-flags” property">NMSetting8021x:password-flags</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--password-flags">NMSetting8021x:password-flags</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--password-raw" title="The “password-raw” property">NMSetting8021x:password-raw</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--password-raw">NMSetting8021x:password-raw</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--password-raw-flags" title="The “password-raw-flags” property">NMSetting8021x:password-raw-flags</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--password-raw-flags">NMSetting8021x:password-raw-flags</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase1-auth-flags" title="The “phase1-auth-flags” property">NMSetting8021x:phase1-auth-flags</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--phase1-auth-flags">NMSetting8021x:phase1-auth-flags</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase1-fast-provisioning" title="The “phase1-fast-provisioning” property">NMSetting8021x:phase1-fast-provisioning</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--phase1-fast-provisioning">NMSetting8021x:phase1-fast-provisioning</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase1-peaplabel" title="The “phase1-peaplabel” property">NMSetting8021x:phase1-peaplabel</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--phase1-peaplabel">NMSetting8021x:phase1-peaplabel</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase1-peapver" title="The “phase1-peapver” property">NMSetting8021x:phase1-peapver</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--phase1-peapver">NMSetting8021x:phase1-peapver</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-altsubject-matches" title="The “phase2-altsubject-matches” property">NMSetting8021x:phase2-altsubject-matches</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--phase2-altsubject-matches">NMSetting8021x:phase2-altsubject-matches</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-auth" title="The “phase2-auth” property">NMSetting8021x:phase2-auth</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--phase2-auth">NMSetting8021x:phase2-auth</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-autheap" title="The “phase2-autheap” property">NMSetting8021x:phase2-autheap</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--phase2-autheap">NMSetting8021x:phase2-autheap</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-ca-cert" title="The “phase2-ca-cert” property">NMSetting8021x:phase2-ca-cert</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--phase2-ca-cert">NMSetting8021x:phase2-ca-cert</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-ca-cert-password" title="The “phase2-ca-cert-password” property">NMSetting8021x:phase2-ca-cert-password</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--phase2-ca-cert-password">NMSetting8021x:phase2-ca-cert-password</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-ca-cert-password-flags" title="The “phase2-ca-cert-password-flags” property">NMSetting8021x:phase2-ca-cert-password-flags</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--phase2-ca-cert-password-flags">NMSetting8021x:phase2-ca-cert-password-flags</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-ca-path" title="The “phase2-ca-path” property">NMSetting8021x:phase2-ca-path</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--phase2-ca-path">NMSetting8021x:phase2-ca-path</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-client-cert" title="The “phase2-client-cert” property">NMSetting8021x:phase2-client-cert</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--phase2-client-cert">NMSetting8021x:phase2-client-cert</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-client-cert-password" title="The “phase2-client-cert-password” property">NMSetting8021x:phase2-client-cert-password</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--phase2-client-cert-password">NMSetting8021x:phase2-client-cert-password</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-client-cert-password-flags" title="The “phase2-client-cert-password-flags” property">NMSetting8021x:phase2-client-cert-password-flags</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--phase2-client-cert-password-flags">NMSetting8021x:phase2-client-cert-password-flags</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-domain-match" title="The “phase2-domain-match” property">NMSetting8021x:phase2-domain-match</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--phase2-domain-match">NMSetting8021x:phase2-domain-match</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-domain-suffix-match" title="The “phase2-domain-suffix-match” property">NMSetting8021x:phase2-domain-suffix-match</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--phase2-domain-suffix-match">NMSetting8021x:phase2-domain-suffix-match</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-private-key" title="The “phase2-private-key” property">NMSetting8021x:phase2-private-key</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--phase2-private-key">NMSetting8021x:phase2-private-key</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-private-key-password" title="The “phase2-private-key-password” property">NMSetting8021x:phase2-private-key-password</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--phase2-private-key-password">NMSetting8021x:phase2-private-key-password</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-private-key-password-flags" title="The “phase2-private-key-password-flags” property">NMSetting8021x:phase2-private-key-password-flags</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--phase2-private-key-password-flags">NMSetting8021x:phase2-private-key-password-flags</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--phase2-subject-match" title="The “phase2-subject-match” property">NMSetting8021x:phase2-subject-match</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--phase2-subject-match">NMSetting8021x:phase2-subject-match</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--pin" title="The “pin” property">NMSetting8021x:pin</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--pin">NMSetting8021x:pin</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--pin-flags" title="The “pin-flags” property">NMSetting8021x:pin-flags</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--pin-flags">NMSetting8021x:pin-flags</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--private-key" title="The “private-key” property">NMSetting8021x:private-key</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--private-key">NMSetting8021x:private-key</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--private-key-password" title="The “private-key-password” property">NMSetting8021x:private-key-password</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--private-key-password">NMSetting8021x:private-key-password</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--private-key-password-flags" title="The “private-key-password-flags” property">NMSetting8021x:private-key-password-flags</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--private-key-password-flags">NMSetting8021x:private-key-password-flags</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--subject-match" title="The “subject-match” property">NMSetting8021x:subject-match</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--subject-match">NMSetting8021x:subject-match</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSetting8021x.html#NMSetting8021x--system-ca-certs" title="The “system-ca-certs” property">NMSetting8021x:system-ca-certs</a>, object property in <a class="link" href="NMSetting8021x.html" title="NMSetting8021x">NMSetting8021x</a> +<a href="NMSetting8021x.html#NMSetting8021x--system-ca-certs">NMSetting8021x:system-ca-certs</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> @@ -1889,67 +1881,59 @@ NMSetting6Lowpan:parent, object property in NMSettingOvs </dt> <dd></dd> <dt> -NMSetting8021xSchemeType, enum in nm-meta-setting-base-impl -</dt> -<dd></dd> -<dt> -NMSetting8021xSchemeVtable, struct in nm-meta-setting-base-impl -</dt> -<dd></dd> -<dt> -<a class="link" href="NMSetting.html#NMSetting--name" title="The “name” property">NMSetting:name</a>, object property in <a class="link" href="NMSetting.html" title="NMSetting">NMSetting</a> +<a href="NMSetting.html#NMSetting--name">NMSetting:name</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingAdsl.html#NMSettingAdsl-struct" title="NMSettingAdsl">NMSettingAdsl</a>, struct in <a class="link" href="NMSettingAdsl.html" title="NMSettingAdsl">NMSettingAdsl</a> +<a href="NMSettingAdsl.html#NMSettingAdsl-struct">NMSettingAdsl</a>, struct in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingAdsl.html#NMSettingAdsl--encapsulation" title="The “encapsulation” property">NMSettingAdsl:encapsulation</a>, object property in <a class="link" href="NMSettingAdsl.html" title="NMSettingAdsl">NMSettingAdsl</a> +<a href="NMSettingAdsl.html#NMSettingAdsl--encapsulation">NMSettingAdsl:encapsulation</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingAdsl.html#NMSettingAdsl--password" title="The “password” property">NMSettingAdsl:password</a>, object property in <a class="link" href="NMSettingAdsl.html" title="NMSettingAdsl">NMSettingAdsl</a> +<a href="NMSettingAdsl.html#NMSettingAdsl--password">NMSettingAdsl:password</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingAdsl.html#NMSettingAdsl--password-flags" title="The “password-flags” property">NMSettingAdsl:password-flags</a>, object property in <a class="link" href="NMSettingAdsl.html" title="NMSettingAdsl">NMSettingAdsl</a> +<a href="NMSettingAdsl.html#NMSettingAdsl--password-flags">NMSettingAdsl:password-flags</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingAdsl.html#NMSettingAdsl--protocol" title="The “protocol” property">NMSettingAdsl:protocol</a>, object property in <a class="link" href="NMSettingAdsl.html" title="NMSettingAdsl">NMSettingAdsl</a> +<a href="NMSettingAdsl.html#NMSettingAdsl--protocol">NMSettingAdsl:protocol</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingAdsl.html#NMSettingAdsl--username" title="The “username” property">NMSettingAdsl:username</a>, object property in <a class="link" href="NMSettingAdsl.html" title="NMSettingAdsl">NMSettingAdsl</a> +<a href="NMSettingAdsl.html#NMSettingAdsl--username">NMSettingAdsl:username</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingAdsl.html#NMSettingAdsl--vci" title="The “vci” property">NMSettingAdsl:vci</a>, object property in <a class="link" href="NMSettingAdsl.html" title="NMSettingAdsl">NMSettingAdsl</a> +<a href="NMSettingAdsl.html#NMSettingAdsl--vci">NMSettingAdsl:vci</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingAdsl.html#NMSettingAdsl--vpi" title="The “vpi” property">NMSettingAdsl:vpi</a>, object property in <a class="link" href="NMSettingAdsl.html" title="NMSettingAdsl">NMSettingAdsl</a> +<a href="NMSettingAdsl.html#NMSettingAdsl--vpi">NMSettingAdsl:vpi</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingBluetooth.html#NMSettingBluetooth-struct" title="NMSettingBluetooth">NMSettingBluetooth</a>, struct in <a class="link" href="NMSettingBluetooth.html" title="NMSettingBluetooth">NMSettingBluetooth</a> +<a href="NMSettingBluetooth.html#NMSettingBluetooth-struct">NMSettingBluetooth</a>, struct in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingBluetooth.html#NMSettingBluetooth--bdaddr" title="The “bdaddr” property">NMSettingBluetooth:bdaddr</a>, object property in <a class="link" href="NMSettingBluetooth.html" title="NMSettingBluetooth">NMSettingBluetooth</a> +<a href="NMSettingBluetooth.html#NMSettingBluetooth--bdaddr">NMSettingBluetooth:bdaddr</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingBluetooth.html#NMSettingBluetooth--type" title="The “type” property">NMSettingBluetooth:type</a>, object property in <a class="link" href="NMSettingBluetooth.html" title="NMSettingBluetooth">NMSettingBluetooth</a> +<a href="NMSettingBluetooth.html#NMSettingBluetooth--type">NMSettingBluetooth:type</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingBond.html#NMSettingBond-struct" title="NMSettingBond">NMSettingBond</a>, struct in <a class="link" href="NMSettingBond.html" title="NMSettingBond">NMSettingBond</a> +<a href="NMSettingBond.html#NMSettingBond-struct">NMSettingBond</a>, struct in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingBond.html#NMSettingBond--options" title="The “options” property">NMSettingBond:options</a>, object property in <a class="link" href="NMSettingBond.html" title="NMSettingBond">NMSettingBond</a> +<a href="NMSettingBond.html#NMSettingBond--options">NMSettingBond:options</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> @@ -2065,47 +2049,47 @@ NMSettingBridge:vlans, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingBridgePort.html#NMSettingBridgePort-struct" title="NMSettingBridgePort">NMSettingBridgePort</a>, struct in <a class="link" href="NMSettingBridgePort.html" title="NMSettingBridgePort">NMSettingBridgePort</a> +<a href="NMSettingBridgePort.html#NMSettingBridgePort-struct">NMSettingBridgePort</a>, struct in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingBridgePort.html#NMSettingBridgePort--hairpin-mode" title="The “hairpin-mode” property">NMSettingBridgePort:hairpin-mode</a>, object property in <a class="link" href="NMSettingBridgePort.html" title="NMSettingBridgePort">NMSettingBridgePort</a> +<a href="NMSettingBridgePort.html#NMSettingBridgePort--hairpin-mode">NMSettingBridgePort:hairpin-mode</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingBridgePort.html#NMSettingBridgePort--path-cost" title="The “path-cost” property">NMSettingBridgePort:path-cost</a>, object property in <a class="link" href="NMSettingBridgePort.html" title="NMSettingBridgePort">NMSettingBridgePort</a> +<a href="NMSettingBridgePort.html#NMSettingBridgePort--path-cost">NMSettingBridgePort:path-cost</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingBridgePort.html#NMSettingBridgePort--priority" title="The “priority” property">NMSettingBridgePort:priority</a>, object property in <a class="link" href="NMSettingBridgePort.html" title="NMSettingBridgePort">NMSettingBridgePort</a> +<a href="NMSettingBridgePort.html#NMSettingBridgePort--priority">NMSettingBridgePort:priority</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingBridgePort.html#NMSettingBridgePort--vlans" title="The “vlans” property">NMSettingBridgePort:vlans</a>, object property in <a class="link" href="NMSettingBridgePort.html" title="NMSettingBridgePort">NMSettingBridgePort</a> +<a href="NMSettingBridgePort.html#NMSettingBridgePort--vlans">NMSettingBridgePort:vlans</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingCdma.html#NMSettingCdma-struct" title="NMSettingCdma">NMSettingCdma</a>, struct in <a class="link" href="NMSettingCdma.html" title="NMSettingCdma">NMSettingCdma</a> +<a href="NMSettingCdma.html#NMSettingCdma-struct">NMSettingCdma</a>, struct in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingCdma.html#NMSettingCdma--mtu" title="The “mtu” property">NMSettingCdma:mtu</a>, object property in <a class="link" href="NMSettingCdma.html" title="NMSettingCdma">NMSettingCdma</a> +<a href="NMSettingCdma.html#NMSettingCdma--mtu">NMSettingCdma:mtu</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingCdma.html#NMSettingCdma--number" title="The “number” property">NMSettingCdma:number</a>, object property in <a class="link" href="NMSettingCdma.html" title="NMSettingCdma">NMSettingCdma</a> +<a href="NMSettingCdma.html#NMSettingCdma--number">NMSettingCdma:number</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingCdma.html#NMSettingCdma--password" title="The “password” property">NMSettingCdma:password</a>, object property in <a class="link" href="NMSettingCdma.html" title="NMSettingCdma">NMSettingCdma</a> +<a href="NMSettingCdma.html#NMSettingCdma--password">NMSettingCdma:password</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingCdma.html#NMSettingCdma--password-flags" title="The “password-flags” property">NMSettingCdma:password-flags</a>, object property in <a class="link" href="NMSettingCdma.html" title="NMSettingCdma">NMSettingCdma</a> +<a href="NMSettingCdma.html#NMSettingCdma--password-flags">NMSettingCdma:password-flags</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingCdma.html#NMSettingCdma--username" title="The “username” property">NMSettingCdma:username</a>, object property in <a class="link" href="NMSettingCdma.html" title="NMSettingCdma">NMSettingCdma</a> +<a href="NMSettingCdma.html#NMSettingCdma--username">NMSettingCdma:username</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> @@ -2117,107 +2101,107 @@ NMSettingBridge:vlans, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingConnection.html#NMSettingConnection-struct" title="NMSettingConnection">NMSettingConnection</a>, struct in <a class="link" href="NMSettingConnection.html" title="NMSettingConnection">NMSettingConnection</a> +<a href="NMSettingConnection.html#NMSettingConnection-struct">NMSettingConnection</a>, struct in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingConnection.html#NMSettingConnection--auth-retries" title="The “auth-retries” property">NMSettingConnection:auth-retries</a>, object property in <a class="link" href="NMSettingConnection.html" title="NMSettingConnection">NMSettingConnection</a> +<a href="NMSettingConnection.html#NMSettingConnection--auth-retries">NMSettingConnection:auth-retries</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingConnection.html#NMSettingConnection--autoconnect" title="The “autoconnect” property">NMSettingConnection:autoconnect</a>, object property in <a class="link" href="NMSettingConnection.html" title="NMSettingConnection">NMSettingConnection</a> +<a href="NMSettingConnection.html#NMSettingConnection--autoconnect">NMSettingConnection:autoconnect</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingConnection.html#NMSettingConnection--autoconnect-priority" title="The “autoconnect-priority” property">NMSettingConnection:autoconnect-priority</a>, object property in <a class="link" href="NMSettingConnection.html" title="NMSettingConnection">NMSettingConnection</a> +<a href="NMSettingConnection.html#NMSettingConnection--autoconnect-priority">NMSettingConnection:autoconnect-priority</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingConnection.html#NMSettingConnection--autoconnect-retries" title="The “autoconnect-retries” property">NMSettingConnection:autoconnect-retries</a>, object property in <a class="link" href="NMSettingConnection.html" title="NMSettingConnection">NMSettingConnection</a> +<a href="NMSettingConnection.html#NMSettingConnection--autoconnect-retries">NMSettingConnection:autoconnect-retries</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingConnection.html#NMSettingConnection--autoconnect-slaves" title="The “autoconnect-slaves” property">NMSettingConnection:autoconnect-slaves</a>, object property in <a class="link" href="NMSettingConnection.html" title="NMSettingConnection">NMSettingConnection</a> +<a href="NMSettingConnection.html#NMSettingConnection--autoconnect-slaves">NMSettingConnection:autoconnect-slaves</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingConnection.html#NMSettingConnection--gateway-ping-timeout" title="The “gateway-ping-timeout” property">NMSettingConnection:gateway-ping-timeout</a>, object property in <a class="link" href="NMSettingConnection.html" title="NMSettingConnection">NMSettingConnection</a> +<a href="NMSettingConnection.html#NMSettingConnection--gateway-ping-timeout">NMSettingConnection:gateway-ping-timeout</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingConnection.html#NMSettingConnection--id" title="The “id” property">NMSettingConnection:id</a>, object property in <a class="link" href="NMSettingConnection.html" title="NMSettingConnection">NMSettingConnection</a> +<a href="NMSettingConnection.html#NMSettingConnection--id">NMSettingConnection:id</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingConnection.html#NMSettingConnection--interface-name" title="The “interface-name” property">NMSettingConnection:interface-name</a>, object property in <a class="link" href="NMSettingConnection.html" title="NMSettingConnection">NMSettingConnection</a> +<a href="NMSettingConnection.html#NMSettingConnection--interface-name">NMSettingConnection:interface-name</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingConnection.html#NMSettingConnection--lldp" title="The “lldp” property">NMSettingConnection:lldp</a>, object property in <a class="link" href="NMSettingConnection.html" title="NMSettingConnection">NMSettingConnection</a> +<a href="NMSettingConnection.html#NMSettingConnection--lldp">NMSettingConnection:lldp</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingConnection.html#NMSettingConnection--llmnr" title="The “llmnr” property">NMSettingConnection:llmnr</a>, object property in <a class="link" href="NMSettingConnection.html" title="NMSettingConnection">NMSettingConnection</a> +<a href="NMSettingConnection.html#NMSettingConnection--llmnr">NMSettingConnection:llmnr</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingConnection.html#NMSettingConnection--master" title="The “master” property">NMSettingConnection:master</a>, object property in <a class="link" href="NMSettingConnection.html" title="NMSettingConnection">NMSettingConnection</a> +<a href="NMSettingConnection.html#NMSettingConnection--master">NMSettingConnection:master</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingConnection.html#NMSettingConnection--mdns" title="The “mdns” property">NMSettingConnection:mdns</a>, object property in <a class="link" href="NMSettingConnection.html" title="NMSettingConnection">NMSettingConnection</a> +<a href="NMSettingConnection.html#NMSettingConnection--mdns">NMSettingConnection:mdns</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingConnection.html#NMSettingConnection--metered" title="The “metered” property">NMSettingConnection:metered</a>, object property in <a class="link" href="NMSettingConnection.html" title="NMSettingConnection">NMSettingConnection</a> +<a href="NMSettingConnection.html#NMSettingConnection--metered">NMSettingConnection:metered</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingConnection.html#NMSettingConnection--mud-url" title="The “mud-url” property">NMSettingConnection:mud-url</a>, object property in <a class="link" href="NMSettingConnection.html" title="NMSettingConnection">NMSettingConnection</a> +<a href="NMSettingConnection.html#NMSettingConnection--mud-url">NMSettingConnection:mud-url</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingConnection.html#NMSettingConnection--multi-connect" title="The “multi-connect” property">NMSettingConnection:multi-connect</a>, object property in <a class="link" href="NMSettingConnection.html" title="NMSettingConnection">NMSettingConnection</a> +<a href="NMSettingConnection.html#NMSettingConnection--multi-connect">NMSettingConnection:multi-connect</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingConnection.html#NMSettingConnection--permissions" title="The “permissions” property">NMSettingConnection:permissions</a>, object property in <a class="link" href="NMSettingConnection.html" title="NMSettingConnection">NMSettingConnection</a> +<a href="NMSettingConnection.html#NMSettingConnection--permissions">NMSettingConnection:permissions</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingConnection.html#NMSettingConnection--read-only" title="The “read-only” property">NMSettingConnection:read-only</a>, object property in <a class="link" href="NMSettingConnection.html" title="NMSettingConnection">NMSettingConnection</a> +<a href="NMSettingConnection.html#NMSettingConnection--read-only">NMSettingConnection:read-only</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingConnection.html#NMSettingConnection--secondaries" title="The “secondaries” property">NMSettingConnection:secondaries</a>, object property in <a class="link" href="NMSettingConnection.html" title="NMSettingConnection">NMSettingConnection</a> +<a href="NMSettingConnection.html#NMSettingConnection--secondaries">NMSettingConnection:secondaries</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingConnection.html#NMSettingConnection--slave-type" title="The “slave-type” property">NMSettingConnection:slave-type</a>, object property in <a class="link" href="NMSettingConnection.html" title="NMSettingConnection">NMSettingConnection</a> +<a href="NMSettingConnection.html#NMSettingConnection--slave-type">NMSettingConnection:slave-type</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingConnection.html#NMSettingConnection--stable-id" title="The “stable-id” property">NMSettingConnection:stable-id</a>, object property in <a class="link" href="NMSettingConnection.html" title="NMSettingConnection">NMSettingConnection</a> +<a href="NMSettingConnection.html#NMSettingConnection--stable-id">NMSettingConnection:stable-id</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingConnection.html#NMSettingConnection--timestamp" title="The “timestamp” property">NMSettingConnection:timestamp</a>, object property in <a class="link" href="NMSettingConnection.html" title="NMSettingConnection">NMSettingConnection</a> +<a href="NMSettingConnection.html#NMSettingConnection--timestamp">NMSettingConnection:timestamp</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingConnection.html#NMSettingConnection--type" title="The “type” property">NMSettingConnection:type</a>, object property in <a class="link" href="NMSettingConnection.html" title="NMSettingConnection">NMSettingConnection</a> +<a href="NMSettingConnection.html#NMSettingConnection--type">NMSettingConnection:type</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingConnection.html#NMSettingConnection--uuid" title="The “uuid” property">NMSettingConnection:uuid</a>, object property in <a class="link" href="NMSettingConnection.html" title="NMSettingConnection">NMSettingConnection</a> +<a href="NMSettingConnection.html#NMSettingConnection--uuid">NMSettingConnection:uuid</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingConnection.html#NMSettingConnection--wait-device-timeout" title="The “wait-device-timeout” property">NMSettingConnection:wait-device-timeout</a>, object property in <a class="link" href="NMSettingConnection.html" title="NMSettingConnection">NMSettingConnection</a> +<a href="NMSettingConnection.html#NMSettingConnection--wait-device-timeout">NMSettingConnection:wait-device-timeout</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingConnection.html#NMSettingConnection--zone" title="The “zone” property">NMSettingConnection:zone</a>, object property in <a class="link" href="NMSettingConnection.html" title="NMSettingConnection">NMSettingConnection</a> +<a href="NMSettingConnection.html#NMSettingConnection--zone">NMSettingConnection:zone</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> @@ -2237,67 +2221,67 @@ NMSettingBridge:vlans, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingDcb.html#NMSettingDcb-struct" title="NMSettingDcb">NMSettingDcb</a>, struct in <a class="link" href="NMSettingDcb.html" title="NMSettingDcb">NMSettingDcb</a> +<a href="NMSettingDcb.html#NMSettingDcb-struct">NMSettingDcb</a>, struct in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingDcb.html#NMSettingDcb--app-fcoe-flags" title="The “app-fcoe-flags” property">NMSettingDcb:app-fcoe-flags</a>, object property in <a class="link" href="NMSettingDcb.html" title="NMSettingDcb">NMSettingDcb</a> +<a href="NMSettingDcb.html#NMSettingDcb--app-fcoe-flags">NMSettingDcb:app-fcoe-flags</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingDcb.html#NMSettingDcb--app-fcoe-mode" title="The “app-fcoe-mode” property">NMSettingDcb:app-fcoe-mode</a>, object property in <a class="link" href="NMSettingDcb.html" title="NMSettingDcb">NMSettingDcb</a> +<a href="NMSettingDcb.html#NMSettingDcb--app-fcoe-mode">NMSettingDcb:app-fcoe-mode</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingDcb.html#NMSettingDcb--app-fcoe-priority" title="The “app-fcoe-priority” property">NMSettingDcb:app-fcoe-priority</a>, object property in <a class="link" href="NMSettingDcb.html" title="NMSettingDcb">NMSettingDcb</a> +<a href="NMSettingDcb.html#NMSettingDcb--app-fcoe-priority">NMSettingDcb:app-fcoe-priority</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingDcb.html#NMSettingDcb--app-fip-flags" title="The “app-fip-flags” property">NMSettingDcb:app-fip-flags</a>, object property in <a class="link" href="NMSettingDcb.html" title="NMSettingDcb">NMSettingDcb</a> +<a href="NMSettingDcb.html#NMSettingDcb--app-fip-flags">NMSettingDcb:app-fip-flags</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingDcb.html#NMSettingDcb--app-fip-priority" title="The “app-fip-priority” property">NMSettingDcb:app-fip-priority</a>, object property in <a class="link" href="NMSettingDcb.html" title="NMSettingDcb">NMSettingDcb</a> +<a href="NMSettingDcb.html#NMSettingDcb--app-fip-priority">NMSettingDcb:app-fip-priority</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingDcb.html#NMSettingDcb--app-iscsi-flags" title="The “app-iscsi-flags” property">NMSettingDcb:app-iscsi-flags</a>, object property in <a class="link" href="NMSettingDcb.html" title="NMSettingDcb">NMSettingDcb</a> +<a href="NMSettingDcb.html#NMSettingDcb--app-iscsi-flags">NMSettingDcb:app-iscsi-flags</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingDcb.html#NMSettingDcb--app-iscsi-priority" title="The “app-iscsi-priority” property">NMSettingDcb:app-iscsi-priority</a>, object property in <a class="link" href="NMSettingDcb.html" title="NMSettingDcb">NMSettingDcb</a> +<a href="NMSettingDcb.html#NMSettingDcb--app-iscsi-priority">NMSettingDcb:app-iscsi-priority</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingDcb.html#NMSettingDcb--priority-bandwidth" title="The “priority-bandwidth” property">NMSettingDcb:priority-bandwidth</a>, object property in <a class="link" href="NMSettingDcb.html" title="NMSettingDcb">NMSettingDcb</a> +<a href="NMSettingDcb.html#NMSettingDcb--priority-bandwidth">NMSettingDcb:priority-bandwidth</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingDcb.html#NMSettingDcb--priority-flow-control" title="The “priority-flow-control” property">NMSettingDcb:priority-flow-control</a>, object property in <a class="link" href="NMSettingDcb.html" title="NMSettingDcb">NMSettingDcb</a> +<a href="NMSettingDcb.html#NMSettingDcb--priority-flow-control">NMSettingDcb:priority-flow-control</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingDcb.html#NMSettingDcb--priority-flow-control-flags" title="The “priority-flow-control-flags” property">NMSettingDcb:priority-flow-control-flags</a>, object property in <a class="link" href="NMSettingDcb.html" title="NMSettingDcb">NMSettingDcb</a> +<a href="NMSettingDcb.html#NMSettingDcb--priority-flow-control-flags">NMSettingDcb:priority-flow-control-flags</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingDcb.html#NMSettingDcb--priority-group-bandwidth" title="The “priority-group-bandwidth” property">NMSettingDcb:priority-group-bandwidth</a>, object property in <a class="link" href="NMSettingDcb.html" title="NMSettingDcb">NMSettingDcb</a> +<a href="NMSettingDcb.html#NMSettingDcb--priority-group-bandwidth">NMSettingDcb:priority-group-bandwidth</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingDcb.html#NMSettingDcb--priority-group-flags" title="The “priority-group-flags” property">NMSettingDcb:priority-group-flags</a>, object property in <a class="link" href="NMSettingDcb.html" title="NMSettingDcb">NMSettingDcb</a> +<a href="NMSettingDcb.html#NMSettingDcb--priority-group-flags">NMSettingDcb:priority-group-flags</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingDcb.html#NMSettingDcb--priority-group-id" title="The “priority-group-id” property">NMSettingDcb:priority-group-id</a>, object property in <a class="link" href="NMSettingDcb.html" title="NMSettingDcb">NMSettingDcb</a> +<a href="NMSettingDcb.html#NMSettingDcb--priority-group-id">NMSettingDcb:priority-group-id</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingDcb.html#NMSettingDcb--priority-strict-bandwidth" title="The “priority-strict-bandwidth” property">NMSettingDcb:priority-strict-bandwidth</a>, object property in <a class="link" href="NMSettingDcb.html" title="NMSettingDcb">NMSettingDcb</a> +<a href="NMSettingDcb.html#NMSettingDcb--priority-strict-bandwidth">NMSettingDcb:priority-strict-bandwidth</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingDcb.html#NMSettingDcb--priority-traffic-class" title="The “priority-traffic-class” property">NMSettingDcb:priority-traffic-class</a>, object property in <a class="link" href="NMSettingDcb.html" title="NMSettingDcb">NMSettingDcb</a> +<a href="NMSettingDcb.html#NMSettingDcb--priority-traffic-class">NMSettingDcb:priority-traffic-class</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> @@ -2309,7 +2293,7 @@ NMSettingBridge:vlans, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingDummy.html#NMSettingDummy-struct" title="NMSettingDummy">NMSettingDummy</a>, struct in <a class="link" href="NMSettingDummy.html" title="NMSettingDummy">NMSettingDummy</a> +<a href="NMSettingDummy.html#NMSettingDummy-struct">NMSettingDummy</a>, struct in NMSettingOvs </dt> <dd></dd> <dt> @@ -2317,67 +2301,67 @@ NMSettingEthtool, struct in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingGeneric.html#NMSettingGeneric-struct" title="NMSettingGeneric">NMSettingGeneric</a>, struct in <a class="link" href="NMSettingGeneric.html" title="NMSettingGeneric">NMSettingGeneric</a> +<a href="NMSettingGeneric.html#NMSettingGeneric-struct">NMSettingGeneric</a>, struct in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingGsm.html#NMSettingGsm-struct" title="NMSettingGsm">NMSettingGsm</a>, struct in <a class="link" href="NMSettingGsm.html" title="NMSettingGsm">NMSettingGsm</a> +<a href="NMSettingGsm.html#NMSettingGsm-struct">NMSettingGsm</a>, struct in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingGsm.html#NMSettingGsm--apn" title="The “apn” property">NMSettingGsm:apn</a>, object property in <a class="link" href="NMSettingGsm.html" title="NMSettingGsm">NMSettingGsm</a> +<a href="NMSettingGsm.html#NMSettingGsm--apn">NMSettingGsm:apn</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingGsm.html#NMSettingGsm--auto-config" title="The “auto-config” property">NMSettingGsm:auto-config</a>, object property in <a class="link" href="NMSettingGsm.html" title="NMSettingGsm">NMSettingGsm</a> +<a href="NMSettingGsm.html#NMSettingGsm--auto-config">NMSettingGsm:auto-config</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingGsm.html#NMSettingGsm--device-id" title="The “device-id” property">NMSettingGsm:device-id</a>, object property in <a class="link" href="NMSettingGsm.html" title="NMSettingGsm">NMSettingGsm</a> +<a href="NMSettingGsm.html#NMSettingGsm--device-id">NMSettingGsm:device-id</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingGsm.html#NMSettingGsm--home-only" title="The “home-only” property">NMSettingGsm:home-only</a>, object property in <a class="link" href="NMSettingGsm.html" title="NMSettingGsm">NMSettingGsm</a> +<a href="NMSettingGsm.html#NMSettingGsm--home-only">NMSettingGsm:home-only</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingGsm.html#NMSettingGsm--mtu" title="The “mtu” property">NMSettingGsm:mtu</a>, object property in <a class="link" href="NMSettingGsm.html" title="NMSettingGsm">NMSettingGsm</a> +<a href="NMSettingGsm.html#NMSettingGsm--mtu">NMSettingGsm:mtu</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingGsm.html#NMSettingGsm--network-id" title="The “network-id” property">NMSettingGsm:network-id</a>, object property in <a class="link" href="NMSettingGsm.html" title="NMSettingGsm">NMSettingGsm</a> +<a href="NMSettingGsm.html#NMSettingGsm--network-id">NMSettingGsm:network-id</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingGsm.html#NMSettingGsm--number" title="The “number” property">NMSettingGsm:number</a>, object property in <a class="link" href="NMSettingGsm.html" title="NMSettingGsm">NMSettingGsm</a> +<a href="NMSettingGsm.html#NMSettingGsm--number">NMSettingGsm:number</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingGsm.html#NMSettingGsm--password" title="The “password” property">NMSettingGsm:password</a>, object property in <a class="link" href="NMSettingGsm.html" title="NMSettingGsm">NMSettingGsm</a> +<a href="NMSettingGsm.html#NMSettingGsm--password">NMSettingGsm:password</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingGsm.html#NMSettingGsm--password-flags" title="The “password-flags” property">NMSettingGsm:password-flags</a>, object property in <a class="link" href="NMSettingGsm.html" title="NMSettingGsm">NMSettingGsm</a> +<a href="NMSettingGsm.html#NMSettingGsm--password-flags">NMSettingGsm:password-flags</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingGsm.html#NMSettingGsm--pin" title="The “pin” property">NMSettingGsm:pin</a>, object property in <a class="link" href="NMSettingGsm.html" title="NMSettingGsm">NMSettingGsm</a> +<a href="NMSettingGsm.html#NMSettingGsm--pin">NMSettingGsm:pin</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingGsm.html#NMSettingGsm--pin-flags" title="The “pin-flags” property">NMSettingGsm:pin-flags</a>, object property in <a class="link" href="NMSettingGsm.html" title="NMSettingGsm">NMSettingGsm</a> +<a href="NMSettingGsm.html#NMSettingGsm--pin-flags">NMSettingGsm:pin-flags</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingGsm.html#NMSettingGsm--sim-id" title="The “sim-id” property">NMSettingGsm:sim-id</a>, object property in <a class="link" href="NMSettingGsm.html" title="NMSettingGsm">NMSettingGsm</a> +<a href="NMSettingGsm.html#NMSettingGsm--sim-id">NMSettingGsm:sim-id</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingGsm.html#NMSettingGsm--sim-operator-id" title="The “sim-operator-id” property">NMSettingGsm:sim-operator-id</a>, object property in <a class="link" href="NMSettingGsm.html" title="NMSettingGsm">NMSettingGsm</a> +<a href="NMSettingGsm.html#NMSettingGsm--sim-operator-id">NMSettingGsm:sim-operator-id</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingGsm.html#NMSettingGsm--username" title="The “username” property">NMSettingGsm:username</a>, object property in <a class="link" href="NMSettingGsm.html" title="NMSettingGsm">NMSettingGsm</a> +<a href="NMSettingGsm.html#NMSettingGsm--username">NMSettingGsm:username</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> @@ -2401,67 +2385,67 @@ NMSettingHostname:priority, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingInfiniband.html#NMSettingInfiniband-struct" title="NMSettingInfiniband">NMSettingInfiniband</a>, struct in <a class="link" href="NMSettingInfiniband.html" title="NMSettingInfiniband">NMSettingInfiniband</a> +<a href="NMSettingInfiniband.html#NMSettingInfiniband-struct">NMSettingInfiniband</a>, struct in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingInfiniband.html#NMSettingInfiniband--mac-address" title="The “mac-address” property">NMSettingInfiniband:mac-address</a>, object property in <a class="link" href="NMSettingInfiniband.html" title="NMSettingInfiniband">NMSettingInfiniband</a> +<a href="NMSettingInfiniband.html#NMSettingInfiniband--mac-address">NMSettingInfiniband:mac-address</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingInfiniband.html#NMSettingInfiniband--mtu" title="The “mtu” property">NMSettingInfiniband:mtu</a>, object property in <a class="link" href="NMSettingInfiniband.html" title="NMSettingInfiniband">NMSettingInfiniband</a> +<a href="NMSettingInfiniband.html#NMSettingInfiniband--mtu">NMSettingInfiniband:mtu</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingInfiniband.html#NMSettingInfiniband--p-key" title="The “p-key” property">NMSettingInfiniband:p-key</a>, object property in <a class="link" href="NMSettingInfiniband.html" title="NMSettingInfiniband">NMSettingInfiniband</a> +<a href="NMSettingInfiniband.html#NMSettingInfiniband--p-key">NMSettingInfiniband:p-key</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingInfiniband.html#NMSettingInfiniband--parent" title="The “parent” property">NMSettingInfiniband:parent</a>, object property in <a class="link" href="NMSettingInfiniband.html" title="NMSettingInfiniband">NMSettingInfiniband</a> +<a href="NMSettingInfiniband.html#NMSettingInfiniband--parent">NMSettingInfiniband:parent</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingInfiniband.html#NMSettingInfiniband--transport-mode" title="The “transport-mode” property">NMSettingInfiniband:transport-mode</a>, object property in <a class="link" href="NMSettingInfiniband.html" title="NMSettingInfiniband">NMSettingInfiniband</a> +<a href="NMSettingInfiniband.html#NMSettingInfiniband--transport-mode">NMSettingInfiniband:transport-mode</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIP4Config.html#NMSettingIP4Config-struct" title="NMSettingIP4Config">NMSettingIP4Config</a>, struct in <a class="link" href="NMSettingIP4Config.html" title="NMSettingIP4Config">NMSettingIP4Config</a> +<a href="NMSettingIP4Config.html#NMSettingIP4Config-struct">NMSettingIP4Config</a>, struct in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIP4Config.html#NMSettingIP4Config--dhcp-client-id" title="The “dhcp-client-id” property">NMSettingIP4Config:dhcp-client-id</a>, object property in <a class="link" href="NMSettingIP4Config.html" title="NMSettingIP4Config">NMSettingIP4Config</a> +<a href="NMSettingIP4Config.html#NMSettingIP4Config--dhcp-client-id">NMSettingIP4Config:dhcp-client-id</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIP4Config.html#NMSettingIP4Config--dhcp-fqdn" title="The “dhcp-fqdn” property">NMSettingIP4Config:dhcp-fqdn</a>, object property in <a class="link" href="NMSettingIP4Config.html" title="NMSettingIP4Config">NMSettingIP4Config</a> +<a href="NMSettingIP4Config.html#NMSettingIP4Config--dhcp-fqdn">NMSettingIP4Config:dhcp-fqdn</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIP4Config.html#NMSettingIP4Config--dhcp-vendor-class-identifier" title="The “dhcp-vendor-class-identifier” property">NMSettingIP4Config:dhcp-vendor-class-identifier</a>, object property in <a class="link" href="NMSettingIP4Config.html" title="NMSettingIP4Config">NMSettingIP4Config</a> +<a href="NMSettingIP4Config.html#NMSettingIP4Config--dhcp-vendor-class-identifier">NMSettingIP4Config:dhcp-vendor-class-identifier</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIP6Config.html#NMSettingIP6Config-struct" title="NMSettingIP6Config">NMSettingIP6Config</a>, struct in <a class="link" href="NMSettingIP6Config.html" title="NMSettingIP6Config">NMSettingIP6Config</a> +<a href="NMSettingIP6Config.html#NMSettingIP6Config-struct">NMSettingIP6Config</a>, struct in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIP6Config.html#NMSettingIP6Config--addr-gen-mode" title="The “addr-gen-mode” property">NMSettingIP6Config:addr-gen-mode</a>, object property in <a class="link" href="NMSettingIP6Config.html" title="NMSettingIP6Config">NMSettingIP6Config</a> +<a href="NMSettingIP6Config.html#NMSettingIP6Config--addr-gen-mode">NMSettingIP6Config:addr-gen-mode</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIP6Config.html#NMSettingIP6Config--dhcp-duid" title="The “dhcp-duid” property">NMSettingIP6Config:dhcp-duid</a>, object property in <a class="link" href="NMSettingIP6Config.html" title="NMSettingIP6Config">NMSettingIP6Config</a> +<a href="NMSettingIP6Config.html#NMSettingIP6Config--dhcp-duid">NMSettingIP6Config:dhcp-duid</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIP6Config.html#NMSettingIP6Config--ip6-privacy" title="The “ip6-privacy” property">NMSettingIP6Config:ip6-privacy</a>, object property in <a class="link" href="NMSettingIP6Config.html" title="NMSettingIP6Config">NMSettingIP6Config</a> +<a href="NMSettingIP6Config.html#NMSettingIP6Config--ip6-privacy">NMSettingIP6Config:ip6-privacy</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIP6Config.html#NMSettingIP6Config--ra-timeout" title="The “ra-timeout” property">NMSettingIP6Config:ra-timeout</a>, object property in <a class="link" href="NMSettingIP6Config.html" title="NMSettingIP6Config">NMSettingIP6Config</a> +<a href="NMSettingIP6Config.html#NMSettingIP6Config--ra-timeout">NMSettingIP6Config:ra-timeout</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIP6Config.html#NMSettingIP6Config--token" title="The “token” property">NMSettingIP6Config:token</a>, object property in <a class="link" href="NMSettingIP6Config.html" title="NMSettingIP6Config">NMSettingIP6Config</a> +<a href="NMSettingIP6Config.html#NMSettingIP6Config--token">NMSettingIP6Config:token</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> @@ -2473,147 +2457,151 @@ NMSettingHostname:priority, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig-struct" title="NMSettingIPConfig">NMSettingIPConfig</a>, struct in <a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig">NMSettingIPConfig</a> +<a href="NMSettingIPConfig.html#NMSettingIPConfig-struct">NMSettingIPConfig</a>, struct in NMSettingOvs +</dt> +<dd></dd> +<dt> +<a href="NMSettingIPConfig.html#NMSettingIPConfig--addresses">NMSettingIPConfig:addresses</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--addresses" title="The “addresses” property">NMSettingIPConfig:addresses</a>, object property in <a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig">NMSettingIPConfig</a> +<a href="NMSettingIPConfig.html#NMSettingIPConfig--dad-timeout">NMSettingIPConfig:dad-timeout</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--dad-timeout" title="The “dad-timeout” property">NMSettingIPConfig:dad-timeout</a>, object property in <a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig">NMSettingIPConfig</a> +<a href="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-hostname">NMSettingIPConfig:dhcp-hostname</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-hostname" title="The “dhcp-hostname” property">NMSettingIPConfig:dhcp-hostname</a>, object property in <a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig">NMSettingIPConfig</a> +<a href="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-hostname-flags">NMSettingIPConfig:dhcp-hostname-flags</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-hostname-flags" title="The “dhcp-hostname-flags” property">NMSettingIPConfig:dhcp-hostname-flags</a>, object property in <a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig">NMSettingIPConfig</a> +<a href="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-iaid">NMSettingIPConfig:dhcp-iaid</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-iaid" title="The “dhcp-iaid” property">NMSettingIPConfig:dhcp-iaid</a>, object property in <a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig">NMSettingIPConfig</a> +<a href="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-reject-servers">NMSettingIPConfig:dhcp-reject-servers</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-reject-servers" title="The “dhcp-reject-servers” property">NMSettingIPConfig:dhcp-reject-servers</a>, object property in <a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig">NMSettingIPConfig</a> +<a href="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-send-hostname">NMSettingIPConfig:dhcp-send-hostname</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-send-hostname" title="The “dhcp-send-hostname” property">NMSettingIPConfig:dhcp-send-hostname</a>, object property in <a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig">NMSettingIPConfig</a> +<a href="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-timeout">NMSettingIPConfig:dhcp-timeout</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-timeout" title="The “dhcp-timeout” property">NMSettingIPConfig:dhcp-timeout</a>, object property in <a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig">NMSettingIPConfig</a> +<a href="NMSettingIPConfig.html#NMSettingIPConfig--dns">NMSettingIPConfig:dns</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--dns" title="The “dns” property">NMSettingIPConfig:dns</a>, object property in <a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig">NMSettingIPConfig</a> +<a href="NMSettingIPConfig.html#NMSettingIPConfig--dns-options">NMSettingIPConfig:dns-options</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--dns-options" title="The “dns-options” property">NMSettingIPConfig:dns-options</a>, object property in <a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig">NMSettingIPConfig</a> +<a href="NMSettingIPConfig.html#NMSettingIPConfig--dns-priority">NMSettingIPConfig:dns-priority</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--dns-priority" title="The “dns-priority” property">NMSettingIPConfig:dns-priority</a>, object property in <a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig">NMSettingIPConfig</a> +<a href="NMSettingIPConfig.html#NMSettingIPConfig--dns-search">NMSettingIPConfig:dns-search</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--dns-search" title="The “dns-search” property">NMSettingIPConfig:dns-search</a>, object property in <a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig">NMSettingIPConfig</a> +<a href="NMSettingIPConfig.html#NMSettingIPConfig--gateway">NMSettingIPConfig:gateway</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--gateway" title="The “gateway” property">NMSettingIPConfig:gateway</a>, object property in <a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig">NMSettingIPConfig</a> +<a href="NMSettingIPConfig.html#NMSettingIPConfig--ignore-auto-dns">NMSettingIPConfig:ignore-auto-dns</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--ignore-auto-dns" title="The “ignore-auto-dns” property">NMSettingIPConfig:ignore-auto-dns</a>, object property in <a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig">NMSettingIPConfig</a> +<a href="NMSettingIPConfig.html#NMSettingIPConfig--ignore-auto-routes">NMSettingIPConfig:ignore-auto-routes</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--ignore-auto-routes" title="The “ignore-auto-routes” property">NMSettingIPConfig:ignore-auto-routes</a>, object property in <a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig">NMSettingIPConfig</a> +<a href="NMSettingIPConfig.html#NMSettingIPConfig--may-fail">NMSettingIPConfig:may-fail</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--may-fail" title="The “may-fail” property">NMSettingIPConfig:may-fail</a>, object property in <a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig">NMSettingIPConfig</a> +<a href="NMSettingIPConfig.html#NMSettingIPConfig--method">NMSettingIPConfig:method</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--method" title="The “method” property">NMSettingIPConfig:method</a>, object property in <a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig">NMSettingIPConfig</a> +<a href="NMSettingIPConfig.html#NMSettingIPConfig--never-default">NMSettingIPConfig:never-default</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--never-default" title="The “never-default” property">NMSettingIPConfig:never-default</a>, object property in <a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig">NMSettingIPConfig</a> +NMSettingIPConfig:required-timeout, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--route-metric" title="The “route-metric” property">NMSettingIPConfig:route-metric</a>, object property in <a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig">NMSettingIPConfig</a> +<a href="NMSettingIPConfig.html#NMSettingIPConfig--route-metric">NMSettingIPConfig:route-metric</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--route-table" title="The “route-table” property">NMSettingIPConfig:route-table</a>, object property in <a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig">NMSettingIPConfig</a> +<a href="NMSettingIPConfig.html#NMSettingIPConfig--route-table">NMSettingIPConfig:route-table</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIPConfig.html#NMSettingIPConfig--routes" title="The “routes” property">NMSettingIPConfig:routes</a>, object property in <a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig">NMSettingIPConfig</a> +<a href="NMSettingIPConfig.html#NMSettingIPConfig--routes">NMSettingIPConfig:routes</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel-struct" title="NMSettingIPTunnel">NMSettingIPTunnel</a>, struct in <a class="link" href="NMSettingIPTunnel.html" title="NMSettingIPTunnel">NMSettingIPTunnel</a> +<a href="NMSettingIPTunnel.html#NMSettingIPTunnel-struct">NMSettingIPTunnel</a>, struct in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--encapsulation-limit" title="The “encapsulation-limit” property">NMSettingIPTunnel:encapsulation-limit</a>, object property in <a class="link" href="NMSettingIPTunnel.html" title="NMSettingIPTunnel">NMSettingIPTunnel</a> +<a href="NMSettingIPTunnel.html#NMSettingIPTunnel--encapsulation-limit">NMSettingIPTunnel:encapsulation-limit</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--flags" title="The “flags” property">NMSettingIPTunnel:flags</a>, object property in <a class="link" href="NMSettingIPTunnel.html" title="NMSettingIPTunnel">NMSettingIPTunnel</a> +<a href="NMSettingIPTunnel.html#NMSettingIPTunnel--flags">NMSettingIPTunnel:flags</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--flow-label" title="The “flow-label” property">NMSettingIPTunnel:flow-label</a>, object property in <a class="link" href="NMSettingIPTunnel.html" title="NMSettingIPTunnel">NMSettingIPTunnel</a> +<a href="NMSettingIPTunnel.html#NMSettingIPTunnel--flow-label">NMSettingIPTunnel:flow-label</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--input-key" title="The “input-key” property">NMSettingIPTunnel:input-key</a>, object property in <a class="link" href="NMSettingIPTunnel.html" title="NMSettingIPTunnel">NMSettingIPTunnel</a> +<a href="NMSettingIPTunnel.html#NMSettingIPTunnel--input-key">NMSettingIPTunnel:input-key</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--local" title="The “local” property">NMSettingIPTunnel:local</a>, object property in <a class="link" href="NMSettingIPTunnel.html" title="NMSettingIPTunnel">NMSettingIPTunnel</a> +<a href="NMSettingIPTunnel.html#NMSettingIPTunnel--local">NMSettingIPTunnel:local</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--mode" title="The “mode” property">NMSettingIPTunnel:mode</a>, object property in <a class="link" href="NMSettingIPTunnel.html" title="NMSettingIPTunnel">NMSettingIPTunnel</a> +<a href="NMSettingIPTunnel.html#NMSettingIPTunnel--mode">NMSettingIPTunnel:mode</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--mtu" title="The “mtu” property">NMSettingIPTunnel:mtu</a>, object property in <a class="link" href="NMSettingIPTunnel.html" title="NMSettingIPTunnel">NMSettingIPTunnel</a> +<a href="NMSettingIPTunnel.html#NMSettingIPTunnel--mtu">NMSettingIPTunnel:mtu</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--output-key" title="The “output-key” property">NMSettingIPTunnel:output-key</a>, object property in <a class="link" href="NMSettingIPTunnel.html" title="NMSettingIPTunnel">NMSettingIPTunnel</a> +<a href="NMSettingIPTunnel.html#NMSettingIPTunnel--output-key">NMSettingIPTunnel:output-key</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--parent" title="The “parent” property">NMSettingIPTunnel:parent</a>, object property in <a class="link" href="NMSettingIPTunnel.html" title="NMSettingIPTunnel">NMSettingIPTunnel</a> +<a href="NMSettingIPTunnel.html#NMSettingIPTunnel--parent">NMSettingIPTunnel:parent</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--path-mtu-discovery" title="The “path-mtu-discovery” property">NMSettingIPTunnel:path-mtu-discovery</a>, object property in <a class="link" href="NMSettingIPTunnel.html" title="NMSettingIPTunnel">NMSettingIPTunnel</a> +<a href="NMSettingIPTunnel.html#NMSettingIPTunnel--path-mtu-discovery">NMSettingIPTunnel:path-mtu-discovery</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--remote" title="The “remote” property">NMSettingIPTunnel:remote</a>, object property in <a class="link" href="NMSettingIPTunnel.html" title="NMSettingIPTunnel">NMSettingIPTunnel</a> +<a href="NMSettingIPTunnel.html#NMSettingIPTunnel--remote">NMSettingIPTunnel:remote</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--tos" title="The “tos” property">NMSettingIPTunnel:tos</a>, object property in <a class="link" href="NMSettingIPTunnel.html" title="NMSettingIPTunnel">NMSettingIPTunnel</a> +<a href="NMSettingIPTunnel.html#NMSettingIPTunnel--tos">NMSettingIPTunnel:tos</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingIPTunnel.html#NMSettingIPTunnel--ttl" title="The “ttl” property">NMSettingIPTunnel:ttl</a>, object property in <a class="link" href="NMSettingIPTunnel.html" title="NMSettingIPTunnel">NMSettingIPTunnel</a> +<a href="NMSettingIPTunnel.html#NMSettingIPTunnel--ttl">NMSettingIPTunnel:ttl</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> @@ -2621,43 +2609,43 @@ NMSettingHostname:priority, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingMacsec.html#NMSettingMacsec-struct" title="NMSettingMacsec">NMSettingMacsec</a>, struct in <a class="link" href="NMSettingMacsec.html" title="NMSettingMacsec">NMSettingMacsec</a> +<a href="NMSettingMacsec.html#NMSettingMacsec-struct">NMSettingMacsec</a>, struct in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingMacsec.html#NMSettingMacsec--encrypt" title="The “encrypt” property">NMSettingMacsec:encrypt</a>, object property in <a class="link" href="NMSettingMacsec.html" title="NMSettingMacsec">NMSettingMacsec</a> +<a href="NMSettingMacsec.html#NMSettingMacsec--encrypt">NMSettingMacsec:encrypt</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingMacsec.html#NMSettingMacsec--mka-cak" title="The “mka-cak” property">NMSettingMacsec:mka-cak</a>, object property in <a class="link" href="NMSettingMacsec.html" title="NMSettingMacsec">NMSettingMacsec</a> +<a href="NMSettingMacsec.html#NMSettingMacsec--mka-cak">NMSettingMacsec:mka-cak</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingMacsec.html#NMSettingMacsec--mka-cak-flags" title="The “mka-cak-flags” property">NMSettingMacsec:mka-cak-flags</a>, object property in <a class="link" href="NMSettingMacsec.html" title="NMSettingMacsec">NMSettingMacsec</a> +<a href="NMSettingMacsec.html#NMSettingMacsec--mka-cak-flags">NMSettingMacsec:mka-cak-flags</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingMacsec.html#NMSettingMacsec--mka-ckn" title="The “mka-ckn” property">NMSettingMacsec:mka-ckn</a>, object property in <a class="link" href="NMSettingMacsec.html" title="NMSettingMacsec">NMSettingMacsec</a> +<a href="NMSettingMacsec.html#NMSettingMacsec--mka-ckn">NMSettingMacsec:mka-ckn</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingMacsec.html#NMSettingMacsec--mode" title="The “mode” property">NMSettingMacsec:mode</a>, object property in <a class="link" href="NMSettingMacsec.html" title="NMSettingMacsec">NMSettingMacsec</a> +<a href="NMSettingMacsec.html#NMSettingMacsec--mode">NMSettingMacsec:mode</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingMacsec.html#NMSettingMacsec--parent" title="The “parent” property">NMSettingMacsec:parent</a>, object property in <a class="link" href="NMSettingMacsec.html" title="NMSettingMacsec">NMSettingMacsec</a> +<a href="NMSettingMacsec.html#NMSettingMacsec--parent">NMSettingMacsec:parent</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingMacsec.html#NMSettingMacsec--port" title="The “port” property">NMSettingMacsec:port</a>, object property in <a class="link" href="NMSettingMacsec.html" title="NMSettingMacsec">NMSettingMacsec</a> +<a href="NMSettingMacsec.html#NMSettingMacsec--port">NMSettingMacsec:port</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingMacsec.html#NMSettingMacsec--send-sci" title="The “send-sci” property">NMSettingMacsec:send-sci</a>, object property in <a class="link" href="NMSettingMacsec.html" title="NMSettingMacsec">NMSettingMacsec</a> +<a href="NMSettingMacsec.html#NMSettingMacsec--send-sci">NMSettingMacsec:send-sci</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingMacsec.html#NMSettingMacsec--validation" title="The “validation” property">NMSettingMacsec:validation</a>, object property in <a class="link" href="NMSettingMacsec.html" title="NMSettingMacsec">NMSettingMacsec</a> +<a href="NMSettingMacsec.html#NMSettingMacsec--validation">NMSettingMacsec:validation</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> @@ -2669,23 +2657,23 @@ NMSettingHostname:priority, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingMacvlan.html#NMSettingMacvlan-struct" title="NMSettingMacvlan">NMSettingMacvlan</a>, struct in <a class="link" href="NMSettingMacvlan.html" title="NMSettingMacvlan">NMSettingMacvlan</a> +<a href="NMSettingMacvlan.html#NMSettingMacvlan-struct">NMSettingMacvlan</a>, struct in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingMacvlan.html#NMSettingMacvlan--mode" title="The “mode” property">NMSettingMacvlan:mode</a>, object property in <a class="link" href="NMSettingMacvlan.html" title="NMSettingMacvlan">NMSettingMacvlan</a> +<a href="NMSettingMacvlan.html#NMSettingMacvlan--mode">NMSettingMacvlan:mode</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingMacvlan.html#NMSettingMacvlan--parent" title="The “parent” property">NMSettingMacvlan:parent</a>, object property in <a class="link" href="NMSettingMacvlan.html" title="NMSettingMacvlan">NMSettingMacvlan</a> +<a href="NMSettingMacvlan.html#NMSettingMacvlan--parent">NMSettingMacvlan:parent</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingMacvlan.html#NMSettingMacvlan--promiscuous" title="The “promiscuous” property">NMSettingMacvlan:promiscuous</a>, object property in <a class="link" href="NMSettingMacvlan.html" title="NMSettingMacvlan">NMSettingMacvlan</a> +<a href="NMSettingMacvlan.html#NMSettingMacvlan--promiscuous">NMSettingMacvlan:promiscuous</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingMacvlan.html#NMSettingMacvlan--tap" title="The “tap” property">NMSettingMacvlan:tap</a>, object property in <a class="link" href="NMSettingMacvlan.html" title="NMSettingMacvlan">NMSettingMacvlan</a> +<a href="NMSettingMacvlan.html#NMSettingMacvlan--tap">NMSettingMacvlan:tap</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> @@ -2713,19 +2701,19 @@ NMSettingMatch:path, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingOlpcMesh.html#NMSettingOlpcMesh-struct" title="NMSettingOlpcMesh">NMSettingOlpcMesh</a>, struct in <a class="link" href="NMSettingOlpcMesh.html" title="NMSettingOlpcMesh">NMSettingOlpcMesh</a> +<a href="NMSettingOlpcMesh.html#NMSettingOlpcMesh-struct">NMSettingOlpcMesh</a>, struct in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingOlpcMesh.html#NMSettingOlpcMesh--channel" title="The “channel” property">NMSettingOlpcMesh:channel</a>, object property in <a class="link" href="NMSettingOlpcMesh.html" title="NMSettingOlpcMesh">NMSettingOlpcMesh</a> +<a href="NMSettingOlpcMesh.html#NMSettingOlpcMesh--channel">NMSettingOlpcMesh:channel</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingOlpcMesh.html#NMSettingOlpcMesh--dhcp-anycast-address" title="The “dhcp-anycast-address” property">NMSettingOlpcMesh:dhcp-anycast-address</a>, object property in <a class="link" href="NMSettingOlpcMesh.html" title="NMSettingOlpcMesh">NMSettingOlpcMesh</a> +<a href="NMSettingOlpcMesh.html#NMSettingOlpcMesh--dhcp-anycast-address">NMSettingOlpcMesh:dhcp-anycast-address</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingOlpcMesh.html#NMSettingOlpcMesh--ssid" title="The “ssid” property">NMSettingOlpcMesh:ssid</a>, object property in <a class="link" href="NMSettingOlpcMesh.html" title="NMSettingOlpcMesh">NMSettingOlpcMesh</a> +<a href="NMSettingOlpcMesh.html#NMSettingOlpcMesh--ssid">NMSettingOlpcMesh:ssid</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> @@ -2813,127 +2801,123 @@ NMSettingOvsPort:vlan-mode, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingPpp.html#NMSettingPpp-struct" title="NMSettingPpp">NMSettingPpp</a>, struct in <a class="link" href="NMSettingPpp.html" title="NMSettingPpp">NMSettingPpp</a> +<a href="NMSettingPpp.html#NMSettingPpp-struct">NMSettingPpp</a>, struct in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingPpp.html#NMSettingPpp--baud" title="The “baud” property">NMSettingPpp:baud</a>, object property in <a class="link" href="NMSettingPpp.html" title="NMSettingPpp">NMSettingPpp</a> +<a href="NMSettingPpp.html#NMSettingPpp--baud">NMSettingPpp:baud</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingPpp.html#NMSettingPpp--crtscts" title="The “crtscts” property">NMSettingPpp:crtscts</a>, object property in <a class="link" href="NMSettingPpp.html" title="NMSettingPpp">NMSettingPpp</a> +<a href="NMSettingPpp.html#NMSettingPpp--crtscts">NMSettingPpp:crtscts</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingPpp.html#NMSettingPpp--lcp-echo-failure" title="The “lcp-echo-failure” property">NMSettingPpp:lcp-echo-failure</a>, object property in <a class="link" href="NMSettingPpp.html" title="NMSettingPpp">NMSettingPpp</a> +<a href="NMSettingPpp.html#NMSettingPpp--lcp-echo-failure">NMSettingPpp:lcp-echo-failure</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingPpp.html#NMSettingPpp--lcp-echo-interval" title="The “lcp-echo-interval” property">NMSettingPpp:lcp-echo-interval</a>, object property in <a class="link" href="NMSettingPpp.html" title="NMSettingPpp">NMSettingPpp</a> +<a href="NMSettingPpp.html#NMSettingPpp--lcp-echo-interval">NMSettingPpp:lcp-echo-interval</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingPpp.html#NMSettingPpp--mppe-stateful" title="The “mppe-stateful” property">NMSettingPpp:mppe-stateful</a>, object property in <a class="link" href="NMSettingPpp.html" title="NMSettingPpp">NMSettingPpp</a> +<a href="NMSettingPpp.html#NMSettingPpp--mppe-stateful">NMSettingPpp:mppe-stateful</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingPpp.html#NMSettingPpp--mru" title="The “mru” property">NMSettingPpp:mru</a>, object property in <a class="link" href="NMSettingPpp.html" title="NMSettingPpp">NMSettingPpp</a> +<a href="NMSettingPpp.html#NMSettingPpp--mru">NMSettingPpp:mru</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingPpp.html#NMSettingPpp--mtu" title="The “mtu” property">NMSettingPpp:mtu</a>, object property in <a class="link" href="NMSettingPpp.html" title="NMSettingPpp">NMSettingPpp</a> +<a href="NMSettingPpp.html#NMSettingPpp--mtu">NMSettingPpp:mtu</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingPpp.html#NMSettingPpp--no-vj-comp" title="The “no-vj-comp” property">NMSettingPpp:no-vj-comp</a>, object property in <a class="link" href="NMSettingPpp.html" title="NMSettingPpp">NMSettingPpp</a> +<a href="NMSettingPpp.html#NMSettingPpp--no-vj-comp">NMSettingPpp:no-vj-comp</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingPpp.html#NMSettingPpp--noauth" title="The “noauth” property">NMSettingPpp:noauth</a>, object property in <a class="link" href="NMSettingPpp.html" title="NMSettingPpp">NMSettingPpp</a> +<a href="NMSettingPpp.html#NMSettingPpp--noauth">NMSettingPpp:noauth</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingPpp.html#NMSettingPpp--nobsdcomp" title="The “nobsdcomp” property">NMSettingPpp:nobsdcomp</a>, object property in <a class="link" href="NMSettingPpp.html" title="NMSettingPpp">NMSettingPpp</a> +<a href="NMSettingPpp.html#NMSettingPpp--nobsdcomp">NMSettingPpp:nobsdcomp</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingPpp.html#NMSettingPpp--nodeflate" title="The “nodeflate” property">NMSettingPpp:nodeflate</a>, object property in <a class="link" href="NMSettingPpp.html" title="NMSettingPpp">NMSettingPpp</a> +<a href="NMSettingPpp.html#NMSettingPpp--nodeflate">NMSettingPpp:nodeflate</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingPpp.html#NMSettingPpp--refuse-chap" title="The “refuse-chap” property">NMSettingPpp:refuse-chap</a>, object property in <a class="link" href="NMSettingPpp.html" title="NMSettingPpp">NMSettingPpp</a> +<a href="NMSettingPpp.html#NMSettingPpp--refuse-chap">NMSettingPpp:refuse-chap</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingPpp.html#NMSettingPpp--refuse-eap" title="The “refuse-eap” property">NMSettingPpp:refuse-eap</a>, object property in <a class="link" href="NMSettingPpp.html" title="NMSettingPpp">NMSettingPpp</a> +<a href="NMSettingPpp.html#NMSettingPpp--refuse-eap">NMSettingPpp:refuse-eap</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingPpp.html#NMSettingPpp--refuse-mschap" title="The “refuse-mschap” property">NMSettingPpp:refuse-mschap</a>, object property in <a class="link" href="NMSettingPpp.html" title="NMSettingPpp">NMSettingPpp</a> +<a href="NMSettingPpp.html#NMSettingPpp--refuse-mschap">NMSettingPpp:refuse-mschap</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingPpp.html#NMSettingPpp--refuse-mschapv2" title="The “refuse-mschapv2” property">NMSettingPpp:refuse-mschapv2</a>, object property in <a class="link" href="NMSettingPpp.html" title="NMSettingPpp">NMSettingPpp</a> +<a href="NMSettingPpp.html#NMSettingPpp--refuse-mschapv2">NMSettingPpp:refuse-mschapv2</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingPpp.html#NMSettingPpp--refuse-pap" title="The “refuse-pap” property">NMSettingPpp:refuse-pap</a>, object property in <a class="link" href="NMSettingPpp.html" title="NMSettingPpp">NMSettingPpp</a> +<a href="NMSettingPpp.html#NMSettingPpp--refuse-pap">NMSettingPpp:refuse-pap</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingPpp.html#NMSettingPpp--require-mppe" title="The “require-mppe” property">NMSettingPpp:require-mppe</a>, object property in <a class="link" href="NMSettingPpp.html" title="NMSettingPpp">NMSettingPpp</a> +<a href="NMSettingPpp.html#NMSettingPpp--require-mppe">NMSettingPpp:require-mppe</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingPpp.html#NMSettingPpp--require-mppe-128" title="The “require-mppe-128” property">NMSettingPpp:require-mppe-128</a>, object property in <a class="link" href="NMSettingPpp.html" title="NMSettingPpp">NMSettingPpp</a> +<a href="NMSettingPpp.html#NMSettingPpp--require-mppe-128">NMSettingPpp:require-mppe-128</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingPppoe.html#NMSettingPppoe-struct" title="NMSettingPppoe">NMSettingPppoe</a>, struct in <a class="link" href="NMSettingPppoe.html" title="NMSettingPppoe">NMSettingPppoe</a> +<a href="NMSettingPppoe.html#NMSettingPppoe-struct">NMSettingPppoe</a>, struct in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingPppoe.html#NMSettingPppoe--parent" title="The “parent” property">NMSettingPppoe:parent</a>, object property in <a class="link" href="NMSettingPppoe.html" title="NMSettingPppoe">NMSettingPppoe</a> +<a href="NMSettingPppoe.html#NMSettingPppoe--parent">NMSettingPppoe:parent</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingPppoe.html#NMSettingPppoe--password" title="The “password” property">NMSettingPppoe:password</a>, object property in <a class="link" href="NMSettingPppoe.html" title="NMSettingPppoe">NMSettingPppoe</a> +<a href="NMSettingPppoe.html#NMSettingPppoe--password">NMSettingPppoe:password</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingPppoe.html#NMSettingPppoe--password-flags" title="The “password-flags” property">NMSettingPppoe:password-flags</a>, object property in <a class="link" href="NMSettingPppoe.html" title="NMSettingPppoe">NMSettingPppoe</a> +<a href="NMSettingPppoe.html#NMSettingPppoe--password-flags">NMSettingPppoe:password-flags</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingPppoe.html#NMSettingPppoe--service" title="The “service” property">NMSettingPppoe:service</a>, object property in <a class="link" href="NMSettingPppoe.html" title="NMSettingPppoe">NMSettingPppoe</a> +<a href="NMSettingPppoe.html#NMSettingPppoe--service">NMSettingPppoe:service</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingPppoe.html#NMSettingPppoe--username" title="The “username” property">NMSettingPppoe:username</a>, object property in <a class="link" href="NMSettingPppoe.html" title="NMSettingPppoe">NMSettingPppoe</a> +<a href="NMSettingPppoe.html#NMSettingPppoe--username">NMSettingPppoe:username</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -NMSettingPriority, enum in nm-meta-setting-base-impl +<a href="NMSettingProxy.html#NMSettingProxy-struct">NMSettingProxy</a>, struct in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingProxy.html#NMSettingProxy-struct" title="NMSettingProxy">NMSettingProxy</a>, struct in <a class="link" href="NMSettingProxy.html" title="NMSettingProxy">NMSettingProxy</a> +<a href="NMSettingProxy.html#NMSettingProxy--browser-only">NMSettingProxy:browser-only</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingProxy.html#NMSettingProxy--browser-only" title="The “browser-only” property">NMSettingProxy:browser-only</a>, object property in <a class="link" href="NMSettingProxy.html" title="NMSettingProxy">NMSettingProxy</a> +<a href="NMSettingProxy.html#NMSettingProxy--method">NMSettingProxy:method</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingProxy.html#NMSettingProxy--method" title="The “method” property">NMSettingProxy:method</a>, object property in <a class="link" href="NMSettingProxy.html" title="NMSettingProxy">NMSettingProxy</a> +<a href="NMSettingProxy.html#NMSettingProxy--pac-script">NMSettingProxy:pac-script</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingProxy.html#NMSettingProxy--pac-script" title="The “pac-script” property">NMSettingProxy:pac-script</a>, object property in <a class="link" href="NMSettingProxy.html" title="NMSettingProxy">NMSettingProxy</a> -</dt> -<dd></dd> -<dt> -<a class="link" href="NMSettingProxy.html#NMSettingProxy--pac-url" title="The “pac-url” property">NMSettingProxy:pac-url</a>, object property in <a class="link" href="NMSettingProxy.html" title="NMSettingProxy">NMSettingProxy</a> +<a href="NMSettingProxy.html#NMSettingProxy--pac-url">NMSettingProxy:pac-url</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> @@ -2953,27 +2937,27 @@ NMSettingPriority, enum in nm-meta-setting-base-impl </dt> <dd></dd> <dt> -<a class="link" href="NMSettingSerial.html#NMSettingSerial-struct" title="NMSettingSerial">NMSettingSerial</a>, struct in <a class="link" href="NMSettingSerial.html" title="NMSettingSerial">NMSettingSerial</a> +<a href="NMSettingSerial.html#NMSettingSerial-struct">NMSettingSerial</a>, struct in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingSerial.html#NMSettingSerial--baud" title="The “baud” property">NMSettingSerial:baud</a>, object property in <a class="link" href="NMSettingSerial.html" title="NMSettingSerial">NMSettingSerial</a> +<a href="NMSettingSerial.html#NMSettingSerial--baud">NMSettingSerial:baud</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingSerial.html#NMSettingSerial--bits" title="The “bits” property">NMSettingSerial:bits</a>, object property in <a class="link" href="NMSettingSerial.html" title="NMSettingSerial">NMSettingSerial</a> +<a href="NMSettingSerial.html#NMSettingSerial--bits">NMSettingSerial:bits</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingSerial.html#NMSettingSerial--parity" title="The “parity” property">NMSettingSerial:parity</a>, object property in <a class="link" href="NMSettingSerial.html" title="NMSettingSerial">NMSettingSerial</a> +<a href="NMSettingSerial.html#NMSettingSerial--parity">NMSettingSerial:parity</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingSerial.html#NMSettingSerial--send-delay" title="The “send-delay” property">NMSettingSerial:send-delay</a>, object property in <a class="link" href="NMSettingSerial.html" title="NMSettingSerial">NMSettingSerial</a> +<a href="NMSettingSerial.html#NMSettingSerial--send-delay">NMSettingSerial:send-delay</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingSerial.html#NMSettingSerial--stopbits" title="The “stopbits” property">NMSettingSerial:stopbits</a>, object property in <a class="link" href="NMSettingSerial.html" title="NMSettingSerial">NMSettingSerial</a> +<a href="NMSettingSerial.html#NMSettingSerial--stopbits">NMSettingSerial:stopbits</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> @@ -3017,131 +3001,131 @@ NMSettingTCConfig:tfilters, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingTeam.html#NMSettingTeam-struct" title="NMSettingTeam">NMSettingTeam</a>, struct in <a class="link" href="NMSettingTeam.html" title="NMSettingTeam">NMSettingTeam</a> +<a href="NMSettingTeam.html#NMSettingTeam-struct">NMSettingTeam</a>, struct in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingTeam.html#NMSettingTeam--config" title="The “config” property">NMSettingTeam:config</a>, object property in <a class="link" href="NMSettingTeam.html" title="NMSettingTeam">NMSettingTeam</a> +<a href="NMSettingTeam.html#NMSettingTeam--config">NMSettingTeam:config</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingTeam.html#NMSettingTeam--link-watchers" title="The “link-watchers” property">NMSettingTeam:link-watchers</a>, object property in <a class="link" href="NMSettingTeam.html" title="NMSettingTeam">NMSettingTeam</a> +<a href="NMSettingTeam.html#NMSettingTeam--link-watchers">NMSettingTeam:link-watchers</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingTeam.html#NMSettingTeam--mcast-rejoin-count" title="The “mcast-rejoin-count” property">NMSettingTeam:mcast-rejoin-count</a>, object property in <a class="link" href="NMSettingTeam.html" title="NMSettingTeam">NMSettingTeam</a> +<a href="NMSettingTeam.html#NMSettingTeam--mcast-rejoin-count">NMSettingTeam:mcast-rejoin-count</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingTeam.html#NMSettingTeam--mcast-rejoin-interval" title="The “mcast-rejoin-interval” property">NMSettingTeam:mcast-rejoin-interval</a>, object property in <a class="link" href="NMSettingTeam.html" title="NMSettingTeam">NMSettingTeam</a> +<a href="NMSettingTeam.html#NMSettingTeam--mcast-rejoin-interval">NMSettingTeam:mcast-rejoin-interval</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingTeam.html#NMSettingTeam--notify-peers-count" title="The “notify-peers-count” property">NMSettingTeam:notify-peers-count</a>, object property in <a class="link" href="NMSettingTeam.html" title="NMSettingTeam">NMSettingTeam</a> +<a href="NMSettingTeam.html#NMSettingTeam--notify-peers-count">NMSettingTeam:notify-peers-count</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingTeam.html#NMSettingTeam--notify-peers-interval" title="The “notify-peers-interval” property">NMSettingTeam:notify-peers-interval</a>, object property in <a class="link" href="NMSettingTeam.html" title="NMSettingTeam">NMSettingTeam</a> +<a href="NMSettingTeam.html#NMSettingTeam--notify-peers-interval">NMSettingTeam:notify-peers-interval</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingTeam.html#NMSettingTeam--runner" title="The “runner” property">NMSettingTeam:runner</a>, object property in <a class="link" href="NMSettingTeam.html" title="NMSettingTeam">NMSettingTeam</a> +<a href="NMSettingTeam.html#NMSettingTeam--runner">NMSettingTeam:runner</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingTeam.html#NMSettingTeam--runner-active" title="The “runner-active” property">NMSettingTeam:runner-active</a>, object property in <a class="link" href="NMSettingTeam.html" title="NMSettingTeam">NMSettingTeam</a> +<a href="NMSettingTeam.html#NMSettingTeam--runner-active">NMSettingTeam:runner-active</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingTeam.html#NMSettingTeam--runner-agg-select-policy" title="The “runner-agg-select-policy” property">NMSettingTeam:runner-agg-select-policy</a>, object property in <a class="link" href="NMSettingTeam.html" title="NMSettingTeam">NMSettingTeam</a> +<a href="NMSettingTeam.html#NMSettingTeam--runner-agg-select-policy">NMSettingTeam:runner-agg-select-policy</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingTeam.html#NMSettingTeam--runner-fast-rate" title="The “runner-fast-rate” property">NMSettingTeam:runner-fast-rate</a>, object property in <a class="link" href="NMSettingTeam.html" title="NMSettingTeam">NMSettingTeam</a> +<a href="NMSettingTeam.html#NMSettingTeam--runner-fast-rate">NMSettingTeam:runner-fast-rate</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingTeam.html#NMSettingTeam--runner-hwaddr-policy" title="The “runner-hwaddr-policy” property">NMSettingTeam:runner-hwaddr-policy</a>, object property in <a class="link" href="NMSettingTeam.html" title="NMSettingTeam">NMSettingTeam</a> +<a href="NMSettingTeam.html#NMSettingTeam--runner-hwaddr-policy">NMSettingTeam:runner-hwaddr-policy</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingTeam.html#NMSettingTeam--runner-min-ports" title="The “runner-min-ports” property">NMSettingTeam:runner-min-ports</a>, object property in <a class="link" href="NMSettingTeam.html" title="NMSettingTeam">NMSettingTeam</a> +<a href="NMSettingTeam.html#NMSettingTeam--runner-min-ports">NMSettingTeam:runner-min-ports</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingTeam.html#NMSettingTeam--runner-sys-prio" title="The “runner-sys-prio” property">NMSettingTeam:runner-sys-prio</a>, object property in <a class="link" href="NMSettingTeam.html" title="NMSettingTeam">NMSettingTeam</a> +<a href="NMSettingTeam.html#NMSettingTeam--runner-sys-prio">NMSettingTeam:runner-sys-prio</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingTeam.html#NMSettingTeam--runner-tx-balancer" title="The “runner-tx-balancer” property">NMSettingTeam:runner-tx-balancer</a>, object property in <a class="link" href="NMSettingTeam.html" title="NMSettingTeam">NMSettingTeam</a> +<a href="NMSettingTeam.html#NMSettingTeam--runner-tx-balancer">NMSettingTeam:runner-tx-balancer</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingTeam.html#NMSettingTeam--runner-tx-balancer-interval" title="The “runner-tx-balancer-interval” property">NMSettingTeam:runner-tx-balancer-interval</a>, object property in <a class="link" href="NMSettingTeam.html" title="NMSettingTeam">NMSettingTeam</a> +<a href="NMSettingTeam.html#NMSettingTeam--runner-tx-balancer-interval">NMSettingTeam:runner-tx-balancer-interval</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingTeam.html#NMSettingTeam--runner-tx-hash" title="The “runner-tx-hash” property">NMSettingTeam:runner-tx-hash</a>, object property in <a class="link" href="NMSettingTeam.html" title="NMSettingTeam">NMSettingTeam</a> +<a href="NMSettingTeam.html#NMSettingTeam--runner-tx-hash">NMSettingTeam:runner-tx-hash</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingTeamPort.html#NMSettingTeamPort-struct" title="NMSettingTeamPort">NMSettingTeamPort</a>, struct in <a class="link" href="NMSettingTeamPort.html" title="NMSettingTeamPort">NMSettingTeamPort</a> +<a href="NMSettingTeamPort.html#NMSettingTeamPort-struct">NMSettingTeamPort</a>, struct in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingTeamPort.html#NMSettingTeamPort--config" title="The “config” property">NMSettingTeamPort:config</a>, object property in <a class="link" href="NMSettingTeamPort.html" title="NMSettingTeamPort">NMSettingTeamPort</a> +<a href="NMSettingTeamPort.html#NMSettingTeamPort--config">NMSettingTeamPort:config</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingTeamPort.html#NMSettingTeamPort--lacp-key" title="The “lacp-key” property">NMSettingTeamPort:lacp-key</a>, object property in <a class="link" href="NMSettingTeamPort.html" title="NMSettingTeamPort">NMSettingTeamPort</a> +<a href="NMSettingTeamPort.html#NMSettingTeamPort--lacp-key">NMSettingTeamPort:lacp-key</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingTeamPort.html#NMSettingTeamPort--lacp-prio" title="The “lacp-prio” property">NMSettingTeamPort:lacp-prio</a>, object property in <a class="link" href="NMSettingTeamPort.html" title="NMSettingTeamPort">NMSettingTeamPort</a> +<a href="NMSettingTeamPort.html#NMSettingTeamPort--lacp-prio">NMSettingTeamPort:lacp-prio</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingTeamPort.html#NMSettingTeamPort--link-watchers" title="The “link-watchers” property">NMSettingTeamPort:link-watchers</a>, object property in <a class="link" href="NMSettingTeamPort.html" title="NMSettingTeamPort">NMSettingTeamPort</a> +<a href="NMSettingTeamPort.html#NMSettingTeamPort--link-watchers">NMSettingTeamPort:link-watchers</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingTeamPort.html#NMSettingTeamPort--prio" title="The “prio” property">NMSettingTeamPort:prio</a>, object property in <a class="link" href="NMSettingTeamPort.html" title="NMSettingTeamPort">NMSettingTeamPort</a> +<a href="NMSettingTeamPort.html#NMSettingTeamPort--prio">NMSettingTeamPort:prio</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingTeamPort.html#NMSettingTeamPort--queue-id" title="The “queue-id” property">NMSettingTeamPort:queue-id</a>, object property in <a class="link" href="NMSettingTeamPort.html" title="NMSettingTeamPort">NMSettingTeamPort</a> +<a href="NMSettingTeamPort.html#NMSettingTeamPort--queue-id">NMSettingTeamPort:queue-id</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingTeamPort.html#NMSettingTeamPort--sticky" title="The “sticky” property">NMSettingTeamPort:sticky</a>, object property in <a class="link" href="NMSettingTeamPort.html" title="NMSettingTeamPort">NMSettingTeamPort</a> +<a href="NMSettingTeamPort.html#NMSettingTeamPort--sticky">NMSettingTeamPort:sticky</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingTun.html#NMSettingTun-struct" title="NMSettingTun">NMSettingTun</a>, struct in <a class="link" href="NMSettingTun.html" title="NMSettingTun">NMSettingTun</a> +<a href="NMSettingTun.html#NMSettingTun-struct">NMSettingTun</a>, struct in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingTun.html#NMSettingTun--group" title="The “group” property">NMSettingTun:group</a>, object property in <a class="link" href="NMSettingTun.html" title="NMSettingTun">NMSettingTun</a> +<a href="NMSettingTun.html#NMSettingTun--group">NMSettingTun:group</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingTun.html#NMSettingTun--mode" title="The “mode” property">NMSettingTun:mode</a>, object property in <a class="link" href="NMSettingTun.html" title="NMSettingTun">NMSettingTun</a> +<a href="NMSettingTun.html#NMSettingTun--mode">NMSettingTun:mode</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingTun.html#NMSettingTun--multi-queue" title="The “multi-queue” property">NMSettingTun:multi-queue</a>, object property in <a class="link" href="NMSettingTun.html" title="NMSettingTun">NMSettingTun</a> +<a href="NMSettingTun.html#NMSettingTun--multi-queue">NMSettingTun:multi-queue</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingTun.html#NMSettingTun--owner" title="The “owner” property">NMSettingTun:owner</a>, object property in <a class="link" href="NMSettingTun.html" title="NMSettingTun">NMSettingTun</a> +<a href="NMSettingTun.html#NMSettingTun--owner">NMSettingTun:owner</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingTun.html#NMSettingTun--pi" title="The “pi” property">NMSettingTun:pi</a>, object property in <a class="link" href="NMSettingTun.html" title="NMSettingTun">NMSettingTun</a> +<a href="NMSettingTun.html#NMSettingTun--pi">NMSettingTun:pi</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingTun.html#NMSettingTun--vnet-hdr" title="The “vnet-hdr” property">NMSettingTun:vnet-hdr</a>, object property in <a class="link" href="NMSettingTun.html" title="NMSettingTun">NMSettingTun</a> +<a href="NMSettingTun.html#NMSettingTun--vnet-hdr">NMSettingTun:vnet-hdr</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> @@ -3169,55 +3153,55 @@ NMSettingVeth:peer, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingVlan.html#NMSettingVlan-struct" title="NMSettingVlan">NMSettingVlan</a>, struct in <a class="link" href="NMSettingVlan.html" title="NMSettingVlan">NMSettingVlan</a> +<a href="NMSettingVlan.html#NMSettingVlan-struct">NMSettingVlan</a>, struct in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingVlan.html#NMSettingVlan--egress-priority-map" title="The “egress-priority-map” property">NMSettingVlan:egress-priority-map</a>, object property in <a class="link" href="NMSettingVlan.html" title="NMSettingVlan">NMSettingVlan</a> +<a href="NMSettingVlan.html#NMSettingVlan--egress-priority-map">NMSettingVlan:egress-priority-map</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingVlan.html#NMSettingVlan--flags" title="The “flags” property">NMSettingVlan:flags</a>, object property in <a class="link" href="NMSettingVlan.html" title="NMSettingVlan">NMSettingVlan</a> +<a href="NMSettingVlan.html#NMSettingVlan--flags">NMSettingVlan:flags</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingVlan.html#NMSettingVlan--id" title="The “id” property">NMSettingVlan:id</a>, object property in <a class="link" href="NMSettingVlan.html" title="NMSettingVlan">NMSettingVlan</a> +<a href="NMSettingVlan.html#NMSettingVlan--id">NMSettingVlan:id</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingVlan.html#NMSettingVlan--ingress-priority-map" title="The “ingress-priority-map” property">NMSettingVlan:ingress-priority-map</a>, object property in <a class="link" href="NMSettingVlan.html" title="NMSettingVlan">NMSettingVlan</a> +<a href="NMSettingVlan.html#NMSettingVlan--ingress-priority-map">NMSettingVlan:ingress-priority-map</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingVlan.html#NMSettingVlan--parent" title="The “parent” property">NMSettingVlan:parent</a>, object property in <a class="link" href="NMSettingVlan.html" title="NMSettingVlan">NMSettingVlan</a> +<a href="NMSettingVlan.html#NMSettingVlan--parent">NMSettingVlan:parent</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingVpn.html#NMSettingVpn-struct" title="NMSettingVpn">NMSettingVpn</a>, struct in <a class="link" href="NMSettingVpn.html" title="NMSettingVpn">NMSettingVpn</a> +<a href="NMSettingVpn.html#NMSettingVpn-struct">NMSettingVpn</a>, struct in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingVpn.html#NMSettingVpn--data" title="The “data” property">NMSettingVpn:data</a>, object property in <a class="link" href="NMSettingVpn.html" title="NMSettingVpn">NMSettingVpn</a> +<a href="NMSettingVpn.html#NMSettingVpn--data">NMSettingVpn:data</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingVpn.html#NMSettingVpn--persistent" title="The “persistent” property">NMSettingVpn:persistent</a>, object property in <a class="link" href="NMSettingVpn.html" title="NMSettingVpn">NMSettingVpn</a> +<a href="NMSettingVpn.html#NMSettingVpn--persistent">NMSettingVpn:persistent</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingVpn.html#NMSettingVpn--secrets" title="The “secrets” property">NMSettingVpn:secrets</a>, object property in <a class="link" href="NMSettingVpn.html" title="NMSettingVpn">NMSettingVpn</a> +<a href="NMSettingVpn.html#NMSettingVpn--secrets">NMSettingVpn:secrets</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingVpn.html#NMSettingVpn--service-type" title="The “service-type” property">NMSettingVpn:service-type</a>, object property in <a class="link" href="NMSettingVpn.html" title="NMSettingVpn">NMSettingVpn</a> +<a href="NMSettingVpn.html#NMSettingVpn--service-type">NMSettingVpn:service-type</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingVpn.html#NMSettingVpn--timeout" title="The “timeout” property">NMSettingVpn:timeout</a>, object property in <a class="link" href="NMSettingVpn.html" title="NMSettingVpn">NMSettingVpn</a> +<a href="NMSettingVpn.html#NMSettingVpn--timeout">NMSettingVpn:timeout</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingVpn.html#NMSettingVpn--user-name" title="The “user-name” property">NMSettingVpn:user-name</a>, object property in <a class="link" href="NMSettingVpn.html" title="NMSettingVpn">NMSettingVpn</a> +<a href="NMSettingVpn.html#NMSettingVpn--user-name">NMSettingVpn:user-name</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> @@ -3229,71 +3213,71 @@ NMSettingVrf:table, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingVxlan.html#NMSettingVxlan-struct" title="NMSettingVxlan">NMSettingVxlan</a>, struct in <a class="link" href="NMSettingVxlan.html" title="NMSettingVxlan">NMSettingVxlan</a> +<a href="NMSettingVxlan.html#NMSettingVxlan-struct">NMSettingVxlan</a>, struct in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingVxlan.html#NMSettingVxlan--ageing" title="The “ageing” property">NMSettingVxlan:ageing</a>, object property in <a class="link" href="NMSettingVxlan.html" title="NMSettingVxlan">NMSettingVxlan</a> +<a href="NMSettingVxlan.html#NMSettingVxlan--ageing">NMSettingVxlan:ageing</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingVxlan.html#NMSettingVxlan--destination-port" title="The “destination-port” property">NMSettingVxlan:destination-port</a>, object property in <a class="link" href="NMSettingVxlan.html" title="NMSettingVxlan">NMSettingVxlan</a> +<a href="NMSettingVxlan.html#NMSettingVxlan--destination-port">NMSettingVxlan:destination-port</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingVxlan.html#NMSettingVxlan--id" title="The “id” property">NMSettingVxlan:id</a>, object property in <a class="link" href="NMSettingVxlan.html" title="NMSettingVxlan">NMSettingVxlan</a> +<a href="NMSettingVxlan.html#NMSettingVxlan--id">NMSettingVxlan:id</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingVxlan.html#NMSettingVxlan--l2-miss" title="The “l2-miss” property">NMSettingVxlan:l2-miss</a>, object property in <a class="link" href="NMSettingVxlan.html" title="NMSettingVxlan">NMSettingVxlan</a> +<a href="NMSettingVxlan.html#NMSettingVxlan--l2-miss">NMSettingVxlan:l2-miss</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingVxlan.html#NMSettingVxlan--l3-miss" title="The “l3-miss” property">NMSettingVxlan:l3-miss</a>, object property in <a class="link" href="NMSettingVxlan.html" title="NMSettingVxlan">NMSettingVxlan</a> +<a href="NMSettingVxlan.html#NMSettingVxlan--l3-miss">NMSettingVxlan:l3-miss</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingVxlan.html#NMSettingVxlan--learning" title="The “learning” property">NMSettingVxlan:learning</a>, object property in <a class="link" href="NMSettingVxlan.html" title="NMSettingVxlan">NMSettingVxlan</a> +<a href="NMSettingVxlan.html#NMSettingVxlan--learning">NMSettingVxlan:learning</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingVxlan.html#NMSettingVxlan--limit" title="The “limit” property">NMSettingVxlan:limit</a>, object property in <a class="link" href="NMSettingVxlan.html" title="NMSettingVxlan">NMSettingVxlan</a> +<a href="NMSettingVxlan.html#NMSettingVxlan--limit">NMSettingVxlan:limit</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingVxlan.html#NMSettingVxlan--local" title="The “local” property">NMSettingVxlan:local</a>, object property in <a class="link" href="NMSettingVxlan.html" title="NMSettingVxlan">NMSettingVxlan</a> +<a href="NMSettingVxlan.html#NMSettingVxlan--local">NMSettingVxlan:local</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingVxlan.html#NMSettingVxlan--parent" title="The “parent” property">NMSettingVxlan:parent</a>, object property in <a class="link" href="NMSettingVxlan.html" title="NMSettingVxlan">NMSettingVxlan</a> +<a href="NMSettingVxlan.html#NMSettingVxlan--parent">NMSettingVxlan:parent</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingVxlan.html#NMSettingVxlan--proxy" title="The “proxy” property">NMSettingVxlan:proxy</a>, object property in <a class="link" href="NMSettingVxlan.html" title="NMSettingVxlan">NMSettingVxlan</a> +<a href="NMSettingVxlan.html#NMSettingVxlan--proxy">NMSettingVxlan:proxy</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingVxlan.html#NMSettingVxlan--remote" title="The “remote” property">NMSettingVxlan:remote</a>, object property in <a class="link" href="NMSettingVxlan.html" title="NMSettingVxlan">NMSettingVxlan</a> +<a href="NMSettingVxlan.html#NMSettingVxlan--remote">NMSettingVxlan:remote</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingVxlan.html#NMSettingVxlan--rsc" title="The “rsc” property">NMSettingVxlan:rsc</a>, object property in <a class="link" href="NMSettingVxlan.html" title="NMSettingVxlan">NMSettingVxlan</a> +<a href="NMSettingVxlan.html#NMSettingVxlan--rsc">NMSettingVxlan:rsc</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingVxlan.html#NMSettingVxlan--source-port-max" title="The “source-port-max” property">NMSettingVxlan:source-port-max</a>, object property in <a class="link" href="NMSettingVxlan.html" title="NMSettingVxlan">NMSettingVxlan</a> +<a href="NMSettingVxlan.html#NMSettingVxlan--source-port-max">NMSettingVxlan:source-port-max</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingVxlan.html#NMSettingVxlan--source-port-min" title="The “source-port-min” property">NMSettingVxlan:source-port-min</a>, object property in <a class="link" href="NMSettingVxlan.html" title="NMSettingVxlan">NMSettingVxlan</a> +<a href="NMSettingVxlan.html#NMSettingVxlan--source-port-min">NMSettingVxlan:source-port-min</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingVxlan.html#NMSettingVxlan--tos" title="The “tos” property">NMSettingVxlan:tos</a>, object property in <a class="link" href="NMSettingVxlan.html" title="NMSettingVxlan">NMSettingVxlan</a> +<a href="NMSettingVxlan.html#NMSettingVxlan--tos">NMSettingVxlan:tos</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingVxlan.html#NMSettingVxlan--ttl" title="The “ttl” property">NMSettingVxlan:ttl</a>, object property in <a class="link" href="NMSettingVxlan.html" title="NMSettingVxlan">NMSettingVxlan</a> +<a href="NMSettingVxlan.html#NMSettingVxlan--ttl">NMSettingVxlan:ttl</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> @@ -3313,75 +3297,79 @@ NMSettingWifiP2P:wps-method, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWimax.html#NMSettingWimax-struct" title="NMSettingWimax">NMSettingWimax</a>, struct in <a class="link" href="NMSettingWimax.html" title="NMSettingWimax">NMSettingWimax</a> +<a href="NMSettingWimax.html#NMSettingWimax-struct">NMSettingWimax</a>, struct in NMSettingOvs +</dt> +<dd></dd> +<dt> +<a href="NMSettingWimax.html#NMSettingWimax--mac-address">NMSettingWimax:mac-address</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWimax.html#NMSettingWimax--mac-address" title="The “mac-address” property">NMSettingWimax:mac-address</a>, object property in <a class="link" href="NMSettingWimax.html" title="NMSettingWimax">NMSettingWimax</a> +<a href="NMSettingWimax.html#NMSettingWimax--network-name">NMSettingWimax:network-name</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWimax.html#NMSettingWimax--network-name" title="The “network-name” property">NMSettingWimax:network-name</a>, object property in <a class="link" href="NMSettingWimax.html" title="NMSettingWimax">NMSettingWimax</a> +<a href="NMSettingWired.html#NMSettingWired-struct">NMSettingWired</a>, struct in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWired.html#NMSettingWired-struct" title="NMSettingWired">NMSettingWired</a>, struct in <a class="link" href="NMSettingWired.html" title="NMSettingWired">NMSettingWired</a> +NMSettingWired:accept-all-mac-addresses, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWired.html#NMSettingWired--auto-negotiate" title="The “auto-negotiate” property">NMSettingWired:auto-negotiate</a>, object property in <a class="link" href="NMSettingWired.html" title="NMSettingWired">NMSettingWired</a> +<a href="NMSettingWired.html#NMSettingWired--auto-negotiate">NMSettingWired:auto-negotiate</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWired.html#NMSettingWired--cloned-mac-address" title="The “cloned-mac-address” property">NMSettingWired:cloned-mac-address</a>, object property in <a class="link" href="NMSettingWired.html" title="NMSettingWired">NMSettingWired</a> +<a href="NMSettingWired.html#NMSettingWired--cloned-mac-address">NMSettingWired:cloned-mac-address</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWired.html#NMSettingWired--duplex" title="The “duplex” property">NMSettingWired:duplex</a>, object property in <a class="link" href="NMSettingWired.html" title="NMSettingWired">NMSettingWired</a> +<a href="NMSettingWired.html#NMSettingWired--duplex">NMSettingWired:duplex</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWired.html#NMSettingWired--generate-mac-address-mask" title="The “generate-mac-address-mask” property">NMSettingWired:generate-mac-address-mask</a>, object property in <a class="link" href="NMSettingWired.html" title="NMSettingWired">NMSettingWired</a> +<a href="NMSettingWired.html#NMSettingWired--generate-mac-address-mask">NMSettingWired:generate-mac-address-mask</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWired.html#NMSettingWired--mac-address" title="The “mac-address” property">NMSettingWired:mac-address</a>, object property in <a class="link" href="NMSettingWired.html" title="NMSettingWired">NMSettingWired</a> +<a href="NMSettingWired.html#NMSettingWired--mac-address">NMSettingWired:mac-address</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWired.html#NMSettingWired--mac-address-blacklist" title="The “mac-address-blacklist” property">NMSettingWired:mac-address-blacklist</a>, object property in <a class="link" href="NMSettingWired.html" title="NMSettingWired">NMSettingWired</a> +<a href="NMSettingWired.html#NMSettingWired--mac-address-blacklist">NMSettingWired:mac-address-blacklist</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWired.html#NMSettingWired--mtu" title="The “mtu” property">NMSettingWired:mtu</a>, object property in <a class="link" href="NMSettingWired.html" title="NMSettingWired">NMSettingWired</a> +<a href="NMSettingWired.html#NMSettingWired--mtu">NMSettingWired:mtu</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWired.html#NMSettingWired--port" title="The “port” property">NMSettingWired:port</a>, object property in <a class="link" href="NMSettingWired.html" title="NMSettingWired">NMSettingWired</a> +<a href="NMSettingWired.html#NMSettingWired--port">NMSettingWired:port</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWired.html#NMSettingWired--s390-nettype" title="The “s390-nettype” property">NMSettingWired:s390-nettype</a>, object property in <a class="link" href="NMSettingWired.html" title="NMSettingWired">NMSettingWired</a> +<a href="NMSettingWired.html#NMSettingWired--s390-nettype">NMSettingWired:s390-nettype</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWired.html#NMSettingWired--s390-options" title="The “s390-options” property">NMSettingWired:s390-options</a>, object property in <a class="link" href="NMSettingWired.html" title="NMSettingWired">NMSettingWired</a> +<a href="NMSettingWired.html#NMSettingWired--s390-options">NMSettingWired:s390-options</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWired.html#NMSettingWired--s390-subchannels" title="The “s390-subchannels” property">NMSettingWired:s390-subchannels</a>, object property in <a class="link" href="NMSettingWired.html" title="NMSettingWired">NMSettingWired</a> +<a href="NMSettingWired.html#NMSettingWired--s390-subchannels">NMSettingWired:s390-subchannels</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWired.html#NMSettingWired--speed" title="The “speed” property">NMSettingWired:speed</a>, object property in <a class="link" href="NMSettingWired.html" title="NMSettingWired">NMSettingWired</a> +<a href="NMSettingWired.html#NMSettingWired--speed">NMSettingWired:speed</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWired.html#NMSettingWired--wake-on-lan" title="The “wake-on-lan” property">NMSettingWired:wake-on-lan</a>, object property in <a class="link" href="NMSettingWired.html" title="NMSettingWired">NMSettingWired</a> +<a href="NMSettingWired.html#NMSettingWired--wake-on-lan">NMSettingWired:wake-on-lan</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWired.html#NMSettingWired--wake-on-lan-password" title="The “wake-on-lan-password” property">NMSettingWired:wake-on-lan-password</a>, object property in <a class="link" href="NMSettingWired.html" title="NMSettingWired">NMSettingWired</a> +<a href="NMSettingWired.html#NMSettingWired--wake-on-lan-password">NMSettingWired:wake-on-lan-password</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> @@ -3425,79 +3413,79 @@ NMSettingWireGuard:private-key-flags, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWireless.html#NMSettingWireless-struct" title="NMSettingWireless">NMSettingWireless</a>, struct in <a class="link" href="NMSettingWireless.html" title="NMSettingWireless">NMSettingWireless</a> +<a href="NMSettingWireless.html#NMSettingWireless-struct">NMSettingWireless</a>, struct in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWireless.html#NMSettingWireless--ap-isolation" title="The “ap-isolation” property">NMSettingWireless:ap-isolation</a>, object property in <a class="link" href="NMSettingWireless.html" title="NMSettingWireless">NMSettingWireless</a> +<a href="NMSettingWireless.html#NMSettingWireless--ap-isolation">NMSettingWireless:ap-isolation</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWireless.html#NMSettingWireless--band" title="The “band” property">NMSettingWireless:band</a>, object property in <a class="link" href="NMSettingWireless.html" title="NMSettingWireless">NMSettingWireless</a> +<a href="NMSettingWireless.html#NMSettingWireless--band">NMSettingWireless:band</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWireless.html#NMSettingWireless--bssid" title="The “bssid” property">NMSettingWireless:bssid</a>, object property in <a class="link" href="NMSettingWireless.html" title="NMSettingWireless">NMSettingWireless</a> +<a href="NMSettingWireless.html#NMSettingWireless--bssid">NMSettingWireless:bssid</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWireless.html#NMSettingWireless--channel" title="The “channel” property">NMSettingWireless:channel</a>, object property in <a class="link" href="NMSettingWireless.html" title="NMSettingWireless">NMSettingWireless</a> +<a href="NMSettingWireless.html#NMSettingWireless--channel">NMSettingWireless:channel</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWireless.html#NMSettingWireless--cloned-mac-address" title="The “cloned-mac-address” property">NMSettingWireless:cloned-mac-address</a>, object property in <a class="link" href="NMSettingWireless.html" title="NMSettingWireless">NMSettingWireless</a> +<a href="NMSettingWireless.html#NMSettingWireless--cloned-mac-address">NMSettingWireless:cloned-mac-address</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWireless.html#NMSettingWireless--generate-mac-address-mask" title="The “generate-mac-address-mask” property">NMSettingWireless:generate-mac-address-mask</a>, object property in <a class="link" href="NMSettingWireless.html" title="NMSettingWireless">NMSettingWireless</a> +<a href="NMSettingWireless.html#NMSettingWireless--generate-mac-address-mask">NMSettingWireless:generate-mac-address-mask</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWireless.html#NMSettingWireless--hidden" title="The “hidden” property">NMSettingWireless:hidden</a>, object property in <a class="link" href="NMSettingWireless.html" title="NMSettingWireless">NMSettingWireless</a> +<a href="NMSettingWireless.html#NMSettingWireless--hidden">NMSettingWireless:hidden</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWireless.html#NMSettingWireless--mac-address" title="The “mac-address” property">NMSettingWireless:mac-address</a>, object property in <a class="link" href="NMSettingWireless.html" title="NMSettingWireless">NMSettingWireless</a> +<a href="NMSettingWireless.html#NMSettingWireless--mac-address">NMSettingWireless:mac-address</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWireless.html#NMSettingWireless--mac-address-blacklist" title="The “mac-address-blacklist” property">NMSettingWireless:mac-address-blacklist</a>, object property in <a class="link" href="NMSettingWireless.html" title="NMSettingWireless">NMSettingWireless</a> +<a href="NMSettingWireless.html#NMSettingWireless--mac-address-blacklist">NMSettingWireless:mac-address-blacklist</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWireless.html#NMSettingWireless--mac-address-randomization" title="The “mac-address-randomization” property">NMSettingWireless:mac-address-randomization</a>, object property in <a class="link" href="NMSettingWireless.html" title="NMSettingWireless">NMSettingWireless</a> +<a href="NMSettingWireless.html#NMSettingWireless--mac-address-randomization">NMSettingWireless:mac-address-randomization</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWireless.html#NMSettingWireless--mode" title="The “mode” property">NMSettingWireless:mode</a>, object property in <a class="link" href="NMSettingWireless.html" title="NMSettingWireless">NMSettingWireless</a> +<a href="NMSettingWireless.html#NMSettingWireless--mode">NMSettingWireless:mode</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWireless.html#NMSettingWireless--mtu" title="The “mtu” property">NMSettingWireless:mtu</a>, object property in <a class="link" href="NMSettingWireless.html" title="NMSettingWireless">NMSettingWireless</a> +<a href="NMSettingWireless.html#NMSettingWireless--mtu">NMSettingWireless:mtu</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWireless.html#NMSettingWireless--powersave" title="The “powersave” property">NMSettingWireless:powersave</a>, object property in <a class="link" href="NMSettingWireless.html" title="NMSettingWireless">NMSettingWireless</a> +<a href="NMSettingWireless.html#NMSettingWireless--powersave">NMSettingWireless:powersave</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWireless.html#NMSettingWireless--rate" title="The “rate” property">NMSettingWireless:rate</a>, object property in <a class="link" href="NMSettingWireless.html" title="NMSettingWireless">NMSettingWireless</a> +<a href="NMSettingWireless.html#NMSettingWireless--rate">NMSettingWireless:rate</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWireless.html#NMSettingWireless--seen-bssids" title="The “seen-bssids” property">NMSettingWireless:seen-bssids</a>, object property in <a class="link" href="NMSettingWireless.html" title="NMSettingWireless">NMSettingWireless</a> +<a href="NMSettingWireless.html#NMSettingWireless--seen-bssids">NMSettingWireless:seen-bssids</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWireless.html#NMSettingWireless--ssid" title="The “ssid” property">NMSettingWireless:ssid</a>, object property in <a class="link" href="NMSettingWireless.html" title="NMSettingWireless">NMSettingWireless</a> +<a href="NMSettingWireless.html#NMSettingWireless--ssid">NMSettingWireless:ssid</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWireless.html#NMSettingWireless--tx-power" title="The “tx-power” property">NMSettingWireless:tx-power</a>, object property in <a class="link" href="NMSettingWireless.html" title="NMSettingWireless">NMSettingWireless</a> +<a href="NMSettingWireless.html#NMSettingWireless--tx-power">NMSettingWireless:tx-power</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWireless.html#NMSettingWireless--wake-on-wlan" title="The “wake-on-wlan” property">NMSettingWireless:wake-on-wlan</a>, object property in <a class="link" href="NMSettingWireless.html" title="NMSettingWireless">NMSettingWireless</a> +<a href="NMSettingWireless.html#NMSettingWireless--wake-on-wlan">NMSettingWireless:wake-on-wlan</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> @@ -3505,87 +3493,87 @@ NMSettingWireGuard:private-key-flags, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity-struct" title="NMSettingWirelessSecurity">NMSettingWirelessSecurity</a>, struct in <a class="link" href="NMSettingWirelessSecurity.html" title="NMSettingWirelessSecurity">NMSettingWirelessSecurity</a> +<a href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity-struct">NMSettingWirelessSecurity</a>, struct in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--auth-alg" title="The “auth-alg” property">NMSettingWirelessSecurity:auth-alg</a>, object property in <a class="link" href="NMSettingWirelessSecurity.html" title="NMSettingWirelessSecurity">NMSettingWirelessSecurity</a> +<a href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--auth-alg">NMSettingWirelessSecurity:auth-alg</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--fils" title="The “fils” property">NMSettingWirelessSecurity:fils</a>, object property in <a class="link" href="NMSettingWirelessSecurity.html" title="NMSettingWirelessSecurity">NMSettingWirelessSecurity</a> +<a href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--fils">NMSettingWirelessSecurity:fils</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--group" title="The “group” property">NMSettingWirelessSecurity:group</a>, object property in <a class="link" href="NMSettingWirelessSecurity.html" title="NMSettingWirelessSecurity">NMSettingWirelessSecurity</a> +<a href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--group">NMSettingWirelessSecurity:group</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--key-mgmt" title="The “key-mgmt” property">NMSettingWirelessSecurity:key-mgmt</a>, object property in <a class="link" href="NMSettingWirelessSecurity.html" title="NMSettingWirelessSecurity">NMSettingWirelessSecurity</a> +<a href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--key-mgmt">NMSettingWirelessSecurity:key-mgmt</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--leap-password" title="The “leap-password” property">NMSettingWirelessSecurity:leap-password</a>, object property in <a class="link" href="NMSettingWirelessSecurity.html" title="NMSettingWirelessSecurity">NMSettingWirelessSecurity</a> +<a href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--leap-password">NMSettingWirelessSecurity:leap-password</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--leap-password-flags" title="The “leap-password-flags” property">NMSettingWirelessSecurity:leap-password-flags</a>, object property in <a class="link" href="NMSettingWirelessSecurity.html" title="NMSettingWirelessSecurity">NMSettingWirelessSecurity</a> +<a href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--leap-password-flags">NMSettingWirelessSecurity:leap-password-flags</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--leap-username" title="The “leap-username” property">NMSettingWirelessSecurity:leap-username</a>, object property in <a class="link" href="NMSettingWirelessSecurity.html" title="NMSettingWirelessSecurity">NMSettingWirelessSecurity</a> +<a href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--leap-username">NMSettingWirelessSecurity:leap-username</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--pairwise" title="The “pairwise” property">NMSettingWirelessSecurity:pairwise</a>, object property in <a class="link" href="NMSettingWirelessSecurity.html" title="NMSettingWirelessSecurity">NMSettingWirelessSecurity</a> +<a href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--pairwise">NMSettingWirelessSecurity:pairwise</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--pmf" title="The “pmf” property">NMSettingWirelessSecurity:pmf</a>, object property in <a class="link" href="NMSettingWirelessSecurity.html" title="NMSettingWirelessSecurity">NMSettingWirelessSecurity</a> +<a href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--pmf">NMSettingWirelessSecurity:pmf</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--proto" title="The “proto” property">NMSettingWirelessSecurity:proto</a>, object property in <a class="link" href="NMSettingWirelessSecurity.html" title="NMSettingWirelessSecurity">NMSettingWirelessSecurity</a> +<a href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--proto">NMSettingWirelessSecurity:proto</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--psk" title="The “psk” property">NMSettingWirelessSecurity:psk</a>, object property in <a class="link" href="NMSettingWirelessSecurity.html" title="NMSettingWirelessSecurity">NMSettingWirelessSecurity</a> +<a href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--psk">NMSettingWirelessSecurity:psk</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--psk-flags" title="The “psk-flags” property">NMSettingWirelessSecurity:psk-flags</a>, object property in <a class="link" href="NMSettingWirelessSecurity.html" title="NMSettingWirelessSecurity">NMSettingWirelessSecurity</a> +<a href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--psk-flags">NMSettingWirelessSecurity:psk-flags</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-key-flags" title="The “wep-key-flags” property">NMSettingWirelessSecurity:wep-key-flags</a>, object property in <a class="link" href="NMSettingWirelessSecurity.html" title="NMSettingWirelessSecurity">NMSettingWirelessSecurity</a> +<a href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-key-flags">NMSettingWirelessSecurity:wep-key-flags</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-key-type" title="The “wep-key-type” property">NMSettingWirelessSecurity:wep-key-type</a>, object property in <a class="link" href="NMSettingWirelessSecurity.html" title="NMSettingWirelessSecurity">NMSettingWirelessSecurity</a> +<a href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-key-type">NMSettingWirelessSecurity:wep-key-type</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-key0" title="The “wep-key0” property">NMSettingWirelessSecurity:wep-key0</a>, object property in <a class="link" href="NMSettingWirelessSecurity.html" title="NMSettingWirelessSecurity">NMSettingWirelessSecurity</a> +<a href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-key0">NMSettingWirelessSecurity:wep-key0</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-key1" title="The “wep-key1” property">NMSettingWirelessSecurity:wep-key1</a>, object property in <a class="link" href="NMSettingWirelessSecurity.html" title="NMSettingWirelessSecurity">NMSettingWirelessSecurity</a> +<a href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-key1">NMSettingWirelessSecurity:wep-key1</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-key2" title="The “wep-key2” property">NMSettingWirelessSecurity:wep-key2</a>, object property in <a class="link" href="NMSettingWirelessSecurity.html" title="NMSettingWirelessSecurity">NMSettingWirelessSecurity</a> +<a href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-key2">NMSettingWirelessSecurity:wep-key2</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-key3" title="The “wep-key3” property">NMSettingWirelessSecurity:wep-key3</a>, object property in <a class="link" href="NMSettingWirelessSecurity.html" title="NMSettingWirelessSecurity">NMSettingWirelessSecurity</a> +<a href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-key3">NMSettingWirelessSecurity:wep-key3</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-tx-keyidx" title="The “wep-tx-keyidx” property">NMSettingWirelessSecurity:wep-tx-keyidx</a>, object property in <a class="link" href="NMSettingWirelessSecurity.html" title="NMSettingWirelessSecurity">NMSettingWirelessSecurity</a> +<a href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-tx-keyidx">NMSettingWirelessSecurity:wep-tx-keyidx</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wps-method" title="The “wps-method” property">NMSettingWirelessSecurity:wps-method</a>, object property in <a class="link" href="NMSettingWirelessSecurity.html" title="NMSettingWirelessSecurity">NMSettingWirelessSecurity</a> +<a href="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wps-method">NMSettingWirelessSecurity:wps-method</a>, object property in NMSettingOvs </dt> <dd></dd> <dt> @@ -3629,7 +3617,7 @@ NMSettingWpan:short-address, object property in NMSettingOvs </dt> <dd></dd> <dt> -<a class="link" href="NMSimpleConnection.html#NMSimpleConnection-struct" title="NMSimpleConnection">NMSimpleConnection</a>, struct in <a class="link" href="NMSimpleConnection.html" title="NMSimpleConnection">NMSimpleConnection</a> +<a href="NMSimpleConnection.html#NMSimpleConnection-struct">NMSimpleConnection</a>, struct in NMSettingOvs </dt> <dd></dd> <dt> @@ -4249,6 +4237,14 @@ nm_auto_unref_nml_dbusobj, macro in <a class="link" href="NMIPConfig.html" title </dt> <dd></dd> <dt> +<a class="link" href="libnm-nm-version.html#NM-AVAILABLE-IN-1-32:CAPS" title="NM_AVAILABLE_IN_1_32">NM_AVAILABLE_IN_1_32</a>, macro in <a class="link" href="libnm-nm-version.html" title="nm-version">nm-version</a> +</dt> +<dd></dd> +<dt> +<a class="link" href="libnm-nm-version.html#NM-AVAILABLE-IN-1-32-4:CAPS" title="NM_AVAILABLE_IN_1_32_4">NM_AVAILABLE_IN_1_32_4</a>, macro in <a class="link" href="libnm-nm-version.html" title="nm-version">nm-version</a> +</dt> +<dd></dd> +<dt> <a class="link" href="libnm-nm-version.html#NM-AVAILABLE-IN-1-4:CAPS" title="NM_AVAILABLE_IN_1_4">NM_AVAILABLE_IN_1_4</a>, macro in <a class="link" href="libnm-nm-version.html" title="nm-version">nm-version</a> </dt> <dd></dd> @@ -5649,6 +5645,14 @@ NM_DBUS_VPN_WRONG_STATE, macro in nm-vpn-dbus-interface </dt> <dd></dd> <dt> +<a class="link" href="libnm-nm-version.html#NM-DEPRECATED-IN-1-32:CAPS" title="NM_DEPRECATED_IN_1_32">NM_DEPRECATED_IN_1_32</a>, macro in <a class="link" href="libnm-nm-version.html" title="nm-version">nm-version</a> +</dt> +<dd></dd> +<dt> +<a class="link" href="libnm-nm-version.html#NM-DEPRECATED-IN-1-32-FOR:CAPS" title="NM_DEPRECATED_IN_1_32_FOR()">NM_DEPRECATED_IN_1_32_FOR</a>, macro in <a class="link" href="libnm-nm-version.html" title="nm-version">nm-version</a> +</dt> +<dd></dd> +<dt> <a class="link" href="libnm-nm-version.html#NM-DEPRECATED-IN-1-4:CAPS" title="NM_DEPRECATED_IN_1_4">NM_DEPRECATED_IN_1_4</a>, macro in <a class="link" href="libnm-nm-version.html" title="nm-version">nm-version</a> </dt> <dd></dd> @@ -7373,10 +7377,26 @@ NM_ETHTOOL_OPTNAME_FEATURE_TX_VLAN_STAG_HW_INSERT, macro in nm-ethtool-utils </dt> <dd></dd> <dt> +<a class="link" href="NMSettingEthtool.html#nm-ethtool-optname-is-pause" title="nm_ethtool_optname_is_pause ()">nm_ethtool_optname_is_pause</a>, function in <a class="link" href="NMSettingEthtool.html" title="NMSettingEthtool">NMSettingEthtool</a> +</dt> +<dd></dd> +<dt> <a class="link" href="NMSettingEthtool.html#nm-ethtool-optname-is-ring" title="nm_ethtool_optname_is_ring ()">nm_ethtool_optname_is_ring</a>, function in <a class="link" href="NMSettingEthtool.html" title="NMSettingEthtool">NMSettingEthtool</a> </dt> <dd></dd> <dt> +NM_ETHTOOL_OPTNAME_PAUSE_AUTONEG, macro in nm-ethtool-utils +</dt> +<dd></dd> +<dt> +NM_ETHTOOL_OPTNAME_PAUSE_RX, macro in nm-ethtool-utils +</dt> +<dd></dd> +<dt> +NM_ETHTOOL_OPTNAME_PAUSE_TX, macro in nm-ethtool-utils +</dt> +<dd></dd> +<dt> NM_ETHTOOL_OPTNAME_RING_RX, macro in nm-ethtool-utils </dt> <dd></dd> @@ -7785,6 +7805,10 @@ NM_ETHTOOL_OPTNAME_RING_TX, macro in nm-ethtool-utils </dt> <dd></dd> <dt> +<a class="link" href="NMSettingIPConfig.html#nm-ip-routing-rule-get-uid-range" title="nm_ip_routing_rule_get_uid_range ()">nm_ip_routing_rule_get_uid_range</a>, function in <a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig">NMSettingIPConfig</a> +</dt> +<dd></dd> +<dt> <a class="link" href="NMSettingIPConfig.html#nm-ip-routing-rule-is-sealed" title="nm_ip_routing_rule_is_sealed ()">nm_ip_routing_rule_is_sealed</a>, function in <a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig">NMSettingIPConfig</a> </dt> <dd></dd> @@ -7861,6 +7885,10 @@ NM_ETHTOOL_OPTNAME_RING_TX, macro in nm-ethtool-utils </dt> <dd></dd> <dt> +<a class="link" href="NMSettingIPConfig.html#nm-ip-routing-rule-set-uid-range" title="nm_ip_routing_rule_set_uid_range ()">nm_ip_routing_rule_set_uid_range</a>, function in <a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig">NMSettingIPConfig</a> +</dt> +<dd></dd> +<dt> <a class="link" href="NMSettingIPConfig.html#nm-ip-routing-rule-to-string" title="nm_ip_routing_rule_to_string ()">nm_ip_routing_rule_to_string</a>, function in <a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig">NMSettingIPConfig</a> </dt> <dd></dd> @@ -8037,18 +8065,6 @@ NM_MAJOR_VERSION, macro in nm-version-macros </dt> <dd></dd> <dt> -nm_meta_setting_infos_by_gtype, function in nm-meta-setting-base-impl -</dt> -<dd></dd> -<dt> -nm_meta_setting_infos_by_name, function in nm-meta-setting-base-impl -</dt> -<dd></dd> -<dt> -nm_meta_setting_info_get_base_type_priority, function in nm-meta-setting-base-impl -</dt> -<dd></dd> -<dt> NM_MICRO_VERSION, macro in nm-version-macros </dt> <dd></dd> @@ -10577,6 +10593,10 @@ NM_MINOR_VERSION, macro in nm-version-macros </dt> <dd></dd> <dt> +<a class="link" href="NMSettingIPConfig.html#nm-setting-ip-config-get-required-timeout" title="nm_setting_ip_config_get_required_timeout ()">nm_setting_ip_config_get_required_timeout</a>, function in <a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig">NMSettingIPConfig</a> +</dt> +<dd></dd> +<dt> <a class="link" href="NMSettingIPConfig.html#nm-setting-ip-config-get-route" title="nm_setting_ip_config_get_route ()">nm_setting_ip_config_get_route</a>, function in <a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig">NMSettingIPConfig</a> </dt> <dd></dd> @@ -10665,6 +10685,10 @@ NM_MINOR_VERSION, macro in nm-version-macros </dt> <dd></dd> <dt> +<a class="link" href="NMSettingIPConfig.html#NM-SETTING-IP-CONFIG-REQUIRED-TIMEOUT:CAPS" title="NM_SETTING_IP_CONFIG_REQUIRED_TIMEOUT">NM_SETTING_IP_CONFIG_REQUIRED_TIMEOUT</a>, macro in <a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig">NMSettingIPConfig</a> +</dt> +<dd></dd> +<dt> <a class="link" href="NMSettingIPConfig.html#NM-SETTING-IP-CONFIG-ROUTES:CAPS" title="NM_SETTING_IP_CONFIG_ROUTES">NM_SETTING_IP_CONFIG_ROUTES</a>, macro in <a class="link" href="NMSettingIPConfig.html" title="NMSettingIPConfig">NMSettingIPConfig</a> </dt> <dd></dd> @@ -12573,6 +12597,10 @@ NM_MINOR_VERSION, macro in nm-version-macros </dt> <dd></dd> <dt> +<a class="link" href="NMSettingWired.html#NM-SETTING-WIRED-ACCEPT-ALL-MAC-ADDRESSES:CAPS" title="NM_SETTING_WIRED_ACCEPT_ALL_MAC_ADDRESSES">NM_SETTING_WIRED_ACCEPT_ALL_MAC_ADDRESSES</a>, macro in <a class="link" href="NMSettingWired.html" title="NMSettingWired">NMSettingWired</a> +</dt> +<dd></dd> +<dt> <a class="link" href="NMSettingWired.html#nm-setting-wired-add-mac-blacklist-item" title="nm_setting_wired_add_mac_blacklist_item ()">nm_setting_wired_add_mac_blacklist_item</a>, function in <a class="link" href="NMSettingWired.html" title="NMSettingWired">NMSettingWired</a> </dt> <dd></dd> @@ -12601,6 +12629,10 @@ NM_MINOR_VERSION, macro in nm-version-macros </dt> <dd></dd> <dt> +<a class="link" href="NMSettingWired.html#nm-setting-wired-get-accept-all-mac-addresses" title="nm_setting_wired_get_accept_all_mac_addresses ()">nm_setting_wired_get_accept_all_mac_addresses</a>, function in <a class="link" href="NMSettingWired.html" title="NMSettingWired">NMSettingWired</a> +</dt> +<dd></dd> +<dt> <a class="link" href="NMSettingWired.html#nm-setting-wired-get-auto-negotiate" title="nm_setting_wired_get_auto_negotiate ()">nm_setting_wired_get_auto_negotiate</a>, function in <a class="link" href="NMSettingWired.html" title="NMSettingWired">NMSettingWired</a> </dt> <dd></dd> @@ -14141,6 +14173,14 @@ NM_VERSION_1_30, macro in nm-version-macros </dt> <dd></dd> <dt> +NM_VERSION_1_32, macro in nm-version-macros +</dt> +<dd></dd> +<dt> +NM_VERSION_1_32_4, macro in nm-version-macros +</dt> +<dd></dd> +<dt> NM_VERSION_1_4, macro in nm-version-macros </dt> <dd></dd> diff --git a/docs/libnm/html/index.html b/docs/libnm/html/index.html index cf73aba7..8810942a 100644 --- a/docs/libnm/html/index.html +++ b/docs/libnm/html/index.html @@ -15,7 +15,7 @@ <div> <div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">libnm Reference Manual</p></th></tr></table></div> <div><p class="releaseinfo"> - for libnm 1.30.6 + for libnm 1.32.12 The latest version of this documentation can be found on-line at <a class="ulink" href="https://developer.gnome.org/libnm/stable/" target="_top">https://developer.gnome.org/libnm/stable/</a>. diff --git a/docs/libnm/html/libnm-nm-dbus-interface.html b/docs/libnm/html/libnm-nm-dbus-interface.html index aeeb13e7..682b5fa9 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.</p> <td class="enum_member_annotations"> </td> </tr> <tr> +<td class="enum_member_name"><p><a name="NM-DEVICE-INTERFACE-FLAG-PROMISC:CAPS"></a>NM_DEVICE_INTERFACE_FLAG_PROMISC</p></td> +<td class="enum_member_description"> +<p>receive all packets. Corresponds to +kernel IFF_PROMISC. Since: 1.32.</p> +</td> +<td class="enum_member_annotations"> </td> +</tr> +<tr> <td class="enum_member_name"><p><a name="NM-DEVICE-INTERFACE-FLAG-CARRIER:CAPS"></a>NM_DEVICE_INTERFACE_FLAG_CARRIER</p></td> <td class="enum_member_description"> <p>the interface has carrier. In most @@ -3786,6 +3794,14 @@ However some devices have a non-standard carrier detection mechanism.</p> </td> <td class="enum_member_annotations"> </td> </tr> +<tr> +<td class="enum_member_name"><p><a name="NM-DEVICE-INTERFACE-FLAG-LLDP-CLIENT-ENABLED:CAPS"></a>NM_DEVICE_INTERFACE_FLAG_LLDP_CLIENT_ENABLED</p></td> +<td class="enum_member_description"> +<p>the flag to indicate device +LLDP status. Since: 1.32.</p> +</td> +<td class="enum_member_annotations"> </td> +</tr> </tbody> </table></div> </div> diff --git a/docs/libnm/html/libnm-nm-utils.html b/docs/libnm/html/libnm-nm-utils.html index a76610ac..d5f25422 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 (<em class="parameter"><code><span class="type">void</spa <div class="refsect3"> <a name="nm-utils-uuid-generate.returns"></a><h4>Returns</h4> <p> a newly allocated UUID suitable for use as the <a class="link" href="NMSettingConnection.html" title="NMSettingConnection"><span class="type">NMSettingConnection</span></a> -object's <a class="link" href="NMSettingConnection.html#NMSettingConnection--id" title="The “id” property"><span class="type">“id”</span></a>: property. Should be freed with <a href="https://developer.gnome.org/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a></p> +object's <a href="NMSettingConnection.html#NMSettingConnection--id"><span class="type">“id”</span></a>: property. Should be freed with <a href="https://developer.gnome.org/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a></p> </div> </div> <hr> @@ -2593,6 +2593,12 @@ want to run against older versions of libnm, don't pass <a href="https://develop <a name="nm-utils-is-uuid"></a><h3>nm_utils_is_uuid ()</h3> <pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> nm_utils_is_uuid (<em class="parameter"><code>const <span class="type">char</span> *str</code></em>);</pre> +<div class="warning"> +<p><code class="literal">nm_utils_is_uuid</code> has been deprecated since version 1.32 and should not be used in newly-written code.</p> +<p>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.</p> +</div> <p>Checks if <em class="parameter"><code>str</code></em> is a UUID</p> <div class="refsect3"> diff --git a/docs/libnm/html/libnm-nm-version.html b/docs/libnm/html/libnm-nm-version.html index 4f7a6dd6..f40fa138 100644 --- a/docs/libnm/html/libnm-nm-version.html +++ b/docs/libnm/html/libnm-nm-version.html @@ -143,6 +143,12 @@ <a class="link" href="libnm-nm-version.html#NM-DEPRECATED-IN-1-30-FOR:CAPS" title="NM_DEPRECATED_IN_1_30_FOR()">NM_DEPRECATED_IN_1_30_FOR</a><span class="c_punctuation">()</span> </td> </tr> +<tr> +<td class="define_keyword">#define</td> +<td class="function_name"> +<a class="link" href="libnm-nm-version.html#NM-DEPRECATED-IN-1-32-FOR:CAPS" title="NM_DEPRECATED_IN_1_32_FOR()">NM_DEPRECATED_IN_1_32_FOR</a><span class="c_punctuation">()</span> +</td> +</tr> </tbody> </table></div> </div> @@ -298,6 +304,18 @@ <td class="define_keyword">#define</td> <td class="function_name"><a class="link" href="libnm-nm-version.html#NM-AVAILABLE-IN-1-30:CAPS" title="NM_AVAILABLE_IN_1_30">NM_AVAILABLE_IN_1_30</a></td> </tr> +<tr> +<td class="define_keyword">#define</td> +<td class="function_name"><a class="link" href="libnm-nm-version.html#NM-DEPRECATED-IN-1-32:CAPS" title="NM_DEPRECATED_IN_1_32">NM_DEPRECATED_IN_1_32</a></td> +</tr> +<tr> +<td class="define_keyword">#define</td> +<td class="function_name"><a class="link" href="libnm-nm-version.html#NM-AVAILABLE-IN-1-32:CAPS" title="NM_AVAILABLE_IN_1_32">NM_AVAILABLE_IN_1_32</a></td> +</tr> +<tr> +<td class="define_keyword">#define</td> +<td class="function_name"><a class="link" href="libnm-nm-version.html#NM-AVAILABLE-IN-1-32-4:CAPS" title="NM_AVAILABLE_IN_1_32_4">NM_AVAILABLE_IN_1_32_4</a></td> +</tr> </tbody> </table></div> </div> @@ -407,6 +425,12 @@ NM_DEPRECATED_IN_1_24_FOR ();</pre> <pre class="programlisting"> #define NM_DEPRECATED_IN_1_30_FOR(f) G_DEPRECATED_FOR(f) </pre> </div> +<hr> +<div class="refsect2"> +<a name="NM-DEPRECATED-IN-1-32-FOR:CAPS"></a><h3>NM_DEPRECATED_IN_1_32_FOR()</h3> +<pre class="programlisting"> #define NM_DEPRECATED_IN_1_32_FOR(f) G_DEPRECATED_FOR(f) +</pre> +</div> </div> <div class="refsect1"> <a name="libnm-nm-version.other_details"></a><h2>Types and Values</h2> @@ -623,6 +647,24 @@ NM_DEPRECATED_IN_1_24_FOR ();</pre> <pre class="programlisting"> #define NM_AVAILABLE_IN_1_30 G_UNAVAILABLE(1, 30) </pre> </div> +<hr> +<div class="refsect2"> +<a name="NM-DEPRECATED-IN-1-32:CAPS"></a><h3>NM_DEPRECATED_IN_1_32</h3> +<pre class="programlisting"> #define NM_DEPRECATED_IN_1_32 G_DEPRECATED +</pre> +</div> +<hr> +<div class="refsect2"> +<a name="NM-AVAILABLE-IN-1-32:CAPS"></a><h3>NM_AVAILABLE_IN_1_32</h3> +<pre class="programlisting"> #define NM_AVAILABLE_IN_1_32 G_UNAVAILABLE(1, 32) +</pre> +</div> +<hr> +<div class="refsect2"> +<a name="NM-AVAILABLE-IN-1-32-4:CAPS"></a><h3>NM_AVAILABLE_IN_1_32_4</h3> +<pre class="programlisting"> #define NM_AVAILABLE_IN_1_32_4 G_UNAVAILABLE(1, 32.4) +</pre> +</div> </div> </div> <div class="footer"> diff --git a/docs/libnm/html/libnm.devhelp2 b/docs/libnm/html/libnm.devhelp2 index 0cc5267a..4869e57e 100644 --- a/docs/libnm/html/libnm.devhelp2 +++ b/docs/libnm/html/libnm.devhelp2 @@ -521,7 +521,6 @@ <keyword type="function" name="nm_simple_connection_new ()" link="NMSimpleConnection.html#nm-simple-connection-new"/> <keyword type="function" name="nm_simple_connection_new_from_dbus ()" link="NMSimpleConnection.html#nm-simple-connection-new-from-dbus"/> <keyword type="function" name="nm_simple_connection_new_clone ()" link="NMSimpleConnection.html#nm-simple-connection-new-clone"/> - <keyword type="struct" name="NMSimpleConnection" link="NMSimpleConnection.html#NMSimpleConnection-struct"/> <keyword type="function" name="nm_remote_connection_update2 ()" link="NMRemoteConnection.html#nm-remote-connection-update2" since="1.12"/> <keyword type="function" name="nm_remote_connection_update2_finish ()" link="NMRemoteConnection.html#nm-remote-connection-update2-finish"/> <keyword type="function" name="nm_remote_connection_commit_changes ()" link="NMRemoteConnection.html#nm-remote-connection-commit-changes" deprecated="1.22: Use nm_remote_connection_commit_changes_async() or GDBusConnection."/> @@ -576,9 +575,7 @@ <keyword type="enum" name="enum NMSettingSecretFlags" link="NMSetting.html#NMSettingSecretFlags"/> <keyword type="enum" name="enum NMSettingCompareFlags" link="NMSetting.html#NMSettingCompareFlags"/> <keyword type="enum" name="enum NMSettingMacRandomization" link="NMSetting.html#NMSettingMacRandomization"/> - <keyword type="struct" name="NMSetting" link="NMSetting.html#NMSetting-struct"/> <keyword type="enum" name="enum NMSettingDiffResult" link="NMSetting.html#NMSettingDiffResult"/> - <keyword type="property" name="The “name” property" link="NMSetting.html#NMSetting--name"/> <keyword type="function" name="nm_setting_connection_new ()" link="NMSettingConnection.html#nm-setting-connection-new"/> <keyword type="function" name="nm_setting_connection_get_id ()" link="NMSettingConnection.html#nm-setting-connection-get-id"/> <keyword type="function" name="nm_setting_connection_get_uuid ()" link="NMSettingConnection.html#nm-setting-connection-get-uuid"/> @@ -648,32 +645,6 @@ <keyword type="enum" name="enum NMSettingConnectionLldp" link="NMSettingConnection.html#NMSettingConnectionLldp"/> <keyword type="enum" name="enum NMSettingConnectionMdns" link="NMSettingConnection.html#NMSettingConnectionMdns" since="1.12"/> <keyword type="enum" name="enum NMSettingConnectionLlmnr" link="NMSettingConnection.html#NMSettingConnectionLlmnr" since="1.14"/> - <keyword type="struct" name="NMSettingConnection" link="NMSettingConnection.html#NMSettingConnection-struct"/> - <keyword type="property" name="The “auth-retries” property" link="NMSettingConnection.html#NMSettingConnection--auth-retries"/> - <keyword type="property" name="The “autoconnect” property" link="NMSettingConnection.html#NMSettingConnection--autoconnect"/> - <keyword type="property" name="The “autoconnect-priority” property" link="NMSettingConnection.html#NMSettingConnection--autoconnect-priority"/> - <keyword type="property" name="The “autoconnect-retries” property" link="NMSettingConnection.html#NMSettingConnection--autoconnect-retries"/> - <keyword type="property" name="The “autoconnect-slaves” property" link="NMSettingConnection.html#NMSettingConnection--autoconnect-slaves"/> - <keyword type="property" name="The “gateway-ping-timeout” property" link="NMSettingConnection.html#NMSettingConnection--gateway-ping-timeout"/> - <keyword type="property" name="The “id” property" link="NMSettingConnection.html#NMSettingConnection--id"/> - <keyword type="property" name="The “interface-name” property" link="NMSettingConnection.html#NMSettingConnection--interface-name"/> - <keyword type="property" name="The “lldp” property" link="NMSettingConnection.html#NMSettingConnection--lldp"/> - <keyword type="property" name="The “llmnr” property" link="NMSettingConnection.html#NMSettingConnection--llmnr"/> - <keyword type="property" name="The “master” property" link="NMSettingConnection.html#NMSettingConnection--master"/> - <keyword type="property" name="The “mdns” property" link="NMSettingConnection.html#NMSettingConnection--mdns"/> - <keyword type="property" name="The “metered” property" link="NMSettingConnection.html#NMSettingConnection--metered"/> - <keyword type="property" name="The “mud-url” property" link="NMSettingConnection.html#NMSettingConnection--mud-url"/> - <keyword type="property" name="The “multi-connect” property" link="NMSettingConnection.html#NMSettingConnection--multi-connect"/> - <keyword type="property" name="The “permissions” property" link="NMSettingConnection.html#NMSettingConnection--permissions"/> - <keyword type="property" name="The “read-only” property" link="NMSettingConnection.html#NMSettingConnection--read-only"/> - <keyword type="property" name="The “secondaries” property" link="NMSettingConnection.html#NMSettingConnection--secondaries"/> - <keyword type="property" name="The “slave-type” property" link="NMSettingConnection.html#NMSettingConnection--slave-type"/> - <keyword type="property" name="The “stable-id” property" link="NMSettingConnection.html#NMSettingConnection--stable-id"/> - <keyword type="property" name="The “timestamp” property" link="NMSettingConnection.html#NMSettingConnection--timestamp"/> - <keyword type="property" name="The “type” property" link="NMSettingConnection.html#NMSettingConnection--type"/> - <keyword type="property" name="The “uuid” property" link="NMSettingConnection.html#NMSettingConnection--uuid"/> - <keyword type="property" name="The “wait-device-timeout” property" link="NMSettingConnection.html#NMSettingConnection--wait-device-timeout"/> - <keyword type="property" name="The “zone” property" link="NMSettingConnection.html#NMSettingConnection--zone"/> <keyword type="function" name="nm_setting_6lowpan_new ()" link="NMSetting6Lowpan.html#nm-setting-6lowpan-new" since="1.14"/> <keyword type="function" name="nm_setting_6lowpan_get_parent ()" link="NMSetting6Lowpan.html#nm-setting-6lowpan-get-parent" since="1.14"/> <keyword type="macro" name="NM_SETTING_6LOWPAN_SETTING_NAME" link="NMSetting6Lowpan.html#NM-SETTING-6LOWPAN-SETTING-NAME:CAPS"/> @@ -821,54 +792,6 @@ <keyword type="macro" name="NM_SETTING_802_1X_SYSTEM_CA_CERTS" link="NMSetting8021x.html#NM-SETTING-802-1X-SYSTEM-CA-CERTS:CAPS"/> <keyword type="macro" name="NM_SETTING_802_1X_AUTH_TIMEOUT" link="NMSetting8021x.html#NM-SETTING-802-1X-AUTH-TIMEOUT:CAPS"/> <keyword type="macro" name="NM_SETTING_802_1X_OPTIONAL" link="NMSetting8021x.html#NM-SETTING-802-1X-OPTIONAL:CAPS"/> - <keyword type="struct" name="NMSetting8021x" link="NMSetting8021x.html#NMSetting8021x-struct"/> - <keyword type="property" name="The “altsubject-matches” property" link="NMSetting8021x.html#NMSetting8021x--altsubject-matches"/> - <keyword type="property" name="The “anonymous-identity” property" link="NMSetting8021x.html#NMSetting8021x--anonymous-identity"/> - <keyword type="property" name="The “auth-timeout” property" link="NMSetting8021x.html#NMSetting8021x--auth-timeout"/> - <keyword type="property" name="The “ca-cert” property" link="NMSetting8021x.html#NMSetting8021x--ca-cert"/> - <keyword type="property" name="The “ca-cert-password” property" link="NMSetting8021x.html#NMSetting8021x--ca-cert-password"/> - <keyword type="property" name="The “ca-cert-password-flags” property" link="NMSetting8021x.html#NMSetting8021x--ca-cert-password-flags"/> - <keyword type="property" name="The “ca-path” property" link="NMSetting8021x.html#NMSetting8021x--ca-path"/> - <keyword type="property" name="The “client-cert” property" link="NMSetting8021x.html#NMSetting8021x--client-cert"/> - <keyword type="property" name="The “client-cert-password” property" link="NMSetting8021x.html#NMSetting8021x--client-cert-password"/> - <keyword type="property" name="The “client-cert-password-flags” property" link="NMSetting8021x.html#NMSetting8021x--client-cert-password-flags"/> - <keyword type="property" name="The “domain-match” property" link="NMSetting8021x.html#NMSetting8021x--domain-match"/> - <keyword type="property" name="The “domain-suffix-match” property" link="NMSetting8021x.html#NMSetting8021x--domain-suffix-match"/> - <keyword type="property" name="The “eap” property" link="NMSetting8021x.html#NMSetting8021x--eap"/> - <keyword type="property" name="The “identity” property" link="NMSetting8021x.html#NMSetting8021x--identity"/> - <keyword type="property" name="The “optional” property" link="NMSetting8021x.html#NMSetting8021x--optional"/> - <keyword type="property" name="The “pac-file” property" link="NMSetting8021x.html#NMSetting8021x--pac-file"/> - <keyword type="property" name="The “password” property" link="NMSetting8021x.html#NMSetting8021x--password"/> - <keyword type="property" name="The “password-flags” property" link="NMSetting8021x.html#NMSetting8021x--password-flags"/> - <keyword type="property" name="The “password-raw” property" link="NMSetting8021x.html#NMSetting8021x--password-raw"/> - <keyword type="property" name="The “password-raw-flags” property" link="NMSetting8021x.html#NMSetting8021x--password-raw-flags"/> - <keyword type="property" name="The “phase1-auth-flags” property" link="NMSetting8021x.html#NMSetting8021x--phase1-auth-flags"/> - <keyword type="property" name="The “phase1-fast-provisioning” property" link="NMSetting8021x.html#NMSetting8021x--phase1-fast-provisioning"/> - <keyword type="property" name="The “phase1-peaplabel” property" link="NMSetting8021x.html#NMSetting8021x--phase1-peaplabel"/> - <keyword type="property" name="The “phase1-peapver” property" link="NMSetting8021x.html#NMSetting8021x--phase1-peapver"/> - <keyword type="property" name="The “phase2-altsubject-matches” property" link="NMSetting8021x.html#NMSetting8021x--phase2-altsubject-matches"/> - <keyword type="property" name="The “phase2-auth” property" link="NMSetting8021x.html#NMSetting8021x--phase2-auth"/> - <keyword type="property" name="The “phase2-autheap” property" link="NMSetting8021x.html#NMSetting8021x--phase2-autheap"/> - <keyword type="property" name="The “phase2-ca-cert” property" link="NMSetting8021x.html#NMSetting8021x--phase2-ca-cert"/> - <keyword type="property" name="The “phase2-ca-cert-password” property" link="NMSetting8021x.html#NMSetting8021x--phase2-ca-cert-password"/> - <keyword type="property" name="The “phase2-ca-cert-password-flags” property" link="NMSetting8021x.html#NMSetting8021x--phase2-ca-cert-password-flags"/> - <keyword type="property" name="The “phase2-ca-path” property" link="NMSetting8021x.html#NMSetting8021x--phase2-ca-path"/> - <keyword type="property" name="The “phase2-client-cert” property" link="NMSetting8021x.html#NMSetting8021x--phase2-client-cert"/> - <keyword type="property" name="The “phase2-client-cert-password” property" link="NMSetting8021x.html#NMSetting8021x--phase2-client-cert-password"/> - <keyword type="property" name="The “phase2-client-cert-password-flags” property" link="NMSetting8021x.html#NMSetting8021x--phase2-client-cert-password-flags"/> - <keyword type="property" name="The “phase2-domain-match” property" link="NMSetting8021x.html#NMSetting8021x--phase2-domain-match"/> - <keyword type="property" name="The “phase2-domain-suffix-match” property" link="NMSetting8021x.html#NMSetting8021x--phase2-domain-suffix-match"/> - <keyword type="property" name="The “phase2-private-key” property" link="NMSetting8021x.html#NMSetting8021x--phase2-private-key"/> - <keyword type="property" name="The “phase2-private-key-password” property" link="NMSetting8021x.html#NMSetting8021x--phase2-private-key-password"/> - <keyword type="property" name="The “phase2-private-key-password-flags” property" link="NMSetting8021x.html#NMSetting8021x--phase2-private-key-password-flags"/> - <keyword type="property" name="The “phase2-subject-match” property" link="NMSetting8021x.html#NMSetting8021x--phase2-subject-match"/> - <keyword type="property" name="The “pin” property" link="NMSetting8021x.html#NMSetting8021x--pin"/> - <keyword type="property" name="The “pin-flags” property" link="NMSetting8021x.html#NMSetting8021x--pin-flags"/> - <keyword type="property" name="The “private-key” property" link="NMSetting8021x.html#NMSetting8021x--private-key"/> - <keyword type="property" name="The “private-key-password” property" link="NMSetting8021x.html#NMSetting8021x--private-key-password"/> - <keyword type="property" name="The “private-key-password-flags” property" link="NMSetting8021x.html#NMSetting8021x--private-key-password-flags"/> - <keyword type="property" name="The “subject-match” property" link="NMSetting8021x.html#NMSetting8021x--subject-match"/> - <keyword type="property" name="The “system-ca-certs” property" link="NMSetting8021x.html#NMSetting8021x--system-ca-certs"/> <keyword type="function" name="nm_setting_adsl_new ()" link="NMSettingAdsl.html#nm-setting-adsl-new"/> <keyword type="function" name="nm_setting_adsl_get_username ()" link="NMSettingAdsl.html#nm-setting-adsl-get-username"/> <keyword type="function" name="nm_setting_adsl_get_password ()" link="NMSettingAdsl.html#nm-setting-adsl-get-password"/> @@ -890,14 +813,6 @@ <keyword type="macro" name="NM_SETTING_ADSL_PROTOCOL_IPOATM" link="NMSettingAdsl.html#NM-SETTING-ADSL-PROTOCOL-IPOATM:CAPS"/> <keyword type="macro" name="NM_SETTING_ADSL_ENCAPSULATION_VCMUX" link="NMSettingAdsl.html#NM-SETTING-ADSL-ENCAPSULATION-VCMUX:CAPS"/> <keyword type="macro" name="NM_SETTING_ADSL_ENCAPSULATION_LLC" link="NMSettingAdsl.html#NM-SETTING-ADSL-ENCAPSULATION-LLC:CAPS"/> - <keyword type="struct" name="NMSettingAdsl" link="NMSettingAdsl.html#NMSettingAdsl-struct"/> - <keyword type="property" name="The “encapsulation” property" link="NMSettingAdsl.html#NMSettingAdsl--encapsulation"/> - <keyword type="property" name="The “password” property" link="NMSettingAdsl.html#NMSettingAdsl--password"/> - <keyword type="property" name="The “password-flags” property" link="NMSettingAdsl.html#NMSettingAdsl--password-flags"/> - <keyword type="property" name="The “protocol” property" link="NMSettingAdsl.html#NMSettingAdsl--protocol"/> - <keyword type="property" name="The “username” property" link="NMSettingAdsl.html#NMSettingAdsl--username"/> - <keyword type="property" name="The “vci” property" link="NMSettingAdsl.html#NMSettingAdsl--vci"/> - <keyword type="property" name="The “vpi” property" link="NMSettingAdsl.html#NMSettingAdsl--vpi"/> <keyword type="function" name="nm_setting_bluetooth_new ()" link="NMSettingBluetooth.html#nm-setting-bluetooth-new"/> <keyword type="function" name="nm_setting_bluetooth_get_bdaddr ()" link="NMSettingBluetooth.html#nm-setting-bluetooth-get-bdaddr"/> <keyword type="function" name="nm_setting_bluetooth_get_connection_type ()" link="NMSettingBluetooth.html#nm-setting-bluetooth-get-connection-type"/> @@ -907,9 +822,6 @@ <keyword type="macro" name="NM_SETTING_BLUETOOTH_TYPE_DUN" link="NMSettingBluetooth.html#NM-SETTING-BLUETOOTH-TYPE-DUN:CAPS"/> <keyword type="macro" name="NM_SETTING_BLUETOOTH_TYPE_PANU" link="NMSettingBluetooth.html#NM-SETTING-BLUETOOTH-TYPE-PANU:CAPS"/> <keyword type="macro" name="NM_SETTING_BLUETOOTH_TYPE_NAP" link="NMSettingBluetooth.html#NM-SETTING-BLUETOOTH-TYPE-NAP:CAPS"/> - <keyword type="struct" name="NMSettingBluetooth" link="NMSettingBluetooth.html#NMSettingBluetooth-struct"/> - <keyword type="property" name="The “bdaddr” property" link="NMSettingBluetooth.html#NMSettingBluetooth--bdaddr"/> - <keyword type="property" name="The “type” property" link="NMSettingBluetooth.html#NMSettingBluetooth--type"/> <keyword type="function" name="nm_setting_bond_new ()" link="NMSettingBond.html#nm-setting-bond-new"/> <keyword type="function" name="nm_setting_bond_get_num_options ()" link="NMSettingBond.html#nm-setting-bond-get-num-options"/> <keyword type="function" name="nm_setting_bond_get_option ()" link="NMSettingBond.html#nm-setting-bond-get-option"/> @@ -950,8 +862,6 @@ <keyword type="macro" name="NM_SETTING_BOND_OPTION_TLB_DYNAMIC_LB" link="NMSettingBond.html#NM-SETTING-BOND-OPTION-TLB-DYNAMIC-LB:CAPS"/> <keyword type="macro" name="NM_SETTING_BOND_OPTION_LP_INTERVAL" link="NMSettingBond.html#NM-SETTING-BOND-OPTION-LP-INTERVAL:CAPS"/> <keyword type="macro" name="NM_SETTING_BOND_OPTION_PEER_NOTIF_DELAY" link="NMSettingBond.html#NM-SETTING-BOND-OPTION-PEER-NOTIF-DELAY:CAPS"/> - <keyword type="struct" name="NMSettingBond" link="NMSettingBond.html#NMSettingBond-struct"/> - <keyword type="property" name="The “options” property" link="NMSettingBond.html#NMSettingBond--options"/> <keyword type="function" name="nm_setting_bridge_port_new ()" link="NMSettingBridgePort.html#nm-setting-bridge-port-new"/> <keyword type="function" name="nm_setting_bridge_port_get_priority ()" link="NMSettingBridgePort.html#nm-setting-bridge-port-get-priority"/> <keyword type="function" name="nm_setting_bridge_port_get_path_cost ()" link="NMSettingBridgePort.html#nm-setting-bridge-port-get-path-cost"/> @@ -967,11 +877,6 @@ <keyword type="macro" name="NM_SETTING_BRIDGE_PORT_PATH_COST" link="NMSettingBridgePort.html#NM-SETTING-BRIDGE-PORT-PATH-COST:CAPS"/> <keyword type="macro" name="NM_SETTING_BRIDGE_PORT_HAIRPIN_MODE" link="NMSettingBridgePort.html#NM-SETTING-BRIDGE-PORT-HAIRPIN-MODE:CAPS"/> <keyword type="macro" name="NM_SETTING_BRIDGE_PORT_VLANS" link="NMSettingBridgePort.html#NM-SETTING-BRIDGE-PORT-VLANS:CAPS"/> - <keyword type="struct" name="NMSettingBridgePort" link="NMSettingBridgePort.html#NMSettingBridgePort-struct"/> - <keyword type="property" name="The “hairpin-mode” property" link="NMSettingBridgePort.html#NMSettingBridgePort--hairpin-mode"/> - <keyword type="property" name="The “path-cost” property" link="NMSettingBridgePort.html#NMSettingBridgePort--path-cost"/> - <keyword type="property" name="The “priority” property" link="NMSettingBridgePort.html#NMSettingBridgePort--priority"/> - <keyword type="property" name="The “vlans” property" link="NMSettingBridgePort.html#NMSettingBridgePort--vlans"/> <keyword type="function" name="nm_setting_bridge_new ()" link="NMSettingBridge.html#nm-setting-bridge-new"/> <keyword type="function" name="nm_setting_bridge_get_mac_address ()" link="NMSettingBridge.html#nm-setting-bridge-get-mac-address"/> <keyword type="function" name="nm_setting_bridge_get_stp ()" link="NMSettingBridge.html#nm-setting-bridge-get-stp"/> @@ -1061,12 +966,6 @@ <keyword type="macro" name="NM_SETTING_CDMA_PASSWORD" link="NMSettingCdma.html#NM-SETTING-CDMA-PASSWORD:CAPS"/> <keyword type="macro" name="NM_SETTING_CDMA_PASSWORD_FLAGS" link="NMSettingCdma.html#NM-SETTING-CDMA-PASSWORD-FLAGS:CAPS"/> <keyword type="macro" name="NM_SETTING_CDMA_MTU" link="NMSettingCdma.html#NM-SETTING-CDMA-MTU:CAPS"/> - <keyword type="struct" name="NMSettingCdma" link="NMSettingCdma.html#NMSettingCdma-struct"/> - <keyword type="property" name="The “mtu” property" link="NMSettingCdma.html#NMSettingCdma--mtu"/> - <keyword type="property" name="The “number” property" link="NMSettingCdma.html#NMSettingCdma--number"/> - <keyword type="property" name="The “password” property" link="NMSettingCdma.html#NMSettingCdma--password"/> - <keyword type="property" name="The “password-flags” property" link="NMSettingCdma.html#NMSettingCdma--password-flags"/> - <keyword type="property" name="The “username” property" link="NMSettingCdma.html#NMSettingCdma--username"/> <keyword type="function" name="nm_setting_dcb_new ()" link="NMSettingDcb.html#nm-setting-dcb-new"/> <keyword type="function" name="nm_setting_dcb_get_app_fcoe_flags ()" link="NMSettingDcb.html#nm-setting-dcb-get-app-fcoe-flags"/> <keyword type="function" name="nm_setting_dcb_get_app_fcoe_priority ()" link="NMSettingDcb.html#nm-setting-dcb-get-app-fcoe-priority"/> @@ -1108,28 +1007,12 @@ <keyword type="macro" name="NM_SETTING_DCB_PRIORITY_BANDWIDTH" link="NMSettingDcb.html#NM-SETTING-DCB-PRIORITY-BANDWIDTH:CAPS"/> <keyword type="macro" name="NM_SETTING_DCB_PRIORITY_STRICT_BANDWIDTH" link="NMSettingDcb.html#NM-SETTING-DCB-PRIORITY-STRICT-BANDWIDTH:CAPS"/> <keyword type="macro" name="NM_SETTING_DCB_PRIORITY_TRAFFIC_CLASS" link="NMSettingDcb.html#NM-SETTING-DCB-PRIORITY-TRAFFIC-CLASS:CAPS"/> - <keyword type="struct" name="NMSettingDcb" link="NMSettingDcb.html#NMSettingDcb-struct"/> - <keyword type="property" name="The “app-fcoe-flags” property" link="NMSettingDcb.html#NMSettingDcb--app-fcoe-flags"/> - <keyword type="property" name="The “app-fcoe-mode” property" link="NMSettingDcb.html#NMSettingDcb--app-fcoe-mode"/> - <keyword type="property" name="The “app-fcoe-priority” property" link="NMSettingDcb.html#NMSettingDcb--app-fcoe-priority"/> - <keyword type="property" name="The “app-fip-flags” property" link="NMSettingDcb.html#NMSettingDcb--app-fip-flags"/> - <keyword type="property" name="The “app-fip-priority” property" link="NMSettingDcb.html#NMSettingDcb--app-fip-priority"/> - <keyword type="property" name="The “app-iscsi-flags” property" link="NMSettingDcb.html#NMSettingDcb--app-iscsi-flags"/> - <keyword type="property" name="The “app-iscsi-priority” property" link="NMSettingDcb.html#NMSettingDcb--app-iscsi-priority"/> - <keyword type="property" name="The “priority-bandwidth” property" link="NMSettingDcb.html#NMSettingDcb--priority-bandwidth"/> - <keyword type="property" name="The “priority-flow-control” property" link="NMSettingDcb.html#NMSettingDcb--priority-flow-control"/> - <keyword type="property" name="The “priority-flow-control-flags” property" link="NMSettingDcb.html#NMSettingDcb--priority-flow-control-flags"/> - <keyword type="property" name="The “priority-group-bandwidth” property" link="NMSettingDcb.html#NMSettingDcb--priority-group-bandwidth"/> - <keyword type="property" name="The “priority-group-flags” property" link="NMSettingDcb.html#NMSettingDcb--priority-group-flags"/> - <keyword type="property" name="The “priority-group-id” property" link="NMSettingDcb.html#NMSettingDcb--priority-group-id"/> - <keyword type="property" name="The “priority-strict-bandwidth” property" link="NMSettingDcb.html#NMSettingDcb--priority-strict-bandwidth"/> - <keyword type="property" name="The “priority-traffic-class” property" link="NMSettingDcb.html#NMSettingDcb--priority-traffic-class"/> <keyword type="function" name="nm_setting_dummy_new ()" link="NMSettingDummy.html#nm-setting-dummy-new" since="1.8"/> <keyword type="macro" name="NM_SETTING_DUMMY_SETTING_NAME" link="NMSettingDummy.html#NM-SETTING-DUMMY-SETTING-NAME:CAPS"/> - <keyword type="struct" name="NMSettingDummy" link="NMSettingDummy.html#NMSettingDummy-struct"/> <keyword type="function" name="nm_ethtool_optname_is_feature ()" link="NMSettingEthtool.html#nm-ethtool-optname-is-feature" since="1.20"/> <keyword type="function" name="nm_ethtool_optname_is_coalesce ()" link="NMSettingEthtool.html#nm-ethtool-optname-is-coalesce" since="1.26"/> <keyword type="function" name="nm_ethtool_optname_is_ring ()" link="NMSettingEthtool.html#nm-ethtool-optname-is-ring" since="1.26"/> + <keyword type="function" name="nm_ethtool_optname_is_pause ()" link="NMSettingEthtool.html#nm-ethtool-optname-is-pause" since="1.32"/> <keyword type="function" name="nm_setting_ethtool_new ()" link="NMSettingEthtool.html#nm-setting-ethtool-new" since="1.14"/> <keyword type="function" name="nm_setting_ethtool_get_optnames ()" link="NMSettingEthtool.html#nm-setting-ethtool-get-optnames" deprecated="1.26: use nm_setting_option_get_all_names() instead." since="1.20"/> <keyword type="function" name="nm_setting_ethtool_get_feature ()" link="NMSettingEthtool.html#nm-setting-ethtool-get-feature" deprecated="1.26: use nm_setting_option_get_boolean() instead." since="1.14"/> @@ -1138,7 +1021,6 @@ <keyword type="macro" name="NM_SETTING_ETHTOOL_SETTING_NAME" link="NMSettingEthtool.html#NM-SETTING-ETHTOOL-SETTING-NAME:CAPS"/> <keyword type="function" name="nm_setting_generic_new ()" link="NMSettingGeneric.html#nm-setting-generic-new"/> <keyword type="macro" name="NM_SETTING_GENERIC_SETTING_NAME" link="NMSettingGeneric.html#NM-SETTING-GENERIC-SETTING-NAME:CAPS"/> - <keyword type="struct" name="NMSettingGeneric" link="NMSettingGeneric.html#NMSettingGeneric-struct"/> <keyword type="function" name="nm_setting_gsm_new ()" link="NMSettingGsm.html#nm-setting-gsm-new"/> <keyword type="function" name="nm_setting_gsm_get_auto_config ()" link="NMSettingGsm.html#nm-setting-gsm-get-auto-config" since="1.22"/> <keyword type="function" name="nm_setting_gsm_get_username ()" link="NMSettingGsm.html#nm-setting-gsm-get-username"/> @@ -1169,21 +1051,6 @@ <keyword type="macro" name="NM_SETTING_GSM_SIM_OPERATOR_ID" link="NMSettingGsm.html#NM-SETTING-GSM-SIM-OPERATOR-ID:CAPS"/> <keyword type="macro" name="NM_SETTING_GSM_MTU" link="NMSettingGsm.html#NM-SETTING-GSM-MTU:CAPS"/> <keyword type="macro" name="NM_SETTING_GSM_NUMBER" link="NMSettingGsm.html#NM-SETTING-GSM-NUMBER:CAPS"/> - <keyword type="struct" name="NMSettingGsm" link="NMSettingGsm.html#NMSettingGsm-struct"/> - <keyword type="property" name="The “apn” property" link="NMSettingGsm.html#NMSettingGsm--apn"/> - <keyword type="property" name="The “auto-config” property" link="NMSettingGsm.html#NMSettingGsm--auto-config"/> - <keyword type="property" name="The “device-id” property" link="NMSettingGsm.html#NMSettingGsm--device-id"/> - <keyword type="property" name="The “home-only” property" link="NMSettingGsm.html#NMSettingGsm--home-only"/> - <keyword type="property" name="The “mtu” property" link="NMSettingGsm.html#NMSettingGsm--mtu"/> - <keyword type="property" name="The “network-id” property" link="NMSettingGsm.html#NMSettingGsm--network-id"/> - <keyword type="property" name="The “number” property" link="NMSettingGsm.html#NMSettingGsm--number"/> - <keyword type="property" name="The “password” property" link="NMSettingGsm.html#NMSettingGsm--password"/> - <keyword type="property" name="The “password-flags” property" link="NMSettingGsm.html#NMSettingGsm--password-flags"/> - <keyword type="property" name="The “pin” property" link="NMSettingGsm.html#NMSettingGsm--pin"/> - <keyword type="property" name="The “pin-flags” property" link="NMSettingGsm.html#NMSettingGsm--pin-flags"/> - <keyword type="property" name="The “sim-id” property" link="NMSettingGsm.html#NMSettingGsm--sim-id"/> - <keyword type="property" name="The “sim-operator-id” property" link="NMSettingGsm.html#NMSettingGsm--sim-operator-id"/> - <keyword type="property" name="The “username” property" link="NMSettingGsm.html#NMSettingGsm--username"/> <keyword type="function" name="nm_setting_hostname_new ()" link="NMSettingHostname.html#nm-setting-hostname-new" since="1.30"/> <keyword type="function" name="nm_setting_hostname_get_priority ()" link="NMSettingHostname.html#nm-setting-hostname-get-priority" since="1.30"/> <keyword type="function" name="nm_setting_hostname_get_from_dhcp ()" link="NMSettingHostname.html#nm-setting-hostname-get-from-dhcp" since="1.30"/> @@ -1207,12 +1074,6 @@ <keyword type="macro" name="NM_SETTING_INFINIBAND_TRANSPORT_MODE" link="NMSettingInfiniband.html#NM-SETTING-INFINIBAND-TRANSPORT-MODE:CAPS"/> <keyword type="macro" name="NM_SETTING_INFINIBAND_P_KEY" link="NMSettingInfiniband.html#NM-SETTING-INFINIBAND-P-KEY:CAPS"/> <keyword type="macro" name="NM_SETTING_INFINIBAND_PARENT" link="NMSettingInfiniband.html#NM-SETTING-INFINIBAND-PARENT:CAPS"/> - <keyword type="struct" name="NMSettingInfiniband" link="NMSettingInfiniband.html#NMSettingInfiniband-struct"/> - <keyword type="property" name="The “mac-address” property" link="NMSettingInfiniband.html#NMSettingInfiniband--mac-address"/> - <keyword type="property" name="The “mtu” property" link="NMSettingInfiniband.html#NMSettingInfiniband--mtu"/> - <keyword type="property" name="The “p-key” property" link="NMSettingInfiniband.html#NMSettingInfiniband--p-key"/> - <keyword type="property" name="The “parent” property" link="NMSettingInfiniband.html#NMSettingInfiniband--parent"/> - <keyword type="property" name="The “transport-mode” property" link="NMSettingInfiniband.html#NMSettingInfiniband--transport-mode"/> <keyword type="function" name="nm_setting_ip4_config_new ()" link="NMSettingIP4Config.html#nm-setting-ip4-config-new"/> <keyword type="function" name="nm_setting_ip4_config_get_dhcp_client_id ()" link="NMSettingIP4Config.html#nm-setting-ip4-config-get-dhcp-client-id"/> <keyword type="function" name="nm_setting_ip4_config_get_dhcp_fqdn ()" link="NMSettingIP4Config.html#nm-setting-ip4-config-get-dhcp-fqdn" since="1.2"/> @@ -1226,10 +1087,6 @@ <keyword type="macro" name="NM_SETTING_IP4_CONFIG_METHOD_MANUAL" link="NMSettingIP4Config.html#NM-SETTING-IP4-CONFIG-METHOD-MANUAL:CAPS"/> <keyword type="macro" name="NM_SETTING_IP4_CONFIG_METHOD_SHARED" link="NMSettingIP4Config.html#NM-SETTING-IP4-CONFIG-METHOD-SHARED:CAPS"/> <keyword type="macro" name="NM_SETTING_IP4_CONFIG_METHOD_DISABLED" link="NMSettingIP4Config.html#NM-SETTING-IP4-CONFIG-METHOD-DISABLED:CAPS"/> - <keyword type="struct" name="NMSettingIP4Config" link="NMSettingIP4Config.html#NMSettingIP4Config-struct"/> - <keyword type="property" name="The “dhcp-client-id” property" link="NMSettingIP4Config.html#NMSettingIP4Config--dhcp-client-id"/> - <keyword type="property" name="The “dhcp-fqdn” property" link="NMSettingIP4Config.html#NMSettingIP4Config--dhcp-fqdn"/> - <keyword type="property" name="The “dhcp-vendor-class-identifier” property" link="NMSettingIP4Config.html#NMSettingIP4Config--dhcp-vendor-class-identifier"/> <keyword type="function" name="nm_setting_ip6_config_new ()" link="NMSettingIP6Config.html#nm-setting-ip6-config-new"/> <keyword type="function" name="nm_setting_ip6_config_get_ip6_privacy ()" link="NMSettingIP6Config.html#nm-setting-ip6-config-get-ip6-privacy"/> <keyword type="function" name="nm_setting_ip6_config_get_addr_gen_mode ()" link="NMSettingIP6Config.html#nm-setting-ip6-config-get-addr-gen-mode" since="1.2"/> @@ -1251,19 +1108,13 @@ <keyword type="macro" name="NM_SETTING_IP6_CONFIG_METHOD_DISABLED" link="NMSettingIP6Config.html#NM-SETTING-IP6-CONFIG-METHOD-DISABLED:CAPS" since="1.20"/> <keyword type="enum" name="enum NMSettingIP6ConfigPrivacy" link="NMSettingIP6Config.html#NMSettingIP6ConfigPrivacy"/> <keyword type="enum" name="enum NMSettingIP6ConfigAddrGenMode" link="NMSettingIP6Config.html#NMSettingIP6ConfigAddrGenMode" since="1.2"/> - <keyword type="struct" name="NMSettingIP6Config" link="NMSettingIP6Config.html#NMSettingIP6Config-struct"/> - <keyword type="property" name="The “addr-gen-mode” property" link="NMSettingIP6Config.html#NMSettingIP6Config--addr-gen-mode"/> - <keyword type="property" name="The “dhcp-duid” property" link="NMSettingIP6Config.html#NMSettingIP6Config--dhcp-duid"/> - <keyword type="property" name="The “ip6-privacy” property" link="NMSettingIP6Config.html#NMSettingIP6Config--ip6-privacy"/> - <keyword type="property" name="The “ra-timeout” property" link="NMSettingIP6Config.html#NMSettingIP6Config--ra-timeout"/> - <keyword type="property" name="The “token” property" link="NMSettingIP6Config.html#NMSettingIP6Config--token"/> <keyword type="function" name="nm_ip_address_new ()" link="NMSettingIPConfig.html#nm-ip-address-new"/> <keyword type="function" name="nm_ip_address_new_binary ()" link="NMSettingIPConfig.html#nm-ip-address-new-binary"/> <keyword type="function" name="nm_ip_address_ref ()" link="NMSettingIPConfig.html#nm-ip-address-ref"/> <keyword type="function" name="nm_ip_address_unref ()" link="NMSettingIPConfig.html#nm-ip-address-unref"/> <keyword type="function" name="nm_ip_address_equal ()" link="NMSettingIPConfig.html#nm-ip-address-equal"/> <keyword type="function" name="nm_ip_address_cmp_full ()" link="NMSettingIPConfig.html#nm-ip-address-cmp-full"/> - <keyword type="function" name="nm_ip_address_dup ()" link="NMSettingIPConfig.html#nm-ip-address-dup"/> + <keyword type="function" name="nm_ip_address_dup ()" link="NMSettingIPConfig.html#nm-ip-address-dup" since="1.32"/> <keyword type="function" name="nm_ip_address_get_family ()" link="NMSettingIPConfig.html#nm-ip-address-get-family"/> <keyword type="function" name="nm_ip_address_get_address ()" link="NMSettingIPConfig.html#nm-ip-address-get-address"/> <keyword type="function" name="nm_ip_address_set_address ()" link="NMSettingIPConfig.html#nm-ip-address-set-address"/> @@ -1280,7 +1131,7 @@ <keyword type="function" name="nm_ip_route_unref ()" link="NMSettingIPConfig.html#nm-ip-route-unref"/> <keyword type="function" name="nm_ip_route_equal ()" link="NMSettingIPConfig.html#nm-ip-route-equal"/> <keyword type="function" name="nm_ip_route_equal_full ()" link="NMSettingIPConfig.html#nm-ip-route-equal-full" since="1.10"/> - <keyword type="function" name="nm_ip_route_dup ()" link="NMSettingIPConfig.html#nm-ip-route-dup"/> + <keyword type="function" name="nm_ip_route_dup ()" link="NMSettingIPConfig.html#nm-ip-route-dup" since="1.32"/> <keyword type="function" name="nm_ip_route_get_family ()" link="NMSettingIPConfig.html#nm-ip-route-get-family"/> <keyword type="function" name="nm_ip_route_get_dest ()" link="NMSettingIPConfig.html#nm-ip-route-get-dest"/> <keyword type="function" name="nm_ip_route_set_dest ()" link="NMSettingIPConfig.html#nm-ip-route-set-dest"/> @@ -1339,6 +1190,8 @@ <keyword type="function" name="nm_ip_routing_rule_set_table ()" link="NMSettingIPConfig.html#nm-ip-routing-rule-set-table" since="1.18"/> <keyword type="function" name="nm_ip_routing_rule_get_suppress_prefixlength ()" link="NMSettingIPConfig.html#nm-ip-routing-rule-get-suppress-prefixlength" since="1.20"/> <keyword type="function" name="nm_ip_routing_rule_set_suppress_prefixlength ()" link="NMSettingIPConfig.html#nm-ip-routing-rule-set-suppress-prefixlength" since="1.20"/> + <keyword type="function" name="nm_ip_routing_rule_get_uid_range ()" link="NMSettingIPConfig.html#nm-ip-routing-rule-get-uid-range" since="1.32. Due to a bug, the symbols of this function"/> + <keyword type="function" name="nm_ip_routing_rule_set_uid_range ()" link="NMSettingIPConfig.html#nm-ip-routing-rule-set-uid-range" since="1.32. Due to a bug, the symbols of this function"/> <keyword type="function" name="nm_ip_routing_rule_cmp ()" link="NMSettingIPConfig.html#nm-ip-routing-rule-cmp" since="1.18"/> <keyword type="function" name="nm_ip_routing_rule_validate ()" link="NMSettingIPConfig.html#nm-ip-routing-rule-validate" since="1.18"/> <keyword type="function" name="nm_ip_routing_rule_from_string ()" link="NMSettingIPConfig.html#nm-ip-routing-rule-from-string" since="1.18"/> @@ -1392,6 +1245,7 @@ <keyword type="function" name="nm_setting_ip_config_get_may_fail ()" link="NMSettingIPConfig.html#nm-setting-ip-config-get-may-fail"/> <keyword type="function" name="nm_setting_ip_config_get_dad_timeout ()" link="NMSettingIPConfig.html#nm-setting-ip-config-get-dad-timeout" since="1.2"/> <keyword type="function" name="nm_setting_ip_config_get_dhcp_timeout ()" link="NMSettingIPConfig.html#nm-setting-ip-config-get-dhcp-timeout" since="1.2"/> + <keyword type="function" name="nm_setting_ip_config_get_required_timeout ()" link="NMSettingIPConfig.html#nm-setting-ip-config-get-required-timeout" since="1.34, 1.32.4"/> <keyword type="function" name="nm_setting_ip_config_get_dhcp_iaid ()" link="NMSettingIPConfig.html#nm-setting-ip-config-get-dhcp-iaid" since="1.22"/> <keyword type="function" name="nm_setting_ip_config_get_dhcp_hostname_flags ()" link="NMSettingIPConfig.html#nm-setting-ip-config-get-dhcp-hostname-flags" since="1.22"/> <keyword type="function" name="nm_setting_ip_config_get_dhcp_reject_servers ()" link="NMSettingIPConfig.html#nm-setting-ip-config-get-dhcp-reject-servers" since="1.28"/> @@ -1438,6 +1292,7 @@ <keyword type="macro" name="NM_SETTING_IP_CONFIG_MAY_FAIL" link="NMSettingIPConfig.html#NM-SETTING-IP-CONFIG-MAY-FAIL:CAPS"/> <keyword type="macro" name="NM_SETTING_IP_CONFIG_DAD_TIMEOUT" link="NMSettingIPConfig.html#NM-SETTING-IP-CONFIG-DAD-TIMEOUT:CAPS"/> <keyword type="macro" name="NM_SETTING_IP_CONFIG_DHCP_TIMEOUT" link="NMSettingIPConfig.html#NM-SETTING-IP-CONFIG-DHCP-TIMEOUT:CAPS"/> + <keyword type="macro" name="NM_SETTING_IP_CONFIG_REQUIRED_TIMEOUT" link="NMSettingIPConfig.html#NM-SETTING-IP-CONFIG-REQUIRED-TIMEOUT:CAPS"/> <keyword type="macro" name="NM_SETTING_IP_CONFIG_DHCP_IAID" link="NMSettingIPConfig.html#NM-SETTING-IP-CONFIG-DHCP-IAID:CAPS"/> <keyword type="macro" name="NM_SETTING_IP_CONFIG_DHCP_REJECT_SERVERS" link="NMSettingIPConfig.html#NM-SETTING-IP-CONFIG-DHCP-REJECT-SERVERS:CAPS"/> <keyword type="macro" name="NM_SETTING_IP_CONFIG_ROUTING_RULES" link="NMSettingIPConfig.html#NM-SETTING-IP-CONFIG-ROUTING-RULES:CAPS"/> @@ -1458,29 +1313,7 @@ <keyword type="macro" name="NM_SETTING_DNS_OPTION_USE_VC" link="NMSettingIPConfig.html#NM-SETTING-DNS-OPTION-USE-VC:CAPS"/> <keyword type="macro" name="NM_SETTING_DNS_OPTION_NO_RELOAD" link="NMSettingIPConfig.html#NM-SETTING-DNS-OPTION-NO-RELOAD:CAPS"/> <keyword type="macro" name="NM_SETTING_DNS_OPTION_TRUST_AD" link="NMSettingIPConfig.html#NM-SETTING-DNS-OPTION-TRUST-AD:CAPS"/> - <keyword type="struct" name="NMSettingIPConfig" link="NMSettingIPConfig.html#NMSettingIPConfig-struct"/> <keyword type="enum" name="enum NMDhcpHostnameFlags" link="NMSettingIPConfig.html#NMDhcpHostnameFlags" since="1.22"/> - <keyword type="property" name="The “addresses” property" link="NMSettingIPConfig.html#NMSettingIPConfig--addresses"/> - <keyword type="property" name="The “dad-timeout” property" link="NMSettingIPConfig.html#NMSettingIPConfig--dad-timeout"/> - <keyword type="property" name="The “dhcp-hostname” property" link="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-hostname"/> - <keyword type="property" name="The “dhcp-hostname-flags” property" link="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-hostname-flags"/> - <keyword type="property" name="The “dhcp-iaid” property" link="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-iaid"/> - <keyword type="property" name="The “dhcp-reject-servers” property" link="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-reject-servers"/> - <keyword type="property" name="The “dhcp-send-hostname” property" link="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-send-hostname"/> - <keyword type="property" name="The “dhcp-timeout” property" link="NMSettingIPConfig.html#NMSettingIPConfig--dhcp-timeout"/> - <keyword type="property" name="The “dns” property" link="NMSettingIPConfig.html#NMSettingIPConfig--dns"/> - <keyword type="property" name="The “dns-options” property" link="NMSettingIPConfig.html#NMSettingIPConfig--dns-options"/> - <keyword type="property" name="The “dns-priority” property" link="NMSettingIPConfig.html#NMSettingIPConfig--dns-priority"/> - <keyword type="property" name="The “dns-search” property" link="NMSettingIPConfig.html#NMSettingIPConfig--dns-search"/> - <keyword type="property" name="The “gateway” property" link="NMSettingIPConfig.html#NMSettingIPConfig--gateway"/> - <keyword type="property" name="The “ignore-auto-dns” property" link="NMSettingIPConfig.html#NMSettingIPConfig--ignore-auto-dns"/> - <keyword type="property" name="The “ignore-auto-routes” property" link="NMSettingIPConfig.html#NMSettingIPConfig--ignore-auto-routes"/> - <keyword type="property" name="The “may-fail” property" link="NMSettingIPConfig.html#NMSettingIPConfig--may-fail"/> - <keyword type="property" name="The “method” property" link="NMSettingIPConfig.html#NMSettingIPConfig--method"/> - <keyword type="property" name="The “never-default” property" link="NMSettingIPConfig.html#NMSettingIPConfig--never-default"/> - <keyword type="property" name="The “route-metric” property" link="NMSettingIPConfig.html#NMSettingIPConfig--route-metric"/> - <keyword type="property" name="The “route-table” property" link="NMSettingIPConfig.html#NMSettingIPConfig--route-table"/> - <keyword type="property" name="The “routes” property" link="NMSettingIPConfig.html#NMSettingIPConfig--routes"/> <keyword type="function" name="nm_setting_ip_tunnel_new ()" link="NMSettingIPTunnel.html#nm-setting-ip-tunnel-new" since="1.2"/> <keyword type="function" name="nm_setting_ip_tunnel_get_parent ()" link="NMSettingIPTunnel.html#nm-setting-ip-tunnel-get-parent" since="1.2"/> <keyword type="function" name="nm_setting_ip_tunnel_get_mode ()" link="NMSettingIPTunnel.html#nm-setting-ip-tunnel-get-mode" since="1.2"/> @@ -1509,21 +1342,7 @@ <keyword type="macro" name="NM_SETTING_IP_TUNNEL_FLOW_LABEL" link="NMSettingIPTunnel.html#NM-SETTING-IP-TUNNEL-FLOW-LABEL:CAPS"/> <keyword type="macro" name="NM_SETTING_IP_TUNNEL_MTU" link="NMSettingIPTunnel.html#NM-SETTING-IP-TUNNEL-MTU:CAPS"/> <keyword type="macro" name="NM_SETTING_IP_TUNNEL_FLAGS" link="NMSettingIPTunnel.html#NM-SETTING-IP-TUNNEL-FLAGS:CAPS"/> - <keyword type="struct" name="NMSettingIPTunnel" link="NMSettingIPTunnel.html#NMSettingIPTunnel-struct"/> <keyword type="enum" name="enum NMIPTunnelFlags" link="NMSettingIPTunnel.html#NMIPTunnelFlags"/> - <keyword type="property" name="The “encapsulation-limit” property" link="NMSettingIPTunnel.html#NMSettingIPTunnel--encapsulation-limit"/> - <keyword type="property" name="The “flags” property" link="NMSettingIPTunnel.html#NMSettingIPTunnel--flags"/> - <keyword type="property" name="The “flow-label” property" link="NMSettingIPTunnel.html#NMSettingIPTunnel--flow-label"/> - <keyword type="property" name="The “input-key” property" link="NMSettingIPTunnel.html#NMSettingIPTunnel--input-key"/> - <keyword type="property" name="The “local” property" link="NMSettingIPTunnel.html#NMSettingIPTunnel--local"/> - <keyword type="property" name="The “mode” property" link="NMSettingIPTunnel.html#NMSettingIPTunnel--mode"/> - <keyword type="property" name="The “mtu” property" link="NMSettingIPTunnel.html#NMSettingIPTunnel--mtu"/> - <keyword type="property" name="The “output-key” property" link="NMSettingIPTunnel.html#NMSettingIPTunnel--output-key"/> - <keyword type="property" name="The “parent” property" link="NMSettingIPTunnel.html#NMSettingIPTunnel--parent"/> - <keyword type="property" name="The “path-mtu-discovery” property" link="NMSettingIPTunnel.html#NMSettingIPTunnel--path-mtu-discovery"/> - <keyword type="property" name="The “remote” property" link="NMSettingIPTunnel.html#NMSettingIPTunnel--remote"/> - <keyword type="property" name="The “tos” property" link="NMSettingIPTunnel.html#NMSettingIPTunnel--tos"/> - <keyword type="property" name="The “ttl” property" link="NMSettingIPTunnel.html#NMSettingIPTunnel--ttl"/> <keyword type="function" name="nm_setting_macsec_new ()" link="NMSettingMacsec.html#nm-setting-macsec-new" since="1.6"/> <keyword type="function" name="nm_setting_macsec_get_parent ()" link="NMSettingMacsec.html#nm-setting-macsec-get-parent" since="1.6"/> <keyword type="function" name="nm_setting_macsec_get_mode ()" link="NMSettingMacsec.html#nm-setting-macsec-get-mode" since="1.6"/> @@ -1544,20 +1363,10 @@ <keyword type="macro" name="NM_SETTING_MACSEC_PORT" link="NMSettingMacsec.html#NM-SETTING-MACSEC-PORT:CAPS"/> <keyword type="macro" name="NM_SETTING_MACSEC_VALIDATION" link="NMSettingMacsec.html#NM-SETTING-MACSEC-VALIDATION:CAPS"/> <keyword type="macro" name="NM_SETTING_MACSEC_SEND_SCI" link="NMSettingMacsec.html#NM-SETTING-MACSEC-SEND-SCI:CAPS"/> - <keyword type="struct" name="NMSettingMacsec" link="NMSettingMacsec.html#NMSettingMacsec-struct"/> <keyword type="enum" name="enum NMSettingMacsecMode" link="NMSettingMacsec.html#NMSettingMacsecMode" since="1.6"/> <keyword type="enum" name="enum NMSettingMacsecValidation" link="NMSettingMacsec.html#NMSettingMacsecValidation" since="1.6"/> <keyword type="macro" name="NM_SETTING_MACSEC_MKA_CAK_LENGTH" link="NMSettingMacsec.html#NM-SETTING-MACSEC-MKA-CAK-LENGTH:CAPS"/> <keyword type="macro" name="NM_SETTING_MACSEC_MKA_CKN_LENGTH" link="NMSettingMacsec.html#NM-SETTING-MACSEC-MKA-CKN-LENGTH:CAPS"/> - <keyword type="property" name="The “encrypt” property" link="NMSettingMacsec.html#NMSettingMacsec--encrypt"/> - <keyword type="property" name="The “mka-cak” property" link="NMSettingMacsec.html#NMSettingMacsec--mka-cak"/> - <keyword type="property" name="The “mka-cak-flags” property" link="NMSettingMacsec.html#NMSettingMacsec--mka-cak-flags"/> - <keyword type="property" name="The “mka-ckn” property" link="NMSettingMacsec.html#NMSettingMacsec--mka-ckn"/> - <keyword type="property" name="The “mode” property" link="NMSettingMacsec.html#NMSettingMacsec--mode"/> - <keyword type="property" name="The “parent” property" link="NMSettingMacsec.html#NMSettingMacsec--parent"/> - <keyword type="property" name="The “port” property" link="NMSettingMacsec.html#NMSettingMacsec--port"/> - <keyword type="property" name="The “send-sci” property" link="NMSettingMacsec.html#NMSettingMacsec--send-sci"/> - <keyword type="property" name="The “validation” property" link="NMSettingMacsec.html#NMSettingMacsec--validation"/> <keyword type="function" name="nm_setting_macvlan_new ()" link="NMSettingMacvlan.html#nm-setting-macvlan-new" since="1.2"/> <keyword type="function" name="nm_setting_macvlan_get_parent ()" link="NMSettingMacvlan.html#nm-setting-macvlan-get-parent" since="1.2"/> <keyword type="function" name="nm_setting_macvlan_get_mode ()" link="NMSettingMacvlan.html#nm-setting-macvlan-get-mode" since="1.2"/> @@ -1568,13 +1377,8 @@ <keyword type="macro" name="NM_SETTING_MACVLAN_MODE" link="NMSettingMacvlan.html#NM-SETTING-MACVLAN-MODE:CAPS"/> <keyword type="macro" name="NM_SETTING_MACVLAN_PROMISCUOUS" link="NMSettingMacvlan.html#NM-SETTING-MACVLAN-PROMISCUOUS:CAPS"/> <keyword type="macro" name="NM_SETTING_MACVLAN_TAP" link="NMSettingMacvlan.html#NM-SETTING-MACVLAN-TAP:CAPS"/> - <keyword type="struct" name="NMSettingMacvlan" link="NMSettingMacvlan.html#NMSettingMacvlan-struct"/> <keyword type="enum" name="enum NMSettingMacvlanMode" link="NMSettingMacvlan.html#NMSettingMacvlanMode"/> - <keyword type="property" name="The “mode” property" link="NMSettingMacvlan.html#NMSettingMacvlan--mode"/> - <keyword type="property" name="The “parent” property" link="NMSettingMacvlan.html#NMSettingMacvlan--parent"/> - <keyword type="property" name="The “promiscuous” property" link="NMSettingMacvlan.html#NMSettingMacvlan--promiscuous"/> - <keyword type="property" name="The “tap” property" link="NMSettingMacvlan.html#NMSettingMacvlan--tap"/> - <keyword type="function" name="nm_setting_match_new ()" link="NMSettingMatch.html#nm-setting-match-new" since="1.14"/> + <keyword type="function" name="nm_setting_match_new ()" link="NMSettingMatch.html#nm-setting-match-new" since="1.32"/> <keyword type="function" name="nm_setting_match_get_num_interface_names ()" link="NMSettingMatch.html#nm-setting-match-get-num-interface-names" since="1.14"/> <keyword type="function" name="nm_setting_match_get_interface_name ()" link="NMSettingMatch.html#nm-setting-match-get-interface-name" since="1.14"/> <keyword type="function" name="nm_setting_match_remove_interface_name ()" link="NMSettingMatch.html#nm-setting-match-remove-interface-name" since="1.14"/> @@ -1616,10 +1420,6 @@ <keyword type="macro" name="NM_SETTING_OLPC_MESH_SSID" link="NMSettingOlpcMesh.html#NM-SETTING-OLPC-MESH-SSID:CAPS"/> <keyword type="macro" name="NM_SETTING_OLPC_MESH_CHANNEL" link="NMSettingOlpcMesh.html#NM-SETTING-OLPC-MESH-CHANNEL:CAPS"/> <keyword type="macro" name="NM_SETTING_OLPC_MESH_DHCP_ANYCAST_ADDRESS" link="NMSettingOlpcMesh.html#NM-SETTING-OLPC-MESH-DHCP-ANYCAST-ADDRESS:CAPS"/> - <keyword type="struct" name="NMSettingOlpcMesh" link="NMSettingOlpcMesh.html#NMSettingOlpcMesh-struct"/> - <keyword type="property" name="The “channel” property" link="NMSettingOlpcMesh.html#NMSettingOlpcMesh--channel"/> - <keyword type="property" name="The “dhcp-anycast-address” property" link="NMSettingOlpcMesh.html#NMSettingOlpcMesh--dhcp-anycast-address"/> - <keyword type="property" name="The “ssid” property" link="NMSettingOlpcMesh.html#NMSettingOlpcMesh--ssid"/> <keyword type="function" name="nm_setting_ovs_bridge_new ()" link="NMSettingOvsBridge.html#nm-setting-ovs-bridge-new" since="1.10"/> <keyword type="function" name="nm_setting_ovs_bridge_get_fail_mode ()" link="NMSettingOvsBridge.html#nm-setting-ovs-bridge-get-fail-mode" since="1.10"/> <keyword type="function" name="nm_setting_ovs_bridge_get_mcast_snooping_enable ()" link="NMSettingOvsBridge.html#nm-setting-ovs-bridge-get-mcast-snooping-enable" since="1.10"/> @@ -1704,25 +1504,6 @@ <keyword type="macro" name="NM_SETTING_PPP_MTU" link="NMSettingPpp.html#NM-SETTING-PPP-MTU:CAPS"/> <keyword type="macro" name="NM_SETTING_PPP_LCP_ECHO_FAILURE" link="NMSettingPpp.html#NM-SETTING-PPP-LCP-ECHO-FAILURE:CAPS"/> <keyword type="macro" name="NM_SETTING_PPP_LCP_ECHO_INTERVAL" link="NMSettingPpp.html#NM-SETTING-PPP-LCP-ECHO-INTERVAL:CAPS"/> - <keyword type="struct" name="NMSettingPpp" link="NMSettingPpp.html#NMSettingPpp-struct"/> - <keyword type="property" name="The “baud” property" link="NMSettingPpp.html#NMSettingPpp--baud"/> - <keyword type="property" name="The “crtscts” property" link="NMSettingPpp.html#NMSettingPpp--crtscts"/> - <keyword type="property" name="The “lcp-echo-failure” property" link="NMSettingPpp.html#NMSettingPpp--lcp-echo-failure"/> - <keyword type="property" name="The “lcp-echo-interval” property" link="NMSettingPpp.html#NMSettingPpp--lcp-echo-interval"/> - <keyword type="property" name="The “mppe-stateful” property" link="NMSettingPpp.html#NMSettingPpp--mppe-stateful"/> - <keyword type="property" name="The “mru” property" link="NMSettingPpp.html#NMSettingPpp--mru"/> - <keyword type="property" name="The “mtu” property" link="NMSettingPpp.html#NMSettingPpp--mtu"/> - <keyword type="property" name="The “no-vj-comp” property" link="NMSettingPpp.html#NMSettingPpp--no-vj-comp"/> - <keyword type="property" name="The “noauth” property" link="NMSettingPpp.html#NMSettingPpp--noauth"/> - <keyword type="property" name="The “nobsdcomp” property" link="NMSettingPpp.html#NMSettingPpp--nobsdcomp"/> - <keyword type="property" name="The “nodeflate” property" link="NMSettingPpp.html#NMSettingPpp--nodeflate"/> - <keyword type="property" name="The “refuse-chap” property" link="NMSettingPpp.html#NMSettingPpp--refuse-chap"/> - <keyword type="property" name="The “refuse-eap” property" link="NMSettingPpp.html#NMSettingPpp--refuse-eap"/> - <keyword type="property" name="The “refuse-mschap” property" link="NMSettingPpp.html#NMSettingPpp--refuse-mschap"/> - <keyword type="property" name="The “refuse-mschapv2” property" link="NMSettingPpp.html#NMSettingPpp--refuse-mschapv2"/> - <keyword type="property" name="The “refuse-pap” property" link="NMSettingPpp.html#NMSettingPpp--refuse-pap"/> - <keyword type="property" name="The “require-mppe” property" link="NMSettingPpp.html#NMSettingPpp--require-mppe"/> - <keyword type="property" name="The “require-mppe-128” property" link="NMSettingPpp.html#NMSettingPpp--require-mppe-128"/> <keyword type="function" name="nm_setting_pppoe_new ()" link="NMSettingPppoe.html#nm-setting-pppoe-new"/> <keyword type="function" name="nm_setting_pppoe_get_parent ()" link="NMSettingPppoe.html#nm-setting-pppoe-get-parent" since="1.10"/> <keyword type="function" name="nm_setting_pppoe_get_service ()" link="NMSettingPppoe.html#nm-setting-pppoe-get-service"/> @@ -1735,12 +1516,6 @@ <keyword type="macro" name="NM_SETTING_PPPOE_USERNAME" link="NMSettingPppoe.html#NM-SETTING-PPPOE-USERNAME:CAPS"/> <keyword type="macro" name="NM_SETTING_PPPOE_PASSWORD" link="NMSettingPppoe.html#NM-SETTING-PPPOE-PASSWORD:CAPS"/> <keyword type="macro" name="NM_SETTING_PPPOE_PASSWORD_FLAGS" link="NMSettingPppoe.html#NM-SETTING-PPPOE-PASSWORD-FLAGS:CAPS"/> - <keyword type="struct" name="NMSettingPppoe" link="NMSettingPppoe.html#NMSettingPppoe-struct"/> - <keyword type="property" name="The “parent” property" link="NMSettingPppoe.html#NMSettingPppoe--parent"/> - <keyword type="property" name="The “password” property" link="NMSettingPppoe.html#NMSettingPppoe--password"/> - <keyword type="property" name="The “password-flags” property" link="NMSettingPppoe.html#NMSettingPppoe--password-flags"/> - <keyword type="property" name="The “service” property" link="NMSettingPppoe.html#NMSettingPppoe--service"/> - <keyword type="property" name="The “username” property" link="NMSettingPppoe.html#NMSettingPppoe--username"/> <keyword type="function" name="nm_setting_proxy_new ()" link="NMSettingProxy.html#nm-setting-proxy-new" since="1.6"/> <keyword type="function" name="nm_setting_proxy_get_method ()" link="NMSettingProxy.html#nm-setting-proxy-get-method" since="1.6"/> <keyword type="function" name="nm_setting_proxy_get_browser_only ()" link="NMSettingProxy.html#nm-setting-proxy-get-browser-only" since="1.6"/> @@ -1752,11 +1527,6 @@ <keyword type="macro" name="NM_SETTING_PROXY_BROWSER_ONLY" link="NMSettingProxy.html#NM-SETTING-PROXY-BROWSER-ONLY:CAPS"/> <keyword type="macro" name="NM_SETTING_PROXY_PAC_URL" link="NMSettingProxy.html#NM-SETTING-PROXY-PAC-URL:CAPS"/> <keyword type="macro" name="NM_SETTING_PROXY_PAC_SCRIPT" link="NMSettingProxy.html#NM-SETTING-PROXY-PAC-SCRIPT:CAPS"/> - <keyword type="struct" name="NMSettingProxy" link="NMSettingProxy.html#NMSettingProxy-struct"/> - <keyword type="property" name="The “browser-only” property" link="NMSettingProxy.html#NMSettingProxy--browser-only"/> - <keyword type="property" name="The “method” property" link="NMSettingProxy.html#NMSettingProxy--method"/> - <keyword type="property" name="The “pac-script” property" link="NMSettingProxy.html#NMSettingProxy--pac-script"/> - <keyword type="property" name="The “pac-url” property" link="NMSettingProxy.html#NMSettingProxy--pac-url"/> <keyword type="function" name="nm_setting_serial_new ()" link="NMSettingSerial.html#nm-setting-serial-new"/> <keyword type="function" name="nm_setting_serial_get_baud ()" link="NMSettingSerial.html#nm-setting-serial-get-baud"/> <keyword type="function" name="nm_setting_serial_get_bits ()" link="NMSettingSerial.html#nm-setting-serial-get-bits"/> @@ -1770,12 +1540,6 @@ <keyword type="macro" name="NM_SETTING_SERIAL_PARITY" link="NMSettingSerial.html#NM-SETTING-SERIAL-PARITY:CAPS"/> <keyword type="macro" name="NM_SETTING_SERIAL_STOPBITS" link="NMSettingSerial.html#NM-SETTING-SERIAL-STOPBITS:CAPS"/> <keyword type="macro" name="NM_SETTING_SERIAL_SEND_DELAY" link="NMSettingSerial.html#NM-SETTING-SERIAL-SEND-DELAY:CAPS"/> - <keyword type="struct" name="NMSettingSerial" link="NMSettingSerial.html#NMSettingSerial-struct"/> - <keyword type="property" name="The “baud” property" link="NMSettingSerial.html#NMSettingSerial--baud"/> - <keyword type="property" name="The “bits” property" link="NMSettingSerial.html#NMSettingSerial--bits"/> - <keyword type="property" name="The “parity” property" link="NMSettingSerial.html#NMSettingSerial--parity"/> - <keyword type="property" name="The “send-delay” property" link="NMSettingSerial.html#NMSettingSerial--send-delay"/> - <keyword type="property" name="The “stopbits” property" link="NMSettingSerial.html#NMSettingSerial--stopbits"/> <keyword type="function" name="nm_setting_sriov_new ()" link="NMSettingSriov.html#nm-setting-sriov-new" since="1.14"/> <keyword type="function" name="nm_setting_sriov_get_total_vfs ()" link="NMSettingSriov.html#nm-setting-sriov-get-total-vfs" since="1.14"/> <keyword type="function" name="nm_setting_sriov_get_num_vfs ()" link="NMSettingSriov.html#nm-setting-sriov-get-num-vfs" since="1.14"/> @@ -1883,14 +1647,6 @@ <keyword type="macro" name="NM_SETTING_TEAM_PORT_LINK_WATCHERS" link="NMSettingTeamPort.html#NM-SETTING-TEAM-PORT-LINK-WATCHERS:CAPS"/> <keyword type="macro" name="NM_SETTING_TEAM_PORT_QUEUE_ID_DEFAULT" link="NMSettingTeamPort.html#NM-SETTING-TEAM-PORT-QUEUE-ID-DEFAULT:CAPS"/> <keyword type="macro" name="NM_SETTING_TEAM_PORT_LACP_PRIO_DEFAULT" link="NMSettingTeamPort.html#NM-SETTING-TEAM-PORT-LACP-PRIO-DEFAULT:CAPS"/> - <keyword type="struct" name="NMSettingTeamPort" link="NMSettingTeamPort.html#NMSettingTeamPort-struct"/> - <keyword type="property" name="The “config” property" link="NMSettingTeamPort.html#NMSettingTeamPort--config"/> - <keyword type="property" name="The “lacp-key” property" link="NMSettingTeamPort.html#NMSettingTeamPort--lacp-key"/> - <keyword type="property" name="The “lacp-prio” property" link="NMSettingTeamPort.html#NMSettingTeamPort--lacp-prio"/> - <keyword type="property" name="The “link-watchers” property" link="NMSettingTeamPort.html#NMSettingTeamPort--link-watchers"/> - <keyword type="property" name="The “prio” property" link="NMSettingTeamPort.html#NMSettingTeamPort--prio"/> - <keyword type="property" name="The “queue-id” property" link="NMSettingTeamPort.html#NMSettingTeamPort--queue-id"/> - <keyword type="property" name="The “sticky” property" link="NMSettingTeamPort.html#NMSettingTeamPort--sticky"/> <keyword type="function" name="nm_team_link_watcher_new_ethtool ()" link="NMSettingTeam.html#nm-team-link-watcher-new-ethtool" since="1.12"/> <keyword type="function" name="nm_team_link_watcher_new_nsna_ping ()" link="NMSettingTeam.html#nm-team-link-watcher-new-nsna-ping" since="1.12"/> <keyword type="function" name="nm_team_link_watcher_new_arp_ping ()" link="NMSettingTeam.html#nm-team-link-watcher-new-arp-ping" since="1.12"/> @@ -1977,23 +1733,6 @@ <keyword type="macro" name="NM_SETTING_TEAM_RUNNER_TX_BALANCER_INTERVAL_DEFAULT" link="NMSettingTeam.html#NM-SETTING-TEAM-RUNNER-TX-BALANCER-INTERVAL-DEFAULT:CAPS"/> <keyword type="macro" name="NM_SETTING_TEAM_RUNNER_SYS_PRIO_DEFAULT" link="NMSettingTeam.html#NM-SETTING-TEAM-RUNNER-SYS-PRIO-DEFAULT:CAPS"/> <keyword type="macro" name="NM_SETTING_TEAM_RUNNER_AGG_SELECT_POLICY_DEFAULT" link="NMSettingTeam.html#NM-SETTING-TEAM-RUNNER-AGG-SELECT-POLICY-DEFAULT:CAPS"/> - <keyword type="struct" name="NMSettingTeam" link="NMSettingTeam.html#NMSettingTeam-struct"/> - <keyword type="property" name="The “config” property" link="NMSettingTeam.html#NMSettingTeam--config"/> - <keyword type="property" name="The “link-watchers” property" link="NMSettingTeam.html#NMSettingTeam--link-watchers"/> - <keyword type="property" name="The “mcast-rejoin-count” property" link="NMSettingTeam.html#NMSettingTeam--mcast-rejoin-count"/> - <keyword type="property" name="The “mcast-rejoin-interval” property" link="NMSettingTeam.html#NMSettingTeam--mcast-rejoin-interval"/> - <keyword type="property" name="The “notify-peers-count” property" link="NMSettingTeam.html#NMSettingTeam--notify-peers-count"/> - <keyword type="property" name="The “notify-peers-interval” property" link="NMSettingTeam.html#NMSettingTeam--notify-peers-interval"/> - <keyword type="property" name="The “runner” property" link="NMSettingTeam.html#NMSettingTeam--runner"/> - <keyword type="property" name="The “runner-active” property" link="NMSettingTeam.html#NMSettingTeam--runner-active"/> - <keyword type="property" name="The “runner-agg-select-policy” property" link="NMSettingTeam.html#NMSettingTeam--runner-agg-select-policy"/> - <keyword type="property" name="The “runner-fast-rate” property" link="NMSettingTeam.html#NMSettingTeam--runner-fast-rate"/> - <keyword type="property" name="The “runner-hwaddr-policy” property" link="NMSettingTeam.html#NMSettingTeam--runner-hwaddr-policy"/> - <keyword type="property" name="The “runner-min-ports” property" link="NMSettingTeam.html#NMSettingTeam--runner-min-ports"/> - <keyword type="property" name="The “runner-sys-prio” property" link="NMSettingTeam.html#NMSettingTeam--runner-sys-prio"/> - <keyword type="property" name="The “runner-tx-balancer” property" link="NMSettingTeam.html#NMSettingTeam--runner-tx-balancer"/> - <keyword type="property" name="The “runner-tx-balancer-interval” property" link="NMSettingTeam.html#NMSettingTeam--runner-tx-balancer-interval"/> - <keyword type="property" name="The “runner-tx-hash” property" link="NMSettingTeam.html#NMSettingTeam--runner-tx-hash"/> <keyword type="function" name="nm_setting_tun_new ()" link="NMSettingTun.html#nm-setting-tun-new" since="1.2"/> <keyword type="function" name="nm_setting_tun_get_mode ()" link="NMSettingTun.html#nm-setting-tun-get-mode" since="1.2"/> <keyword type="function" name="nm_setting_tun_get_owner ()" link="NMSettingTun.html#nm-setting-tun-get-owner" since="1.2"/> @@ -2009,13 +1748,6 @@ <keyword type="macro" name="NM_SETTING_TUN_VNET_HDR" link="NMSettingTun.html#NM-SETTING-TUN-VNET-HDR:CAPS"/> <keyword type="macro" name="NM_SETTING_TUN_MULTI_QUEUE" link="NMSettingTun.html#NM-SETTING-TUN-MULTI-QUEUE:CAPS"/> <keyword type="enum" name="enum NMSettingTunMode" link="NMSettingTun.html#NMSettingTunMode"/> - <keyword type="struct" name="NMSettingTun" link="NMSettingTun.html#NMSettingTun-struct"/> - <keyword type="property" name="The “group” property" link="NMSettingTun.html#NMSettingTun--group"/> - <keyword type="property" name="The “mode” property" link="NMSettingTun.html#NMSettingTun--mode"/> - <keyword type="property" name="The “multi-queue” property" link="NMSettingTun.html#NMSettingTun--multi-queue"/> - <keyword type="property" name="The “owner” property" link="NMSettingTun.html#NMSettingTun--owner"/> - <keyword type="property" name="The “pi” property" link="NMSettingTun.html#NMSettingTun--pi"/> - <keyword type="property" name="The “vnet-hdr” property" link="NMSettingTun.html#NMSettingTun--vnet-hdr"/> <keyword type="function" name="nm_setting_user_new ()" link="NMSettingUser.html#nm-setting-user-new"/> <keyword type="function" name="nm_setting_user_get_keys ()" link="NMSettingUser.html#nm-setting-user-get-keys"/> <keyword type="function" name="nm_setting_user_get_data ()" link="NMSettingUser.html#nm-setting-user-get-data" since="1.8"/> @@ -2046,15 +1778,9 @@ <keyword type="macro" name="NM_SETTING_VLAN_FLAGS" link="NMSettingVlan.html#NM-SETTING-VLAN-FLAGS:CAPS"/> <keyword type="macro" name="NM_SETTING_VLAN_INGRESS_PRIORITY_MAP" link="NMSettingVlan.html#NM-SETTING-VLAN-INGRESS-PRIORITY-MAP:CAPS"/> <keyword type="macro" name="NM_SETTING_VLAN_EGRESS_PRIORITY_MAP" link="NMSettingVlan.html#NM-SETTING-VLAN-EGRESS-PRIORITY-MAP:CAPS"/> - <keyword type="struct" name="NMSettingVlan" link="NMSettingVlan.html#NMSettingVlan-struct"/> <keyword type="enum" name="enum NMVlanPriorityMap" link="NMSettingVlan.html#NMVlanPriorityMap"/> <keyword type="enum" name="enum NMVlanFlags" link="NMSettingVlan.html#NMVlanFlags"/> <keyword type="macro" name="NM_VLAN_FLAGS_ALL" link="NMSettingVlan.html#NM-VLAN-FLAGS-ALL:CAPS"/> - <keyword type="property" name="The “egress-priority-map” property" link="NMSettingVlan.html#NMSettingVlan--egress-priority-map"/> - <keyword type="property" name="The “flags” property" link="NMSettingVlan.html#NMSettingVlan--flags"/> - <keyword type="property" name="The “id” property" link="NMSettingVlan.html#NMSettingVlan--id"/> - <keyword type="property" name="The “ingress-priority-map” property" link="NMSettingVlan.html#NMSettingVlan--ingress-priority-map"/> - <keyword type="property" name="The “parent” property" link="NMSettingVlan.html#NMSettingVlan--parent"/> <keyword type="function" name="NMVpnIterFunc ()" link="NMSettingVpn.html#NMVpnIterFunc"/> <keyword type="function" name="nm_setting_vpn_new ()" link="NMSettingVpn.html#nm-setting-vpn-new"/> <keyword type="function" name="nm_setting_vpn_get_service_type ()" link="NMSettingVpn.html#nm-setting-vpn-get-service-type"/> @@ -2080,13 +1806,6 @@ <keyword type="macro" name="NM_SETTING_VPN_DATA" link="NMSettingVpn.html#NM-SETTING-VPN-DATA:CAPS"/> <keyword type="macro" name="NM_SETTING_VPN_SECRETS" link="NMSettingVpn.html#NM-SETTING-VPN-SECRETS:CAPS"/> <keyword type="macro" name="NM_SETTING_VPN_TIMEOUT" link="NMSettingVpn.html#NM-SETTING-VPN-TIMEOUT:CAPS"/> - <keyword type="struct" name="NMSettingVpn" link="NMSettingVpn.html#NMSettingVpn-struct"/> - <keyword type="property" name="The “data” property" link="NMSettingVpn.html#NMSettingVpn--data"/> - <keyword type="property" name="The “persistent” property" link="NMSettingVpn.html#NMSettingVpn--persistent"/> - <keyword type="property" name="The “secrets” property" link="NMSettingVpn.html#NMSettingVpn--secrets"/> - <keyword type="property" name="The “service-type” property" link="NMSettingVpn.html#NMSettingVpn--service-type"/> - <keyword type="property" name="The “timeout” property" link="NMSettingVpn.html#NMSettingVpn--timeout"/> - <keyword type="property" name="The “user-name” property" link="NMSettingVpn.html#NMSettingVpn--user-name"/> <keyword type="function" name="nm_setting_vrf_new ()" link="NMSettingVrf.html#nm-setting-vrf-new" since="1.24"/> <keyword type="function" name="nm_setting_vrf_get_table ()" link="NMSettingVrf.html#nm-setting-vrf-get-table" since="1.24"/> <keyword type="macro" name="NM_SETTING_VRF_SETTING_NAME" link="NMSettingVrf.html#NM-SETTING-VRF-SETTING-NAME:CAPS"/> @@ -2125,23 +1844,6 @@ <keyword type="macro" name="NM_SETTING_VXLAN_RSC" link="NMSettingVxlan.html#NM-SETTING-VXLAN-RSC:CAPS"/> <keyword type="macro" name="NM_SETTING_VXLAN_L2_MISS" link="NMSettingVxlan.html#NM-SETTING-VXLAN-L2-MISS:CAPS"/> <keyword type="macro" name="NM_SETTING_VXLAN_L3_MISS" link="NMSettingVxlan.html#NM-SETTING-VXLAN-L3-MISS:CAPS"/> - <keyword type="struct" name="NMSettingVxlan" link="NMSettingVxlan.html#NMSettingVxlan-struct"/> - <keyword type="property" name="The “ageing” property" link="NMSettingVxlan.html#NMSettingVxlan--ageing"/> - <keyword type="property" name="The “destination-port” property" link="NMSettingVxlan.html#NMSettingVxlan--destination-port"/> - <keyword type="property" name="The “id” property" link="NMSettingVxlan.html#NMSettingVxlan--id"/> - <keyword type="property" name="The “l2-miss” property" link="NMSettingVxlan.html#NMSettingVxlan--l2-miss"/> - <keyword type="property" name="The “l3-miss” property" link="NMSettingVxlan.html#NMSettingVxlan--l3-miss"/> - <keyword type="property" name="The “learning” property" link="NMSettingVxlan.html#NMSettingVxlan--learning"/> - <keyword type="property" name="The “limit” property" link="NMSettingVxlan.html#NMSettingVxlan--limit"/> - <keyword type="property" name="The “local” property" link="NMSettingVxlan.html#NMSettingVxlan--local"/> - <keyword type="property" name="The “parent” property" link="NMSettingVxlan.html#NMSettingVxlan--parent"/> - <keyword type="property" name="The “proxy” property" link="NMSettingVxlan.html#NMSettingVxlan--proxy"/> - <keyword type="property" name="The “remote” property" link="NMSettingVxlan.html#NMSettingVxlan--remote"/> - <keyword type="property" name="The “rsc” property" link="NMSettingVxlan.html#NMSettingVxlan--rsc"/> - <keyword type="property" name="The “source-port-max” property" link="NMSettingVxlan.html#NMSettingVxlan--source-port-max"/> - <keyword type="property" name="The “source-port-min” property" link="NMSettingVxlan.html#NMSettingVxlan--source-port-min"/> - <keyword type="property" name="The “tos” property" link="NMSettingVxlan.html#NMSettingVxlan--tos"/> - <keyword type="property" name="The “ttl” property" link="NMSettingVxlan.html#NMSettingVxlan--ttl"/> <keyword type="function" name="nm_setting_wifi_p2p_new ()" link="NMSettingWifiP2P.html#nm-setting-wifi-p2p-new" since="1.16"/> <keyword type="function" name="nm_setting_wifi_p2p_get_peer ()" link="NMSettingWifiP2P.html#nm-setting-wifi-p2p-get-peer" since="1.16"/> <keyword type="function" name="nm_setting_wifi_p2p_get_wps_method ()" link="NMSettingWifiP2P.html#nm-setting-wifi-p2p-get-wps-method" since="1.16"/> @@ -2156,9 +1858,6 @@ <keyword type="macro" name="NM_SETTING_WIMAX_SETTING_NAME" link="NMSettingWimax.html#NM-SETTING-WIMAX-SETTING-NAME:CAPS"/> <keyword type="macro" name="NM_SETTING_WIMAX_NETWORK_NAME" link="NMSettingWimax.html#NM-SETTING-WIMAX-NETWORK-NAME:CAPS"/> <keyword type="macro" name="NM_SETTING_WIMAX_MAC_ADDRESS" link="NMSettingWimax.html#NM-SETTING-WIMAX-MAC-ADDRESS:CAPS"/> - <keyword type="struct" name="NMSettingWimax" link="NMSettingWimax.html#NMSettingWimax-struct"/> - <keyword type="property" name="The “mac-address” property" link="NMSettingWimax.html#NMSettingWimax--mac-address"/> - <keyword type="property" name="The “network-name” property" link="NMSettingWimax.html#NMSettingWimax--network-name"/> <keyword type="function" name="nm_setting_wired_new ()" link="NMSettingWired.html#nm-setting-wired-new"/> <keyword type="function" name="nm_setting_wired_get_port ()" link="NMSettingWired.html#nm-setting-wired-get-port"/> <keyword type="function" name="nm_setting_wired_get_speed ()" link="NMSettingWired.html#nm-setting-wired-get-speed"/> @@ -2166,6 +1865,7 @@ <keyword type="function" name="nm_setting_wired_get_auto_negotiate ()" link="NMSettingWired.html#nm-setting-wired-get-auto-negotiate"/> <keyword type="function" name="nm_setting_wired_get_mac_address ()" link="NMSettingWired.html#nm-setting-wired-get-mac-address"/> <keyword type="function" name="nm_setting_wired_get_cloned_mac_address ()" link="NMSettingWired.html#nm-setting-wired-get-cloned-mac-address"/> + <keyword type="function" name="nm_setting_wired_get_accept_all_mac_addresses ()" link="NMSettingWired.html#nm-setting-wired-get-accept-all-mac-addresses" since="1.32"/> <keyword type="function" name="nm_setting_wired_get_generate_mac_address_mask ()" link="NMSettingWired.html#nm-setting-wired-get-generate-mac-address-mask" since="1.4"/> <keyword type="function" name="nm_setting_wired_get_mac_address_blacklist ()" link="NMSettingWired.html#nm-setting-wired-get-mac-address-blacklist"/> <keyword type="function" name="nm_setting_wired_get_num_mac_blacklist_items ()" link="NMSettingWired.html#nm-setting-wired-get-num-mac-blacklist-items"/> @@ -2201,21 +1901,7 @@ <keyword type="macro" name="NM_SETTING_WIRED_S390_OPTIONS" link="NMSettingWired.html#NM-SETTING-WIRED-S390-OPTIONS:CAPS"/> <keyword type="macro" name="NM_SETTING_WIRED_WAKE_ON_LAN" link="NMSettingWired.html#NM-SETTING-WIRED-WAKE-ON-LAN:CAPS"/> <keyword type="macro" name="NM_SETTING_WIRED_WAKE_ON_LAN_PASSWORD" link="NMSettingWired.html#NM-SETTING-WIRED-WAKE-ON-LAN-PASSWORD:CAPS"/> - <keyword type="struct" name="NMSettingWired" link="NMSettingWired.html#NMSettingWired-struct"/> - <keyword type="property" name="The “auto-negotiate” property" link="NMSettingWired.html#NMSettingWired--auto-negotiate"/> - <keyword type="property" name="The “cloned-mac-address” property" link="NMSettingWired.html#NMSettingWired--cloned-mac-address"/> - <keyword type="property" name="The “duplex” property" link="NMSettingWired.html#NMSettingWired--duplex"/> - <keyword type="property" name="The “generate-mac-address-mask” property" link="NMSettingWired.html#NMSettingWired--generate-mac-address-mask"/> - <keyword type="property" name="The “mac-address” property" link="NMSettingWired.html#NMSettingWired--mac-address"/> - <keyword type="property" name="The “mac-address-blacklist” property" link="NMSettingWired.html#NMSettingWired--mac-address-blacklist"/> - <keyword type="property" name="The “mtu” property" link="NMSettingWired.html#NMSettingWired--mtu"/> - <keyword type="property" name="The “port” property" link="NMSettingWired.html#NMSettingWired--port"/> - <keyword type="property" name="The “s390-nettype” property" link="NMSettingWired.html#NMSettingWired--s390-nettype"/> - <keyword type="property" name="The “s390-options” property" link="NMSettingWired.html#NMSettingWired--s390-options"/> - <keyword type="property" name="The “s390-subchannels” property" link="NMSettingWired.html#NMSettingWired--s390-subchannels"/> - <keyword type="property" name="The “speed” property" link="NMSettingWired.html#NMSettingWired--speed"/> - <keyword type="property" name="The “wake-on-lan” property" link="NMSettingWired.html#NMSettingWired--wake-on-lan"/> - <keyword type="property" name="The “wake-on-lan-password” property" link="NMSettingWired.html#NMSettingWired--wake-on-lan-password"/> + <keyword type="macro" name="NM_SETTING_WIRED_ACCEPT_ALL_MAC_ADDRESSES" link="NMSettingWired.html#NM-SETTING-WIRED-ACCEPT-ALL-MAC-ADDRESSES:CAPS"/> <keyword type="function" name="nm_wireguard_peer_new ()" link="NMSettingWireGuard.html#nm-wireguard-peer-new" since="1.16"/> <keyword type="function" name="nm_wireguard_peer_new_clone ()" link="NMSettingWireGuard.html#nm-wireguard-peer-new-clone" since="1.16"/> <keyword type="function" name="nm_wireguard_peer_ref ()" link="NMSettingWireGuard.html#nm-wireguard-peer-ref" since="1.16"/> @@ -2332,27 +2018,6 @@ <keyword type="macro" name="NM_SETTING_WIRELESS_SECURITY_LEAP_PASSWORD_FLAGS" link="NMSettingWirelessSecurity.html#NM-SETTING-WIRELESS-SECURITY-LEAP-PASSWORD-FLAGS:CAPS"/> <keyword type="macro" name="NM_SETTING_WIRELESS_SECURITY_WPS_METHOD" link="NMSettingWirelessSecurity.html#NM-SETTING-WIRELESS-SECURITY-WPS-METHOD:CAPS"/> <keyword type="macro" name="NM_SETTING_WIRELESS_SECURITY_FILS" link="NMSettingWirelessSecurity.html#NM-SETTING-WIRELESS-SECURITY-FILS:CAPS"/> - <keyword type="struct" name="NMSettingWirelessSecurity" link="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity-struct"/> - <keyword type="property" name="The “auth-alg” property" link="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--auth-alg"/> - <keyword type="property" name="The “fils” property" link="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--fils"/> - <keyword type="property" name="The “group” property" link="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--group"/> - <keyword type="property" name="The “key-mgmt” property" link="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--key-mgmt"/> - <keyword type="property" name="The “leap-password” property" link="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--leap-password"/> - <keyword type="property" name="The “leap-password-flags” property" link="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--leap-password-flags"/> - <keyword type="property" name="The “leap-username” property" link="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--leap-username"/> - <keyword type="property" name="The “pairwise” property" link="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--pairwise"/> - <keyword type="property" name="The “pmf” property" link="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--pmf"/> - <keyword type="property" name="The “proto” property" link="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--proto"/> - <keyword type="property" name="The “psk” property" link="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--psk"/> - <keyword type="property" name="The “psk-flags” property" link="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--psk-flags"/> - <keyword type="property" name="The “wep-key-flags” property" link="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-key-flags"/> - <keyword type="property" name="The “wep-key-type” property" link="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-key-type"/> - <keyword type="property" name="The “wep-key0” property" link="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-key0"/> - <keyword type="property" name="The “wep-key1” property" link="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-key1"/> - <keyword type="property" name="The “wep-key2” property" link="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-key2"/> - <keyword type="property" name="The “wep-key3” property" link="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-key3"/> - <keyword type="property" name="The “wep-tx-keyidx” property" link="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wep-tx-keyidx"/> - <keyword type="property" name="The “wps-method” property" link="NMSettingWirelessSecurity.html#NMSettingWirelessSecurity--wps-method"/> <keyword type="function" name="nm_setting_wireless_new ()" link="NMSettingWireless.html#nm-setting-wireless-new"/> <keyword type="function" name="nm_setting_wireless_get_ssid ()" link="NMSettingWireless.html#nm-setting-wireless-get-ssid"/> <keyword type="function" name="nm_setting_wireless_get_mode ()" link="NMSettingWireless.html#nm-setting-wireless-get-mode"/> @@ -2406,25 +2071,6 @@ <keyword type="macro" name="NM_SETTING_WIRELESS_MODE_INFRA" link="NMSettingWireless.html#NM-SETTING-WIRELESS-MODE-INFRA:CAPS"/> <keyword type="macro" name="NM_SETTING_WIRELESS_MODE_MESH" link="NMSettingWireless.html#NM-SETTING-WIRELESS-MODE-MESH:CAPS" since="1.20"/> <keyword type="enum" name="enum NMSettingWirelessPowersave" link="NMSettingWireless.html#NMSettingWirelessPowersave"/> - <keyword type="struct" name="NMSettingWireless" link="NMSettingWireless.html#NMSettingWireless-struct"/> - <keyword type="property" name="The “ap-isolation” property" link="NMSettingWireless.html#NMSettingWireless--ap-isolation"/> - <keyword type="property" name="The “band” property" link="NMSettingWireless.html#NMSettingWireless--band"/> - <keyword type="property" name="The “bssid” property" link="NMSettingWireless.html#NMSettingWireless--bssid"/> - <keyword type="property" name="The “channel” property" link="NMSettingWireless.html#NMSettingWireless--channel"/> - <keyword type="property" name="The “cloned-mac-address” property" link="NMSettingWireless.html#NMSettingWireless--cloned-mac-address"/> - <keyword type="property" name="The “generate-mac-address-mask” property" link="NMSettingWireless.html#NMSettingWireless--generate-mac-address-mask"/> - <keyword type="property" name="The “hidden” property" link="NMSettingWireless.html#NMSettingWireless--hidden"/> - <keyword type="property" name="The “mac-address” property" link="NMSettingWireless.html#NMSettingWireless--mac-address"/> - <keyword type="property" name="The “mac-address-blacklist” property" link="NMSettingWireless.html#NMSettingWireless--mac-address-blacklist"/> - <keyword type="property" name="The “mac-address-randomization” property" link="NMSettingWireless.html#NMSettingWireless--mac-address-randomization"/> - <keyword type="property" name="The “mode” property" link="NMSettingWireless.html#NMSettingWireless--mode"/> - <keyword type="property" name="The “mtu” property" link="NMSettingWireless.html#NMSettingWireless--mtu"/> - <keyword type="property" name="The “powersave” property" link="NMSettingWireless.html#NMSettingWireless--powersave"/> - <keyword type="property" name="The “rate” property" link="NMSettingWireless.html#NMSettingWireless--rate"/> - <keyword type="property" name="The “seen-bssids” property" link="NMSettingWireless.html#NMSettingWireless--seen-bssids"/> - <keyword type="property" name="The “ssid” property" link="NMSettingWireless.html#NMSettingWireless--ssid"/> - <keyword type="property" name="The “tx-power” property" link="NMSettingWireless.html#NMSettingWireless--tx-power"/> - <keyword type="property" name="The “wake-on-wlan” property" link="NMSettingWireless.html#NMSettingWireless--wake-on-wlan"/> <keyword type="function" name="nm_setting_wpan_new ()" link="NMSettingWpan.html#nm-setting-wpan-new" since="1.14"/> <keyword type="function" name="nm_setting_wpan_get_mac_address ()" link="NMSettingWpan.html#nm-setting-wpan-get-mac-address" since="1.14"/> <keyword type="function" name="nm_setting_wpan_get_pan_id ()" link="NMSettingWpan.html#nm-setting-wpan-get-pan-id" since="1.14"/> @@ -2492,14 +2138,14 @@ <keyword type="function" name="nm_device_connection_valid ()" link="NMDevice.html#nm-device-connection-valid"/> <keyword type="function" name="nm_device_connection_compatible ()" link="NMDevice.html#nm-device-connection-compatible"/> <keyword type="function" name="nm_device_get_setting_type ()" link="NMDevice.html#nm-device-get-setting-type"/> - <keyword type="function" name="nm_lldp_neighbor_new ()" link="NMDevice.html#nm-lldp-neighbor-new" since="1.2"/> <keyword type="function" name="nm_lldp_neighbor_ref ()" link="NMDevice.html#nm-lldp-neighbor-ref" since="1.2"/> <keyword type="function" name="nm_lldp_neighbor_unref ()" link="NMDevice.html#nm-lldp-neighbor-unref" since="1.2"/> <keyword type="function" name="nm_lldp_neighbor_get_attr_names ()" link="NMDevice.html#nm-lldp-neighbor-get-attr-names" since="1.2"/> + <keyword type="function" name="nm_lldp_neighbor_get_attr_value ()" link="NMDevice.html#nm-lldp-neighbor-get-attr-value" since="1.18"/> + <keyword type="function" name="nm_lldp_neighbor_new ()" link="NMDevice.html#nm-lldp-neighbor-new" since="1.2"/> <keyword type="function" name="nm_lldp_neighbor_get_attr_string_value ()" link="NMDevice.html#nm-lldp-neighbor-get-attr-string-value" since="1.2"/> <keyword type="function" name="nm_lldp_neighbor_get_attr_uint_value ()" link="NMDevice.html#nm-lldp-neighbor-get-attr-uint-value" since="1.2"/> <keyword type="function" name="nm_lldp_neighbor_get_attr_type ()" link="NMDevice.html#nm-lldp-neighbor-get-attr-type" since="1.2"/> - <keyword type="function" name="nm_lldp_neighbor_get_attr_value ()" link="NMDevice.html#nm-lldp-neighbor-get-attr-value" since="1.18"/> <keyword type="macro" name="NM_DEVICE_DEVICE_TYPE" link="NMDevice.html#NM-DEVICE-DEVICE-TYPE:CAPS"/> <keyword type="macro" name="NM_DEVICE_UDI" link="NMDevice.html#NM-DEVICE-UDI:CAPS"/> <keyword type="macro" name="NM_DEVICE_PATH" link="NMDevice.html#NM-DEVICE-PATH:CAPS"/> @@ -2532,6 +2178,7 @@ <keyword type="macro" name="NM_DEVICE_IP6_CONNECTIVITY" link="NMDevice.html#NM-DEVICE-IP6-CONNECTIVITY:CAPS"/> <keyword type="macro" name="NM_DEVICE_INTERFACE_FLAGS" link="NMDevice.html#NM-DEVICE-INTERFACE-FLAGS:CAPS"/> <keyword type="macro" name="NM_DEVICE_HW_ADDRESS" link="NMDevice.html#NM-DEVICE-HW-ADDRESS:CAPS"/> + <keyword type="struct" name="NMLldpNeighbor" link="NMDevice.html#NMLldpNeighbor-struct"/> <keyword type="function" name="nm_device_6lowpan_get_parent ()" link="NMDevice6Lowpan.html#nm-device-6lowpan-get-parent" since="1.14"/> <keyword type="function" name="NM_DEPRECATED_IN_1_24_FOR ()" link="NMDevice6Lowpan.html#NM-DEPRECATED-IN-1-24-FOR:CAPS" deprecated=""/> <keyword type="macro" name="NM_DEVICE_6LOWPAN_PARENT" link="NMDevice6Lowpan.html#NM-DEVICE-6LOWPAN-PARENT:CAPS"/> @@ -2965,7 +2612,7 @@ <keyword type="function" name="nm_utils_hexstr2bin ()" link="libnm-nm-utils.html#nm-utils-hexstr2bin"/> <keyword type="function" name="nm_utils_iface_valid_name ()" link="libnm-nm-utils.html#nm-utils-iface-valid-name" deprecated="1.6: Use nm_utils_is_valid_iface_name() instead, with better error reporting."/> <keyword type="function" name="nm_utils_is_valid_iface_name ()" link="libnm-nm-utils.html#nm-utils-is-valid-iface-name"/> - <keyword type="function" name="nm_utils_is_uuid ()" link="libnm-nm-utils.html#nm-utils-is-uuid"/> + <keyword type="function" name="nm_utils_is_uuid ()" link="libnm-nm-utils.html#nm-utils-is-uuid" deprecated=""/> <keyword type="function" name="nm_utils_inet4_ntop ()" link="libnm-nm-utils.html#nm-utils-inet4-ntop"/> <keyword type="function" name="nm_utils_inet6_ntop ()" link="libnm-nm-utils.html#nm-utils-inet6-ntop"/> <keyword type="function" name="nm_utils_ipaddr_valid ()" link="libnm-nm-utils.html#nm-utils-ipaddr-valid"/> @@ -3011,6 +2658,7 @@ <keyword type="macro" name="NM_DEPRECATED_IN_1_26_FOR()" link="libnm-nm-version.html#NM-DEPRECATED-IN-1-26-FOR:CAPS"/> <keyword type="macro" name="NM_DEPRECATED_IN_1_28_FOR()" link="libnm-nm-version.html#NM-DEPRECATED-IN-1-28-FOR:CAPS"/> <keyword type="macro" name="NM_DEPRECATED_IN_1_30_FOR()" link="libnm-nm-version.html#NM-DEPRECATED-IN-1-30-FOR:CAPS"/> + <keyword type="macro" name="NM_DEPRECATED_IN_1_32_FOR()" link="libnm-nm-version.html#NM-DEPRECATED-IN-1-32-FOR:CAPS"/> <keyword type="macro" name="NM_VERSION_MIN_REQUIRED" link="libnm-nm-version.html#NM-VERSION-MIN-REQUIRED:CAPS"/> <keyword type="macro" name="NM_VERSION_MAX_ALLOWED" link="libnm-nm-version.html#NM-VERSION-MAX-ALLOWED:CAPS"/> <keyword type="macro" name="NM_DEPRECATED_IN_0_9_10" link="libnm-nm-version.html#NM-DEPRECATED-IN-0-9-10:CAPS"/> @@ -3047,6 +2695,9 @@ <keyword type="macro" name="NM_AVAILABLE_IN_1_28" link="libnm-nm-version.html#NM-AVAILABLE-IN-1-28:CAPS"/> <keyword type="macro" name="NM_DEPRECATED_IN_1_30" link="libnm-nm-version.html#NM-DEPRECATED-IN-1-30:CAPS"/> <keyword type="macro" name="NM_AVAILABLE_IN_1_30" link="libnm-nm-version.html#NM-AVAILABLE-IN-1-30:CAPS"/> + <keyword type="macro" name="NM_DEPRECATED_IN_1_32" link="libnm-nm-version.html#NM-DEPRECATED-IN-1-32:CAPS"/> + <keyword type="macro" name="NM_AVAILABLE_IN_1_32" link="libnm-nm-version.html#NM-AVAILABLE-IN-1-32:CAPS"/> + <keyword type="macro" name="NM_AVAILABLE_IN_1_32_4" link="libnm-nm-version.html#NM-AVAILABLE-IN-1-32-4:CAPS"/> <keyword type="function" name="nm_vpn_service_plugin_get_connection ()" link="NMVpnServicePlugin.html#nm-vpn-service-plugin-get-connection" since="1.2"/> <keyword type="function" name="nm_vpn_service_plugin_secrets_required ()" link="NMVpnServicePlugin.html#nm-vpn-service-plugin-secrets-required" since="1.2"/> <keyword type="function" name="nm_vpn_service_plugin_set_login_banner ()" link="NMVpnServicePlugin.html#nm-vpn-service-plugin-set-login-banner"/> @@ -3514,7 +3165,9 @@ <keyword type="constant" name="NM_DEVICE_INTERFACE_FLAG_NONE" link="libnm-nm-dbus-interface.html#NM-DEVICE-INTERFACE-FLAG-NONE:CAPS"/> <keyword type="constant" name="NM_DEVICE_INTERFACE_FLAG_UP" link="libnm-nm-dbus-interface.html#NM-DEVICE-INTERFACE-FLAG-UP:CAPS"/> <keyword type="constant" name="NM_DEVICE_INTERFACE_FLAG_LOWER_UP" link="libnm-nm-dbus-interface.html#NM-DEVICE-INTERFACE-FLAG-LOWER-UP:CAPS"/> + <keyword type="constant" name="NM_DEVICE_INTERFACE_FLAG_PROMISC" link="libnm-nm-dbus-interface.html#NM-DEVICE-INTERFACE-FLAG-PROMISC:CAPS"/> <keyword type="constant" name="NM_DEVICE_INTERFACE_FLAG_CARRIER" link="libnm-nm-dbus-interface.html#NM-DEVICE-INTERFACE-FLAG-CARRIER:CAPS"/> + <keyword type="constant" name="NM_DEVICE_INTERFACE_FLAG_LLDP_CLIENT_ENABLED" link="libnm-nm-dbus-interface.html#NM-DEVICE-INTERFACE-FLAG-LLDP-CLIENT-ENABLED:CAPS"/> <keyword type="constant" name="NM_CLIENT_PERMISSION_NONE" link="libnm-nm-dbus-interface.html#NM-CLIENT-PERMISSION-NONE:CAPS"/> <keyword type="constant" name="NM_CLIENT_PERMISSION_ENABLE_DISABLE_NETWORK" link="libnm-nm-dbus-interface.html#NM-CLIENT-PERMISSION-ENABLE-DISABLE-NETWORK:CAPS"/> <keyword type="constant" name="NM_CLIENT_PERMISSION_ENABLE_DISABLE_WIFI" link="libnm-nm-dbus-interface.html#NM-CLIENT-PERMISSION-ENABLE-DISABLE-WIFI:CAPS"/> @@ -3539,9 +3192,13 @@ <keyword type="constant" name="NM_CLIENT_PERMISSION_RESULT_AUTH" link="libnm-nm-dbus-interface.html#NM-CLIENT-PERMISSION-RESULT-AUTH:CAPS"/> <keyword type="constant" name="NM_CLIENT_PERMISSION_RESULT_NO" link="libnm-nm-dbus-interface.html#NM-CLIENT-PERMISSION-RESULT-NO:CAPS"/> <keyword type="constant" name="NM_CONNECTION_SERIALIZE_ALL" link="NMConnection.html#NM-CONNECTION-SERIALIZE-ALL:CAPS"/> + <keyword type="constant" name="NM_CONNECTION_SERIALIZE_WITH_NON_SECRET" link="NMConnection.html#NM-CONNECTION-SERIALIZE-WITH-NON-SECRET:CAPS"/> <keyword type="constant" name="NM_CONNECTION_SERIALIZE_NO_SECRETS" link="NMConnection.html#NM-CONNECTION-SERIALIZE-NO-SECRETS:CAPS"/> + <keyword type="constant" name="NM_CONNECTION_SERIALIZE_WITH_SECRETS" link="NMConnection.html#NM-CONNECTION-SERIALIZE-WITH-SECRETS:CAPS"/> <keyword type="constant" name="NM_CONNECTION_SERIALIZE_ONLY_SECRETS" link="NMConnection.html#NM-CONNECTION-SERIALIZE-ONLY-SECRETS:CAPS"/> <keyword type="constant" name="NM_CONNECTION_SERIALIZE_WITH_SECRETS_AGENT_OWNED" link="NMConnection.html#NM-CONNECTION-SERIALIZE-WITH-SECRETS-AGENT-OWNED:CAPS"/> + <keyword type="constant" name="NM_CONNECTION_SERIALIZE_WITH_SECRETS_SYSTEM_OWNED" link="NMConnection.html#NM-CONNECTION-SERIALIZE-WITH-SECRETS-SYSTEM-OWNED:CAPS"/> + <keyword type="constant" name="NM_CONNECTION_SERIALIZE_WITH_SECRETS_NOT_SAVED" link="NMConnection.html#NM-CONNECTION-SERIALIZE-WITH-SECRETS-NOT-SAVED:CAPS"/> <keyword type="constant" name="NM_SETTING_SECRET_FLAG_NONE" link="NMSetting.html#NM-SETTING-SECRET-FLAG-NONE:CAPS"/> <keyword type="constant" name="NM_SETTING_SECRET_FLAG_AGENT_OWNED" link="NMSetting.html#NM-SETTING-SECRET-FLAG-AGENT-OWNED:CAPS"/> <keyword type="constant" name="NM_SETTING_SECRET_FLAG_NOT_SAVED" link="NMSetting.html#NM-SETTING-SECRET-FLAG-NOT-SAVED:CAPS"/> diff --git a/docs/libnm/html/usage.html b/docs/libnm/html/usage.html index 2ed65acc..2ce52797 100644 --- a/docs/libnm/html/usage.html +++ b/docs/libnm/html/usage.html @@ -96,7 +96,7 @@ </p> <pre class="screen"><code class="prompt">$ </code><strong class="userinput"><code>cc $(pkg-config --libs --cflags libnm) -o hello-nm hello-nm.c</code></strong> <code class="prompt">$ </code><strong class="userinput"><code>./hello-nm</code></strong> - NetworkManager version: 1.30.6 + NetworkManager version: 1.32.12 <code class="prompt">$ </code></pre> <p> @@ -156,7 +156,7 @@ In general, the C API documentation applies to the use GObject introspection from other languages, with the calling convention respecting the language's customs. Consult the source tree for - <a class="ulink" href="https://gitlab.freedesktop.org/NetworkManager/NetworkManager/tree/master/examples" target="_top">some examples</a>. + <a class="ulink" href="https://gitlab.freedesktop.org/NetworkManager/NetworkManager/tree/main/examples" target="_top">some examples</a>. </p> </div> <div class="simplesect"> |