From e17c5736fc3722ce51cb33f3edb203960125a4c1 Mon Sep 17 00:00:00 2001 From: Michael Biebl Date: Sat, 9 Feb 2013 03:16:54 +0100 Subject: Imported Upstream version 0.9.7.997 --- docs/libnm-glib/html/NMClient.html | 92 ++++++++++++++++++++++++++++++++ docs/libnm-glib/html/NMDeviceWifi.html | 47 ++++++++++++++++ docs/libnm-glib/html/NMSecretAgent.html | 2 +- docs/libnm-glib/html/api-index-full.html | 16 ++++++ docs/libnm-glib/html/ch02.html | 2 +- docs/libnm-glib/html/index.html | 4 +- docs/libnm-glib/html/index.sgml | 4 ++ docs/libnm-glib/html/libnm-glib.devhelp2 | 4 ++ 8 files changed, 167 insertions(+), 4 deletions(-) (limited to 'docs/libnm-glib/html') diff --git a/docs/libnm-glib/html/NMClient.html b/docs/libnm-glib/html/NMClient.html index cb771ba8..1cc0d3d7 100644 --- a/docs/libnm-glib/html/NMClient.html +++ b/docs/libnm-glib/html/NMClient.html @@ -90,6 +90,10 @@ const NMDevice * nm_client_get_device_by_path (NMClient *client, const char *object_path); const GPtrArray * nm_client_get_devices (NMClient *client); +gboolean nm_client_get_logging (NMClient *client, + char **level, + char **domains, + GError **error); gboolean nm_client_get_manager_running (NMClient *client); NMClientPermissionResult nm_client_get_permission_result (NMClient *client, @@ -105,6 +109,10 @@ const char * gpointer user_data); NMClient * nm_client_new_finish (GAsyncResult *result, GError **error); +gboolean nm_client_set_logging (NMClient *client, + const char *level, + const char *domains, + GError **error); void nm_client_sleep (NMClient *client, gboolean sleep_); gboolean nm_client_wimax_get_enabled (NMClient *client); @@ -710,6 +718,48 @@ containing all the
+

nm_client_get_logging ()

+
gboolean            nm_client_get_logging               (NMClient *client,
+                                                         char **level,
+                                                         char **domains,
+                                                         GError **error);
+

+Gets NetworkManager current logging level and domains. +

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

client :

a NMClient +

level :

return location for logging level string. [allow-none] +

domains :

return location for log domains string. The string is +a list of domains separated by ",". [allow-none] +

error :

return location for a GError, or NULL. [allow-none] +

Returns :

+TRUE on success, FALSE otherwise
+
+
+

nm_client_get_manager_running ()

gboolean            nm_client_get_manager_running       (NMClient *client);

@@ -948,6 +998,48 @@ Gets the result of an


+

nm_client_set_logging ()

+
gboolean            nm_client_set_logging               (NMClient *client,
+                                                         const char *level,
+                                                         const char *domains,
+                                                         GError **error);
+

+Sets NetworkManager logging level and/or domains. +

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

client :

a NMClient +

level :

logging level to set (NULL or an empty string for no change). [allow-none] +

domains :

logging domains to set. The string should be a list of log +domains separated by ",". (NULL or an empty string for no change). [allow-none] +

error :

return location for a GError, or NULL. [allow-none] +

Returns :

+TRUE on success, FALSE otherwise
+
+
+

nm_client_sleep ()

void                nm_client_sleep                     (NMClient *client,
                                                          gboolean sleep_);
diff --git a/docs/libnm-glib/html/NMDeviceWifi.html b/docs/libnm-glib/html/NMDeviceWifi.html index d4976feb..75e35bc6 100644 --- a/docs/libnm-glib/html/NMDeviceWifi.html +++ b/docs/libnm-glib/html/NMDeviceWifi.html @@ -48,6 +48,9 @@
                    NMDeviceWifi;
                     NMDeviceWifiClass;
 enum                NMDeviceWifiError;
+void                (*NMDeviceWifiRequestScanFn)        (NMDeviceWifi *device,
+                                                         GError *error,
+                                                         gpointer user_data);
 #define             NM_DEVICE_WIFI_ACTIVE_ACCESS_POINT
 #define             NM_DEVICE_WIFI_BITRATE
 #define             NM_DEVICE_WIFI_CAPABILITIES
@@ -71,6 +74,9 @@ const char *        NMDeviceWifi *device);
 GObject *           nm_device_wifi_new                  (DBusGConnection *connection,
                                                          const char *path);
+void                nm_device_wifi_request_scan_simple  (NMDeviceWifi *device,
+                                                         NMDeviceWifiRequestScanFn callback,
+                                                         gpointer user_data);
 
@@ -199,6 +205,15 @@ required by the connection

+

NMDeviceWifiRequestScanFn ()

+
void                (*NMDeviceWifiRequestScanFn)        (NMDeviceWifi *device,
+                                                         GError *error,
+                                                         gpointer user_data);
+

+

+
+
+

NM_DEVICE_WIFI_ACTIVE_ACCESS_POINT

#define NM_DEVICE_WIFI_ACTIVE_ACCESS_POINT "active-access-point"
 
@@ -488,6 +503,38 @@ Creates a new
+
+
+

nm_device_wifi_request_scan_simple ()

+
void                nm_device_wifi_request_scan_simple  (NMDeviceWifi *device,
+                                                         NMDeviceWifiRequestScanFn callback,
+                                                         gpointer user_data);
+

+Request NM to scan for access points on the NMDeviceWifi. This function only +instructs NM to perform scanning. Use nm_device_wifi_get_access_points() +to get available access points. +

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

device :

a NMDeviceWifi +

callback :

the function to call when the call is done. [scope async][allow-none] +

user_data :

user data to pass to the callback function. [closure] +
+

Property Details

diff --git a/docs/libnm-glib/html/NMSecretAgent.html b/docs/libnm-glib/html/NMSecretAgent.html index e18588c4..1e08bf50 100644 --- a/docs/libnm-glib/html/NMSecretAgent.html +++ b/docs/libnm-glib/html/NMSecretAgent.html @@ -356,7 +356,7 @@ To easily create the hash table to return the WiFi PSK, you could do something like this:

-

Example 1. Creating a secrets hash

+

Example 1. Creating a secrets hash

diff --git a/docs/libnm-glib/html/api-index-full.html b/docs/libnm-glib/html/api-index-full.html index d344affc..812b7665 100644 --- a/docs/libnm-glib/html/api-index-full.html +++ b/docs/libnm-glib/html/api-index-full.html @@ -406,6 +406,10 @@
+nm_client_get_logging, function in NMClient +
+
+
nm_client_get_manager_running, function in NMClient
@@ -450,6 +454,10 @@
+nm_client_set_logging, function in NMClient +
+
+
nm_client_sleep, function in NMClient
@@ -867,6 +875,10 @@
+NMDeviceWifiRequestScanFn, user_function in NMDeviceWifi +
+
+
NMDeviceWimax, struct in NMDeviceWimax
@@ -1463,6 +1475,10 @@
+nm_device_wifi_request_scan_simple, function in NMDeviceWifi +
+
+
NM_DEVICE_WIMAX_ACTIVE_NSP, macro in NMDeviceWimax
diff --git a/docs/libnm-glib/html/ch02.html b/docs/libnm-glib/html/ch02.html index 2a334ea9..7a81d599 100644 --- a/docs/libnm-glib/html/ch02.html +++ b/docs/libnm-glib/html/ch02.html @@ -21,7 +21,7 @@

-libnm-glib API Reference

+libnm-glib API Reference
NMClient diff --git a/docs/libnm-glib/html/index.html b/docs/libnm-glib/html/index.html index 339a581c..baaf92bf 100644 --- a/docs/libnm-glib/html/index.html +++ b/docs/libnm-glib/html/index.html @@ -15,14 +15,14 @@

- for libnm-glib 0.9.7.995 + for libnm-glib 0.9.7.997 The latest version of this documentation can be found on-line at http://projects.gnome.org/NetworkManager/developers/libnm-glib/09/.

-

+

Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later diff --git a/docs/libnm-glib/html/index.sgml b/docs/libnm-glib/html/index.sgml index 92276d7d..b7aee356 100644 --- a/docs/libnm-glib/html/index.sgml +++ b/docs/libnm-glib/html/index.sgml @@ -48,6 +48,7 @@ + @@ -57,6 +58,7 @@ + @@ -247,6 +249,7 @@ + @@ -264,6 +267,7 @@ + diff --git a/docs/libnm-glib/html/libnm-glib.devhelp2 b/docs/libnm-glib/html/libnm-glib.devhelp2 index 3cf09621..2358599b 100644 --- a/docs/libnm-glib/html/libnm-glib.devhelp2 +++ b/docs/libnm-glib/html/libnm-glib.devhelp2 @@ -63,6 +63,7 @@ + @@ -72,6 +73,7 @@ + @@ -214,6 +216,7 @@ + @@ -231,6 +234,7 @@ + -- cgit 1.3.0-6-gf8a5