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-util/html/api-index-full.html | 8 +++++ docs/libnm-util/html/ch01.html | 2 +- docs/libnm-util/html/index.html | 4 +-- docs/libnm-util/html/index.sgml | 2 ++ docs/libnm-util/html/libnm-util-nm-utils.html | 52 +++++++++++++++++++++++++++ docs/libnm-util/html/libnm-util.devhelp2 | 2 ++ 6 files changed, 67 insertions(+), 3 deletions(-) (limited to 'docs/libnm-util/html') diff --git a/docs/libnm-util/html/api-index-full.html b/docs/libnm-util/html/api-index-full.html index 807aea99..b3f8aa63 100644 --- a/docs/libnm-util/html/api-index-full.html +++ b/docs/libnm-util/html/api-index-full.html @@ -4198,6 +4198,10 @@ NM_SETTING_SECRET_FLAGS_ALL, macro in nm-setting-private
+nm_utils_wep_key_valid, function in nm-utils +
+
+
nm_utils_wifi_channel_to_freq, function in nm-utils
@@ -4213,6 +4217,10 @@ NM_SETTING_SECRET_FLAGS_ALL, macro in nm-setting-private nm_utils_wifi_is_channel_valid, function in nm-utils
+
+nm_utils_wpa_psk_valid, function in nm-utils +
+

V

NMVlanFlags, enum in NMSettingVlan diff --git a/docs/libnm-util/html/ch01.html b/docs/libnm-util/html/ch01.html index cba034e1..5d0f3520 100644 --- a/docs/libnm-util/html/ch01.html +++ b/docs/libnm-util/html/ch01.html @@ -21,7 +21,7 @@

-libnm-util API Reference

+libnm-util API Reference
NMConnection — Describes a connection to specific network or provider diff --git a/docs/libnm-util/html/index.html b/docs/libnm-util/html/index.html index 1da1ad01..9c0b5194 100644 --- a/docs/libnm-util/html/index.html +++ b/docs/libnm-util/html/index.html @@ -15,14 +15,14 @@

- for libnm-util 0.9.7.995 + for libnm-util 0.9.7.997 The latest version of this documentation can be found on-line at http://projects.gnome.org/NetworkManager/developers/libnm-util/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-util/html/index.sgml b/docs/libnm-util/html/index.sgml index 330e08a9..604f2d9b 100644 --- a/docs/libnm-util/html/index.sgml +++ b/docs/libnm-util/html/index.sgml @@ -1416,10 +1416,12 @@ + + diff --git a/docs/libnm-util/html/libnm-util-nm-utils.html b/docs/libnm-util/html/libnm-util-nm-utils.html index eaa3def1..a70bc744 100644 --- a/docs/libnm-util/html/libnm-util-nm-utils.html +++ b/docs/libnm-util/html/libnm-util-nm-utils.html @@ -102,6 +102,8 @@ const char * char * nm_utils_ssid_to_utf8 (const GByteArray *ssid); char * nm_utils_uuid_generate (void); char * nm_utils_uuid_generate_from_string (const char *s); +gboolean nm_utils_wep_key_valid (const char *key, + NMWepKeyType wep_type); guint32 nm_utils_wifi_channel_to_freq (guint32 channel, const char *band); guint32 nm_utils_wifi_find_next_channel (guint32 channel, @@ -110,6 +112,7 @@ const char * guint32 nm_utils_wifi_freq_to_channel (guint32 freq); gboolean nm_utils_wifi_is_channel_valid (guint32 channel, const char *band); +gboolean nm_utils_wpa_psk_valid (const char *psk);

@@ -1154,6 +1157,33 @@ object's
+

nm_utils_wep_key_valid ()

+
gboolean            nm_utils_wep_key_valid              (const char *key,
+                                                         NMWepKeyType wep_type);
+

+Checks if key is a valid WEP key +

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

key :

a string that might be a WEP key

wep_type :

the NMWepKeyType type of the WEP key

Returns :

+TRUE if key is a WEP key, FALSE if not
+
+
+

nm_utils_wifi_channel_to_freq ()

guint32             nm_utils_wifi_channel_to_freq       (guint32 channel,
                                                          const char *band);
@@ -1258,6 +1288,28 @@ Utility function to verify WiFi channel validity.
+
+
+

nm_utils_wpa_psk_valid ()

+
gboolean            nm_utils_wpa_psk_valid              (const char *psk);
+

+Checks if psk is a valid WPA PSK +

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

psk :

a string that might be a WPA PSK

Returns :

+TRUE if psk is a WPA PSK, FALSE if not
+