From 2bfb3eb7d0323e69affca154395f51d8b577414d Mon Sep 17 00:00:00 2001 From: Michael Biebl Date: Wed, 6 Apr 2016 00:46:19 +0200 Subject: Imported Upstream version 1.1.93 --- ...us-org.freedesktop.NetworkManager.Settings.html | 89 ++++++++++++++++------ 1 file changed, 66 insertions(+), 23 deletions(-) (limited to 'docs/api/html/gdbus-org.freedesktop.NetworkManager.Settings.html') diff --git a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Settings.html b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Settings.html index d4b243dc..e2064236 100644 --- a/docs/api/html/gdbus-org.freedesktop.NetworkManager.Settings.html +++ b/docs/api/html/gdbus-org.freedesktop.NetworkManager.Settings.html @@ -68,16 +68,19 @@

Description

-

The Settings interface allows clients to view and administrate the connections stored and used by NetworkManager.

+

The Settings interface allows clients to view and administrate the + connections stored and used by NetworkManager. +

Method Details

-

The ListConnections() method

+

The ListConnections() method

 ListConnections (OUT ao connections);
 
-

List the saved network connections known to NetworkManager.

+

List the saved network connections known to NetworkManager. +

@@ -91,12 +94,13 @@ ListConnections (OUT ao connections);
-

The GetConnectionByUuid() method

+

The GetConnectionByUuid() method

 GetConnectionByUuid (IN  s uuid,
                      OUT o connection);
 
-

Retrieve the object path of a connection, given that connection's UUID.

+

Retrieve the object path of a connection, given that connection's UUID. +

@@ -116,12 +120,16 @@ GetConnectionByUuid (IN s uuid,
-

The AddConnection() method

+

The AddConnection() method

 AddConnection (IN  a{sa{sv}} connection,
                OUT o         path);
 
-

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.

+

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. +

@@ -141,12 +149,19 @@ AddConnection (IN a{sa{sv}} connection,
-

The AddConnectionUnsaved() method

+

The AddConnectionUnsaved() method

 AddConnectionUnsaved (IN  a{sa{sv}} connection,
                       OUT o         path);
 
-

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. Note that unsaved changes will be lost if the connection is reloaded from disk (either automatically on file change or due to an explicit ReloadConnections call).

+

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. Note that unsaved changes + will be lost if the connection is reloaded from disk (either automatically + on file change or due to an explicit ReloadConnections call). +

@@ -166,13 +181,19 @@ AddConnectionUnsaved (IN a{sa{sv}} connection,
-

The LoadConnections() method

+

The LoadConnections() method

 LoadConnections (IN  as filenames,
                  OUT b  status,
                  OUT as failures);
 
-

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.

+

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. +

@@ -181,11 +202,11 @@ LoadConnections (IN as filenames, - + - + @@ -196,11 +217,16 @@ LoadConnections (IN as filenames,
-

The ReloadConnections() method

+

The ReloadConnections() method

 ReloadConnections (OUT b status);
 
-

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.

+

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. +

IN as filenames:

Array of paths to on-disk connection profiles in directories monitored by NetworkManager.

Array of paths to on-disk connection profiles in directories monitored by NetworkManager.

OUT b 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).

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).

OUT as failures:

@@ -214,11 +240,12 @@ ReloadConnections (OUT b status);
-

The SaveHostname() method

+

The SaveHostname() method

 SaveHostname (IN  s hostname);
 
-

Save the hostname to persistent configuration.

+

Save the hostname to persistent configuration. +

@@ -226,7 +253,7 @@ SaveHostname (IN s hostname); - +

IN s hostname:

The hostname to save to persistent configuration. If blank, the persistent hostname is cleared.

The hostname to save to persistent configuration. If blank, the persistent hostname is cleared.

@@ -256,7 +283,15 @@ PropertiesChanged (a{sv} properties);
 NewConnection (o 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.

+

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. +

@@ -274,7 +309,12 @@ NewConnection (o connection);
 ConnectionRemoved (o 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.

+

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. +

@@ -294,7 +334,8 @@ ConnectionRemoved (o connection);
 Connections  readable   ao
 
-

List of object paths of available network connection profiles.

+

List of object paths of available network connection profiles. +


@@ -302,7 +343,8 @@ Connections readable ao
 Hostname  readable   s
 
-

The machine hostname stored in persistent configuration.

+

The machine hostname stored in persistent configuration. +


@@ -310,7 +352,8 @@ Hostname readable s
 CanModify  readable   b
 
-

If true, adding and modifying connections is supported.

+

If true, adding and modifying connections is supported. +

-- cgit 1.3.0-6-gf8a5