mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-26 07:40:08 +01:00
It should be possible to add a profile with autoconnect blocked form the start. Update2() has a %NM_SETTINGS_UPDATE2_FLAG_BLOCK_AUTOCONNECT flag to block autoconnect, and so we need something similar when adding a connection. As the existing AddConnection() and AddConnectionUnsaved() API is not extensible, add AddConnection2() that has flags and room for additional arguments. Then add and implement the new flag %NM_SETTINGS_ADD_CONNECTION2_FLAG_BLOCK_AUTOCONNECT for AddConnection2(). Note that libnm's nm_client_add_connection2() API can completely replace the existing nm_client_add_connection_async() call. In particular, it will automatically prefer to call the D-Bus methods AddConnection() and AddConnectionUnsaved(), in order to work with server versions older than 1.20. The purpose of this is that when upgrading the package, the running NetworkManager might still be older than the installed libnm. Anyway, so since nm_client_add_connection2_finish() also has a result output, the caller needs to decide whether he cares about that result. Hence it has an argument ignore_out_result, which allows to fallback to the old API. One might argue that a caller who doesn't care about the output results while still wanting to be backward compatible, should itself choose to call nm_client_add_connection_async() or nm_client_add_connection2(). But instead, it's more convenient if the new function can fully replace the old one, so that the caller does not need to switch which start/finish method to call. https://bugzilla.redhat.com/show_bug.cgi?id=1677068
206 lines
8 KiB
XML
206 lines
8 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<node name="/org/freedesktop/NetworkManager/Settings">
|
|
|
|
<!--
|
|
org.freedesktop.NetworkManager.Settings:
|
|
@short_description: Connection Settings Profile Manager
|
|
|
|
The Settings interface allows clients to view and administrate the
|
|
connections stored and used by NetworkManager.
|
|
-->
|
|
<interface name="org.freedesktop.NetworkManager.Settings">
|
|
|
|
<!--
|
|
ListConnections:
|
|
@connections: List of connections.
|
|
|
|
List the saved network connections known to NetworkManager.
|
|
-->
|
|
<method name="ListConnections">
|
|
<arg name="connections" type="ao" direction="out"/>
|
|
</method>
|
|
|
|
<!--
|
|
GetConnectionByUuid:
|
|
@uuid: The UUID to find the connection object path for.
|
|
@connection: The connection's object path.
|
|
|
|
Retrieve the object path of a connection, given that connection's UUID.
|
|
-->
|
|
<method name="GetConnectionByUuid">
|
|
<arg name="uuid" type="s" direction="in"/>
|
|
<arg name="connection" type="o" direction="out"/>
|
|
</method>
|
|
|
|
<!--
|
|
AddConnection:
|
|
@connection: Connection settings and properties.
|
|
@path: Object path of the new connection that was just added.
|
|
|
|
Add new connection and save it to disk. This operation does not start the
|
|
network connection unless (1) device is idle and able to connect to the
|
|
network described by the new connection, and (2) the connection is allowed
|
|
to be started automatically.
|
|
-->
|
|
<method name="AddConnection">
|
|
<arg name="connection" type="a{sa{sv}}" direction="in"/>
|
|
<arg name="path" type="o" direction="out"/>
|
|
</method>
|
|
|
|
<!--
|
|
AddConnectionUnsaved:
|
|
@connection: Connection settings and properties.
|
|
@path: Object path of the new connection that was just added.
|
|
|
|
Add new connection but do not save it to disk immediately. This operation
|
|
does not start the network connection unless (1) device is idle and able
|
|
to connect to the network described by the new connection, and (2) the
|
|
connection is allowed to be started automatically. Use the 'Save' method
|
|
on the connection to save these changes to disk.
|
|
-->
|
|
<method name="AddConnectionUnsaved">
|
|
<arg name="connection" type="a{sa{sv}}" direction="in"/>
|
|
<arg name="path" type="o" direction="out"/>
|
|
</method>
|
|
|
|
<!--
|
|
AddConnection2:
|
|
@settings: New connection settings, properties, and (optionally) secrets.
|
|
@flags: optional flags argument. Currently the following flags are supported:
|
|
"0x1" (to-disk),
|
|
"0x2" (in-memory),
|
|
"0x20" (block-autoconnect).
|
|
Unknown flags cause the call to fail.
|
|
@args: optional arguments dictionary, for extensibility. Currently no
|
|
arguments are accepted. Specifying unknown keys causes the call
|
|
to fail.
|
|
@path: Object path of the new connection that was just added.
|
|
@result: output argument, currently no additional results are returned.
|
|
|
|
Add a new connection profile.
|
|
|
|
Either the flags 0x1 (to-disk) or 0x2 (in-memory) must be specified.
|
|
The effect is whether to behave like AddConnection or AddConnectionUnsaved.
|
|
If 0x20 (block-autoconnect) is specified, autoconnect for the new profile
|
|
is blocked from the beginnin. Otherwise, the profile might automatically
|
|
connect if a suitable device is around.
|
|
|
|
AddConnection2 is a extensible alternative to AddConnection, and AddConnectionUnsaved.
|
|
The new variant can do everything that the older variants could, and more.
|
|
|
|
Since: 1.20
|
|
-->
|
|
<method name="AddConnection2">
|
|
<arg name="settings" type="a{sa{sv}}" direction="in"/>
|
|
<arg name="flags" type="u" direction="in"/>
|
|
<arg name="args" type="a{sv}" direction="in"/>
|
|
<arg name="path" type="o" direction="out"/>
|
|
<arg name="result" type="a{sv}" direction="out"/>
|
|
</method>
|
|
|
|
<!--
|
|
LoadConnections:
|
|
@filenames: Array of paths to on-disk connection profiles in directories monitored by NetworkManager.
|
|
@status: Success or failure of the operation as a whole. True if NetworkManager at least tried to load the indicated connections, even if it did not succeed. False if an error occurred before trying to load the connections (eg, permission denied).
|
|
@failures: Paths of connection files that could not be loaded.
|
|
|
|
Loads or reloads the indicated connections from disk. You should call this
|
|
after making changes directly to an on-disk connection file to make sure
|
|
that NetworkManager sees the changes. (If "monitor-connection-files" in
|
|
NetworkManager.conf is "true", then this will have no real effect, but is
|
|
harmless.) As with AddConnection(), this operation does not necessarily
|
|
start the network connection.
|
|
-->
|
|
<method name="LoadConnections">
|
|
<arg name="filenames" type="as" direction="in"/>
|
|
<arg name="status" type="b" direction="out"/>
|
|
<arg name="failures" type="as" direction="out"/>
|
|
</method>
|
|
|
|
<!--
|
|
ReloadConnections:
|
|
@status: Success or failure.
|
|
|
|
Tells NetworkManager to reload all connection files from disk, including
|
|
noticing any added or deleted connection files. By default, connections
|
|
are re-read automatically any time they change, so you only need to use
|
|
this command if you have set "monitor-connection-files=false" in
|
|
NetworkManager.conf.
|
|
-->
|
|
<method name="ReloadConnections">
|
|
<arg name="status" type="b" direction="out"/>
|
|
</method>
|
|
|
|
<!--
|
|
SaveHostname:
|
|
@hostname: The hostname to save to persistent configuration. If blank, the persistent hostname is cleared.
|
|
|
|
Save the hostname to persistent configuration.
|
|
-->
|
|
<method name="SaveHostname">
|
|
<arg name="hostname" type="s" direction="in"/>
|
|
</method>
|
|
|
|
<!--
|
|
Connections:
|
|
|
|
List of object paths of available network connection profiles.
|
|
-->
|
|
<property name="Connections" type="ao" access="read"/>
|
|
|
|
<!--
|
|
Hostname:
|
|
|
|
The machine hostname stored in persistent configuration.
|
|
-->
|
|
<property name="Hostname" type="s" access="read"/>
|
|
|
|
<!--
|
|
CanModify:
|
|
|
|
If true, adding and modifying connections is supported.
|
|
-->
|
|
<property name="CanModify" type="b" access="read"/>
|
|
|
|
<!--
|
|
PropertiesChanged:
|
|
@properties: A dictionary mapping property names to variant boxed values
|
|
|
|
DEPRECATED. Use the standard "PropertiesChanged" signal from "org.freedesktop.DBus.Properties" instead which exists since version NetworkManager 1.2.0.
|
|
-->
|
|
<signal name="PropertiesChanged">
|
|
<arg name="properties" type="a{sv}"/>
|
|
</signal>
|
|
|
|
<!--
|
|
NewConnection:
|
|
@connection: Object path of the new connection.
|
|
|
|
Emitted when a new connection has been added after NetworkManager has
|
|
started up and initialized. This signal is not emitted for connections
|
|
read while starting up, because NetworkManager's D-Bus service is only
|
|
available after all connections have been read, and to prevent spamming
|
|
listeners with too many signals at one time. To retrieve the initial
|
|
connection list, call the ListConnections() method once, and then listen
|
|
for individual Settings.NewConnection and Settings.Connection.Deleted
|
|
signals for further updates.
|
|
-->
|
|
<signal name="NewConnection">
|
|
<arg name="connection" type="o"/>
|
|
</signal>
|
|
|
|
<!--
|
|
ConnectionRemoved:
|
|
@connection: Object path of the removed connection.
|
|
|
|
Emitted when a connection is no longer available. This happens when the
|
|
connection is deleted or if it is no longer accessible by any of the
|
|
system's logged-in users. After receipt of this signal, the connection no
|
|
longer exists and cannot be used. Also see the Settings.Connection.Removed
|
|
signal.
|
|
-->
|
|
<signal name="ConnectionRemoved">
|
|
<arg name="connection" type="o"/>
|
|
</signal>
|
|
</interface>
|
|
</node>
|