From afcd268ea7b1149fbfb66bce4eca659b675da0a2 Mon Sep 17 00:00:00 2001 From: Michael Biebl Date: Tue, 12 Dec 2017 15:53:07 +0100 Subject: New upstream version 1.10.2 --- docs/libnm-glib/html/NMRemoteConnection.html | 122 +++++++++++++-------------- 1 file changed, 59 insertions(+), 63 deletions(-) (limited to 'docs/libnm-glib/html/NMRemoteConnection.html') diff --git a/docs/libnm-glib/html/NMRemoteConnection.html b/docs/libnm-glib/html/NMRemoteConnection.html index 475a6c76..211c4d0f 100644 --- a/docs/libnm-glib/html/NMRemoteConnection.html +++ b/docs/libnm-glib/html/NMRemoteConnection.html @@ -8,7 +8,7 @@ - + @@ -44,7 +44,7 @@ -GQuark +GQuark nm_remote_connection_error_quark () @@ -116,7 +116,7 @@ -gboolean +gboolean nm_remote_connection_get_unsaved () @@ -136,24 +136,24 @@ -DBusGConnection * +DBusGConnection * bus Write / Construct Only -DBusGConnection * +DBusGConnection * dbus-connection Write / Construct Only -gchar * +gchar * dbus-path Write / Construct Only -gboolean +gboolean unsaved Read @@ -172,17 +172,17 @@ void removed -Run First +Run First void updated -Run First +Run First void visible -Run First +Run First @@ -228,8 +228,8 @@

Object Hierarchy

-
    GObject
-    ╰── NMConnection
+
    GObject
+    ╰── NMConnection
         ╰── NMRemoteConnection
 
@@ -240,7 +240,7 @@

Functions

nm_remote_connection_error_quark ()

-
GQuark
+
GQuark
 nm_remote_connection_error_quark (void);

Registers an error quark for NMRemoteConnection if necessary.

@@ -253,8 +253,8 @@ nm_remote_connection_error_quark (

NMRemoteConnectionResultFunc ()

void
 (*NMRemoteConnectionResultFunc) (NMRemoteConnection *connection,
-                                 GError *error,
-                                 gpointer user_data);
+ GError *error, + gpointer user_data);

Called when NetworkManager has finished an asynchronous operation on a connection, like commit changes, deleting, saving, etc.

@@ -290,9 +290,9 @@ connection, like commit changes, deleting, saving, etc.

NMRemoteConnectionGetSecretsFunc ()

void
 (*NMRemoteConnectionGetSecretsFunc) (NMRemoteConnection *connection,
-                                     GHashTable *secrets,
-                                     GError *error,
-                                     gpointer user_data);
+ GHashTable *secrets, + GError *error, + gpointer user_data);

Called when NetworkManager returns secrets in response to a request for secrets via nm_remote_connection_get_secrets().

@@ -311,8 +311,8 @@ secrets via

secrets

-

on success, a hash table of -hash tables, with each inner hash mapping a setting property to a GValue +

on success, a hash table of +hash tables, with each inner hash mapping a setting property to a GValue containing that property's value.

[element-type utf8 GLib.HashTable] @@ -334,7 +334,7 @@ containing that property's value.

nm_remote_connection_new ()

NMRemoteConnection *
-nm_remote_connection_new (DBusGConnection *bus,
+nm_remote_connection_new (DBusGConnection *bus,
                           const char *path);

Creates a new object representing the remote connection.

@@ -361,7 +361,7 @@ nm_remote_connection_new (

Returns

-

the new remote connection object on success, or NULL on failure

+

the new remote connection object on success, or NULL on failure


@@ -370,7 +370,7 @@ nm_remote_connection_new (void nm_remote_connection_commit_changes (NMRemoteConnection *connection, NMRemoteConnectionResultFunc callback, - gpointer user_data); + gpointer user_data);

Send any local changes to the settings and properties of this connection to NetworkManager, which will immediately save them to disk.

@@ -389,13 +389,13 @@ NetworkManager, which will immediately save them to disk.

callback

-

a function to be called when the +

a function to be called when the commit completes.

[scope async][allow-none]

user_data

-

caller-specific data to be passed to callback +

caller-specific data to be passed to callback .

[closure] @@ -410,7 +410,7 @@ commit completes.

nm_remote_connection_commit_changes_unsaved (NMRemoteConnection *connection, NMRemoteConnectionResultFunc callback, - gpointer user_data); + gpointer user_data);

Send any local changes to the settings and properties of this connection to NetworkManager. The changes are not saved to disk until either nm_remote_connection_save() or nm_remote_connection_commit_changes() is @@ -431,13 +431,13 @@ called.

callback

-

a function to be called when the +

a function to be called when the commit completes.

[scope async][allow-none]

user_data

-

caller-specific data to be passed to callback +

caller-specific data to be passed to callback .

[closure] @@ -452,7 +452,7 @@ commit completes.

void
 nm_remote_connection_save (NMRemoteConnection *connection,
                            NMRemoteConnectionResultFunc callback,
-                           gpointer user_data);
+ gpointer user_data);

Saves the connection to disk if the connection has changes that have not yet been written to disk, or if the connection has never been saved.

@@ -471,13 +471,13 @@ been written to disk, or if the connection has never been saved.

callback

-

a function to be called when the +

a function to be called when the save completes.

[scope async][allow-none]

user_data

-

caller-specific data to be passed to callback +

caller-specific data to be passed to callback .

[closure] @@ -492,7 +492,7 @@ save completes.

void
 nm_remote_connection_delete (NMRemoteConnection *connection,
                              NMRemoteConnectionResultFunc callback,
-                             gpointer user_data);
+ gpointer user_data);

Delete the connection.

Parameters

@@ -510,12 +510,12 @@ nm_remote_connection_delete (

callback

-

a function to be called when the delete completes.

+

a function to be called when the delete completes.

[scope async][allow-none]

user_data

-

caller-specific data to be passed to callback +

caller-specific data to be passed to callback .

[closure] @@ -530,7 +530,7 @@ nm_remote_connection_delete (
NMRemoteConnection *connection, const char *setting_name, NMRemoteConnectionGetSecretsFunc callback, - gpointer user_data); + gpointer user_data);

Request the connection's secrets.

Parameters

@@ -548,18 +548,18 @@ nm_remote_connection_get_secrets (

setting_name

-

the NMSetting object name to get secrets for

+

the NMSetting object name to get secrets for

 

callback

-

a function to be called when the update completes; -must not be NULL.

+

a function to be called when the update completes; +must not be NULL.

[scope async]

user_data

-

caller-specific data to be passed to callback +

caller-specific data to be passed to callback .

[closure] @@ -570,7 +570,7 @@ must not be

nm_remote_connection_get_unsaved ()

-
gboolean
+
gboolean
 nm_remote_connection_get_unsaved (NMRemoteConnection *connection);

Parameters

@@ -589,8 +589,8 @@ nm_remote_connection_get_unsaved (

Returns

-

TRUE if the remote connection contains changes that have not -been saved to disk, FALSE if the connection is the same as its on-disk +

TRUE if the remote connection contains changes that have not +been saved to disk, FALSE if the connection is the same as its on-disk representation.

Since: 0.9.10

@@ -654,43 +654,39 @@ representation.


NMRemoteConnectionCommitFunc

-
typedef NMRemoteConnectionResultFunc NMRemoteConnectionCommitFunc;
-

NMRemoteConnectionDeleteFunc

-
typedef NMRemoteConnectionResultFunc NMRemoteConnectionDeleteFunc;
-

Property Details

The “bus” property

-
  “bus”                      DBusGConnection *
-

The DBusGConnection that the NMRemoteConnection is connected to.

+
  “bus”                      DBusGConnection *
+

The DBusGConnection that the NMRemoteConnection is connected to.

Flags: Write / Construct Only


The “dbus-connection” property

-
  “dbus-connection”          DBusGConnection *
+
  “dbus-connection”          DBusGConnection *

Flags: Write / Construct Only


The “dbus-path” property

-
  “dbus-path”                gchar *
+
  “dbus-path”                gchar *

Flags: Write / Construct Only

Default value: NULL


The “unsaved” property

-
  “unsaved”                  gboolean
-

TRUE if the remote connection contains changes that have not been saved -to disk, FALSE if the connection is the same as its on-disk representation.

+
  “unsaved”                  gboolean
+

TRUE if the remote connection contains changes that have not been saved +to disk, FALSE if the connection is the same as its on-disk representation.

Flags: Read

Default value: FALSE

Since: 0.9.10

@@ -702,7 +698,7 @@ to disk,

The “removed” signal

void
 user_function (NMRemoteConnection *connection,
-               gpointer            user_data)
+ gpointer user_data)

This signal is emitted when a connection is either deleted or becomes invisible to the current user.

@@ -716,7 +712,7 @@ invisible to the current user.

connection

-

a NMConnection

+

a NMConnection

  @@ -727,14 +723,14 @@ invisible to the current user.

-

Flags: Run First

+

Flags: Run First


The “updated” signal

void
 user_function (NMRemoteConnection *connection,
-               gpointer            user_data)
+ gpointer user_data)

This signal is emitted when a connection changes, and it is still visible to the user.

@@ -748,7 +744,7 @@ still visible to the user.

connection

-

a NMConnection

+

a NMConnection

  @@ -759,20 +755,20 @@ still visible to the user.

-

Flags: Run First

+

Flags: Run First


The “visible” signal

void
 user_function (NMRemoteConnection *nmremoteconnection,
-               gboolean            arg1,
-               gpointer            user_data)
-

Flags: Run First

+ gboolean arg1, + gpointer user_data) +

Flags: Run First

+
Generated by GTK-Doc V1.26
\ No newline at end of file -- cgit 1.3.0-6-gf8a5