From 58f8be580039b0575b197b9573a1c92745d96d30 Mon Sep 17 00:00:00 2001
From: Michael Biebl Registers an error quark for NMConnection if necessary. Creates a new NMConnection from a hash table describing the connection. See
hash the GHashTable describing
+ the GHashTable describing
the connection. the new NMConnection object, populated with settings created
-from the values in the hash table, or the new setting object, or the new setting object, or [transfer full]
-GQuark
+GQuark
nm_connection_error_quark ()
@@ -116,7 +116,7 @@
-gboolean
+gboolean
nm_connection_replace_settings ()
@@ -124,7 +124,7 @@
-gboolean
+gboolean
nm_connection_replace_settings_from_connection ()
@@ -132,7 +132,7 @@
-gboolean
+gboolean
nm_connection_compare ()
@@ -140,7 +140,7 @@
-gboolean
+gboolean
nm_connection_diff ()
@@ -148,7 +148,7 @@
-gboolean
+gboolean
nm_connection_verify ()
@@ -156,7 +156,7 @@
-gboolean
+gboolean
nm_connection_normalize ()
@@ -187,7 +187,7 @@
-gboolean
+gboolean
nm_connection_update_secrets ()
@@ -224,7 +224,7 @@
-gboolean
+gboolean
nm_connection_is_type ()
@@ -240,7 +240,7 @@
-GHashTable *
+GHashTable *
nm_connection_to_hash ()
@@ -256,7 +256,7 @@
-GType
+GType
nm_connection_lookup_setting_type ()
@@ -264,7 +264,7 @@
-GType
+GType
nm_connection_lookup_setting_type_by_quark ()
@@ -520,7 +520,7 @@
@@ -538,17 +538,17 @@
-gchar *
+gchar *
path
Read / Write / Construct
void
changed
-Run First
+Run First
void
secrets-cleared
-Run First
+Run First
@@ -600,7 +600,7 @@
void
secrets-updated
-Run First
+Run First
Object Hierarchy
GEnum
╰── NMConnectionError
- GObject
+ GObject
╰── NMConnection
@@ -627,7 +627,7 @@ parameters (MTU, SSID, APN, channel, rate, etc) and IP-level parameters
Functions
nm_connection_error_quark ()
-GQuark
+
GQuark
nm_connection_error_quark (
void);void
nm_connection_new_from_hash ()
NMConnection *
-nm_connection_new_from_hash (
+nm_connection_new_from_hash (GHashTable *hash,
- GError **error);GHashTable *hash,
+ GError **error);
nm_connection_to_hash() for a description of the expected hash table.[element-type utf8 GLib.HashTable]
@@ -680,7 +680,7 @@ the connection.
Returns
NULL if the connection failed to
+from the values in the hash table, or NULL if the connection failed to
validateconst
Returns
-NULL if the setting name was unknown. NULL if the setting name was unknown.
void nm_connection_remove_setting (-NMConnection *connection, -GType setting_type);
Removes the NMSetting with the given GType from the NMConnection. This
+ GType setting_type);
+
Removes the NMSetting with the given GType from the NMConnection. This operation dereferences the NMSetting object.
setting_type
-the GType of the setting object to remove
the GType of the setting object to remove
NMSetting * nm_connection_get_setting (-NMConnection *connection, -GType setting_type);
Gets the NMSetting with the given GType, if one has been previously added
+ GType setting_type);
+
Gets the NMSetting with the given GType, if one has been previously added to the NMConnection.
setting_type
the GType of the setting object to return
the GType of the setting object to return
the NMSetting, or NULL if no setting of that type was previously
+
the NMSetting, or NULL if no setting of that type was previously
added to the NMConnection.
[transfer none]
the NMSetting, or NULL if no setting with that name was previously
+
the NMSetting, or NULL if no setting with that name was previously
added to the NMConnection.
[transfer none]
gboolean +gboolean nm_connection_replace_settings (+NMConnection *connection, -GHashTable *new_settings, -GError **error);GHashTable *new_settings, +GError **error);
Flags: Run First
+Flags: Run First
GQuark +GQuark nm_setting_error_quark (void);Registers an error quark for NMSetting if necessary.
@@ -336,11 +336,11 @@ nm_setting_error_quark (voidNMSettingClearSecretsWithFlagsFn ()
-gboolean +gboolean (*NMSettingClearSecretsWithFlagsFn) (+NMSetting *setting,const char *secret,NMSettingSecretFlags flags, -gpointer user_data);gpointer user_data);Parameters
@@ -375,7 +375,7 @@ nm_setting_error_quark (
void
@@ -384,9 +384,9 @@ nm_setting_error_quark (voidvoid (*NMSettingValueIterFn) (NMSetting *setting,const char *key, -const GValue *value, -GParamFlags flags, -gpointer user_data); +const GValue *value, +GParamFlags flags, +gpointer user_data);Parameters
@@ -429,10 +429,10 @@ nm_setting_error_quark (
voidnm_setting_to_hash ()
-GHashTable * +GHashTable * nm_setting_to_hash (-NMSetting *setting,NMSettingHashFlags flags);Converts the NMSetting into a GHashTable mapping each setting property +
Converts the NMSetting into a GHashTable mapping each setting property name to a GValue describing that property, suitable for marshalling over D-Bus or serializing. The mapping is string to GValue.
@@ -459,7 +459,7 @@ D-Bus or serializing. The mapping is string to GValue.@@ -468,8 +468,8 @@ describing the setting's properties.Returns
-a new GHashTable +
a new GHashTable describing the setting's properties.
[transfer full][element-type utf8 GObject.Value]
nm_setting_new_from_hash ()
NMSetting * -nm_setting_new_from_hash (+nm_setting_new_from_hash (GType setting_type, -GHashTable *hash);GType setting_type, +GHashTable *hash);Creates a new NMSetting object and populates that object with the properties contained in the hash table, using each hash key as the property to set, and each hash value as the value to set that property to. Setting properties @@ -492,7 +492,7 @@ property names and value types.
@@ -502,7 +502,7 @@ string to GValue mapping of properties that apply to the setting. - hash
the GHashTable containing a +
the GHashTable containing a string to GValue mapping of properties that apply to the setting.
[element-type utf8 GObject.Value]
@@ -563,14 +563,14 @@ like 'ppp' or 'wireless' or 'wired'.
nm_setting_verify ()
-gboolean +gboolean nm_setting_verify (+NMSetting *setting, -GSList *all_settings, -GError **error);GSList *all_settings, +GError **error);Validates the setting. Each setting's properties have allowed values, and some are dependent on other values (hence the need for
all_settings). The -returned GError contains information about which property of the setting +returned GError contains information about which property of the setting failed validation, and in what way that property failed validation.Parameters
@@ -588,14 +588,14 @@ failed validation, and in what way that property failed validation.- all_settings
a GSList of all settings +
a GSList of all settings in the connection from which
settingcame.[element-type NMSetting] @@ -603,13 +603,13 @@ came. - error
+ location to store error, or
NULLlocation to store error, or
NULL
nm_setting_compare ()
-gboolean +gboolean nm_setting_compare (@@ -645,18 +645,18 @@ for a description of each flag's behavior.NMSetting *a,NMSetting *b,NMSettingCompareFlags flags);
nm_setting_diff ()
-gboolean +gboolean nm_setting_diff (+NMSetting *a,NMSetting *b,NMSettingCompareFlags flags, -gboolean invert_results, -GHashTable **results);gboolean invert_results, +GHashTable **results);Compares two NMSetting objects for similarity, with comparison behavior modified by a set of flags. See the documentation for NMSettingCompareFlags for a description of each flag's behavior. If the settings differ, the keys @@ -690,7 +690,7 @@ one or more
invert_results
+be set to this parameter is used internally by libnm-util and should -be set to
FALSE. IfTRUEinverts the meaning of the NMSettingDiffResult.FALSE. IfTRUEinverts the meaning of the NMSettingDiffResult.@@ -707,7 +707,7 @@ in and the settings differ, a new one is created and returned. Returns
-+
TRUEif the settings contain the same values,FALSEif they do not
TRUEif the settings contain the same values,FALSEif they do not
@@ -716,7 +716,7 @@ in and the settings differ, a new one is created and returned.void nm_setting_enumerate_values (+NMSetting *setting,NMSettingValueIterFn func, -gpointer user_data);gpointer user_data);Iterates over each property of the NMSetting object, calling the supplied user function for each property.
@@ -775,7 +775,7 @@ output format is not guaranteed to be stable and may change at any time.Returns
an allocated string containing a textual representation of the setting's properties and values (including secrets!), which the caller should -free with
+free withg_free()g_free()
@@ -808,7 +808,7 @@ leakage of information.void nm_setting_clear_secrets_with_flags (+NMSetting *setting,NMSettingClearSecretsWithFlagsFn func, -gpointer user_data);gpointer user_data);Clears and frees secrets determined by
func.@@ -844,7 +844,7 @@ specific secret should be cleared or not.
nm_setting_need_secrets ()
-GPtrArray * +GPtrArray * nm_setting_need_secrets (NMSetting *setting);Returns an array of property names for each secret which may be required to make a successful connection. The returned hints are only intended as a @@ -867,9 +867,9 @@ is no way to conclusively determine exactly which secrets are needed.
@@ -877,10 +877,10 @@ free the elements.Returns
-a GPtrArray containing +
a GPtrArray containing the property names of secrets of the NMSetting which may be required; the -caller owns the array and must free it with
g_ptr_array_free(), but must not +caller owns the array and must free it withg_ptr_array_free(), but must not free the elements.[transfer container][element-type utf8]
nm_setting_update_secrets ()
-gboolean +gboolean nm_setting_update_secrets (+NMSetting *setting, -GHashTable *secrets, -GError **error);GHashTable *secrets, +GError **error);Update the setting's secrets, given a hash table of secrets intended for that setting (deserialized from D-Bus for example).
@@ -899,13 +899,13 @@ setting (deserialized from D-Bus for example).- secrets
+ a GHashTable mapping -string to GValue of setting property names and secrets.
a GHashTable mapping +string to GValue of setting property names and secrets.
[element-type utf8 GObject.Value] @@ -913,18 +913,18 @@ string to - error
+ location to store error, or
NULLlocation to store error, or
NULLReturns
-
TRUEif the secrets were successfully updated,FALSEon failure to +
TRUEif the secrets were successfully updated,FALSEon failure to update one or more of the secrets.
nm_setting_get_secret_flags ()
-gboolean +gboolean nm_setting_get_secret_flags (+NMSetting *setting,const char *secret_name,NMSettingSecretFlags *out_flags, -GError **error);GError **error);For a given secret, retrieves the NMSettingSecretFlags describing how to handle that secret.
nm_setting_set_secret_flags ()
-gboolean +gboolean nm_setting_set_secret_flags (+NMSetting *setting,const char *secret_name,NMSettingSecretFlags flags, -GError **error);GError **error);For a given secret, stores the NMSettingSecretFlags describing how to handle that secret.
@@ -1037,7 +1037,7 @@ needs to use if specified in the settings.@@ -1389,7 +1389,7 @@ if you specifyReturns
-Name of the virtual interface or
NULLif the setting does not +Name of the virtual interface or
NULLif the setting does not support this featureNM_SETTING_COMPARE_FLAG_DIFF_RESULT_WProperty Details
The
-“name”property“name” gchar *+“name” gchar *The setting's name, which uniquely identifies the setting within the connection. Each setting type has a name unique to that type, for example "ppp" or "wireless" or "wired".
diff --git a/docs/libnm-util/html/NMSetting8021x.html b/docs/libnm-util/html/NMSetting8021x.html index 28b6fddb..b829d5a4 100644 --- a/docs/libnm-util/html/NMSetting8021x.html +++ b/docs/libnm-util/html/NMSetting8021x.html @@ -43,7 +43,7 @@-GQuark +GQuark nm_setting_802_1x_error_quark () @@ -59,7 +59,7 @@ -guint32 +guint32 nm_setting_802_1x_get_num_eap_methods () @@ -74,7 +74,7 @@ -gboolean +gboolean nm_setting_802_1x_add_eap_method () @@ -90,7 +90,7 @@ -gboolean +gboolean nm_setting_802_1x_remove_eap_method_by_value () @@ -127,7 +127,7 @@ -gboolean +gboolean nm_setting_802_1x_get_system_ca_certs () @@ -156,7 +156,7 @@ - const GByteArray * + const GByteArray * nm_setting_802_1x_get_ca_cert_blob () @@ -171,7 +171,7 @@ -gboolean +gboolean nm_setting_802_1x_set_ca_cert () @@ -186,7 +186,7 @@ -guint32 +guint32 nm_setting_802_1x_get_num_altsubject_matches () @@ -201,7 +201,7 @@ -gboolean +gboolean nm_setting_802_1x_add_altsubject_match () @@ -217,7 +217,7 @@ -gboolean +gboolean nm_setting_802_1x_remove_altsubject_match_by_value () @@ -240,7 +240,7 @@ - const GByteArray * + const GByteArray * nm_setting_802_1x_get_client_cert_blob () @@ -255,7 +255,7 @@ -gboolean +gboolean nm_setting_802_1x_set_client_cert () @@ -305,7 +305,7 @@ - const GByteArray * + const GByteArray * nm_setting_802_1x_get_phase2_ca_cert_blob () @@ -320,7 +320,7 @@ -gboolean +gboolean nm_setting_802_1x_set_phase2_ca_cert () @@ -335,7 +335,7 @@ -guint32 +guint32 nm_setting_802_1x_get_num_phase2_altsubject_matches () @@ -350,7 +350,7 @@ -gboolean +gboolean nm_setting_802_1x_add_phase2_altsubject_match () @@ -366,7 +366,7 @@ -gboolean +gboolean nm_setting_802_1x_remove_phase2_altsubject_match_by_value () @@ -389,7 +389,7 @@ - const GByteArray * + const GByteArray * nm_setting_802_1x_get_phase2_client_cert_blob () @@ -404,7 +404,7 @@ -gboolean +gboolean nm_setting_802_1x_set_phase2_client_cert () @@ -426,7 +426,7 @@ - const GByteArray * + const GByteArray * nm_setting_802_1x_get_password_raw () @@ -464,7 +464,7 @@ - const GByteArray * + const GByteArray * nm_setting_802_1x_get_private_key_blob () @@ -479,7 +479,7 @@ -gboolean +gboolean nm_setting_802_1x_set_private_key () @@ -517,7 +517,7 @@ - const GByteArray * + const GByteArray * nm_setting_802_1x_get_phase2_private_key_blob () @@ -532,7 +532,7 @@ -gboolean +gboolean nm_setting_802_1x_set_phase2_private_key () @@ -581,7 +581,7 @@ @@ -593,7 +593,7 @@ -gchar * +gchar *anonymous-identity Read / Write @@ -611,24 +611,24 @@ -gchar * +gchar *ca-path Read / Write -gchar * +gchar *identity Read / Write -gchar * +gchar *pac-file Read / Write -gchar * +gchar *password Read / Write - @@ -639,25 +639,25 @@guint +guint password-flags Read / Write Read / Write - guint +guint password-raw-flags Read / Write -gchar * +gchar *phase1-fast-provisioning Read / Write -gchar * +gchar *phase1-peaplabel Read / Write @@ -669,13 +669,13 @@ -gchar * +gchar *phase1-peapver Read / Write -gchar * +gchar *phase2-auth Read / Write @@ -687,7 +687,7 @@ -gchar * +gchar *phase2-autheap Read / Write @@ -705,29 +705,29 @@ -gchar * +gchar *phase2-ca-path Read / Write -gchar * +gchar *phase2-private-key-password Read / Write - guint +guint phase2-private-key-password-flags Read / Write -gchar * +gchar *phase2-subject-match Read / Write -gchar * +gchar *pin Read / Write - @@ -739,23 +739,23 @@guint +guint pin-flags Read / Write -gchar * +gchar *private-key-password Read / Write - guint +guint private-key-password-flags Read / Write -gchar * +gchar *subject-match Read / Write - @@ -927,7 +927,7 @@ ├── NMSetting8021xCKFormat ├── NMSetting8021xCKScheme ╰── NMSetting8021xError - GObject + GObject ╰── NMSetting ╰── NMSetting8021x @@ -962,7 +962,7 @@ following books.gboolean +gboolean system-ca-certs Read / Write / Construct Functions
nm_setting_802_1x_error_quark ()
-GQuark +GQuark nm_setting_802_1x_error_quark (void);Registers an error quark for NMSetting8021x if necessary.
@@ -984,7 +984,7 @@ nm_setting_802_1x_new (voidnm_setting_802_1x_get_num_eap_methods ()
-guint32 +guint32 nm_setting_802_1x_get_num_eap_methods (NMSetting8021x *setting);Returns the number of eap methods allowed for use when connecting to the network. Generally only one EAP method is used. Use the functions @@ -1016,7 +1016,7 @@ allowed EAP methods.
nm_setting_802_1x_get_eap_method ()
const char * nm_setting_802_1x_get_eap_method (+NMSetting8021x *setting, -guint32 i);guint32 i);Returns the name of the allowed EAP method at index
i.@@ -1050,7 +1050,7 @@ nm_setting_802_1x_get_eap_method (@@ -1089,7 +1089,7 @@ not a valid method or if it was already allowed.nm_setting_802_1x_add_eap_method ()
-gboolean +gboolean nm_setting_802_1x_add_eap_method (NMSetting8021x *setting,const char *eap);Adds an allowed EAP method. The setting is not valid until at least one @@ -1080,7 +1080,7 @@ allowed EAP methods.
nm_setting_802_1x_remove_eap_method ()
void nm_setting_802_1x_remove_eap_method (+NMSetting8021x *setting, -guint32 i);guint32 i);Removes the allowed EAP method at the specified index.
@@ -1259,12 +1259,12 @@ nm_setting_802_1x_get_pac_file (Parameters
@@ -1117,7 +1117,7 @@ nm_setting_802_1x_remove_eap_method (nm_setting_802_1x_remove_eap_method_by_value ()
-gboolean +gboolean nm_setting_802_1x_remove_eap_method_by_value (@@ -1147,7 +1147,7 @@ nm_setting_802_1x_remove_eap_method_by_valueNMSetting8021x *setting,const char *eap);Returns
-+
TRUEif the EAP method was founs and removed,FALSEif it was not.
TRUEif the EAP method was founs and removed,FALSEif it was not.Since: 0.9.10
nm_setting_802_1x_get_system_ca_certs ()
-gboolean +gboolean nm_setting_802_1x_get_system_ca_certs (NMSetting8021x *setting);Sets the “system-ca-certs” property. The “ca-path” and “phase2-ca-path” properties are ignored if the “system-ca-certs” property is -
TRUE, in which case a system-wide CA certificate directory specified at +TRUE, in which case a system-wide CA certificate directory specified at compile time (using the --system-ca-path configure option) is used in place of these properties.@@ -1284,7 +1284,7 @@ of these properties.
@@ -1378,7 +1378,7 @@ ifnm_setting_802_1x_get_ca_cert_blob ()
-const GByteArray * +const GByteArray * nm_setting_802_1x_get_ca_cert_blob (NMSetting8021x *setting);Returns the CA certificate blob if the CA certificate is stored using the
NM_SETTING_802_1X_CK_SCHEME_BLOBscheme. Not all EAP methods use a @@ -1440,12 +1440,12 @@ of the network cannot be confirmed by the client.
nm_setting_802_1x_set_ca_cert ()
-gboolean +gboolean nm_setting_802_1x_set_ca_cert (+NMSetting8021x *setting,const char *cert_path,NMSetting8021xCKScheme scheme,NMSetting8021xCKFormat *out_format, -GError **error);GError **error);Reads a certificate from disk and sets the “ca-cert” property with the raw certificate data if using the
NM_SETTING_802_1X_CK_SCHEME_BLOBscheme, or with the path to the certificate file if using the @@ -1470,7 +1470,7 @@ scheme, or with the path to the certificate file if using the is set to eitherNM_SETTING_802_1X_CK_SCHEME_PATHorNM_SETTING_802_1X_CK_SCHEME_BLOB, pass the path of the CA certificate file (PEM or DER format). The path must be UTF-8 encoded; use -g_filename_to_utf8()to convert if needed. PassingNULLwith anyscheme+g_filename_to_utf8()to convert if needed. PassingNULLwith anyschemeclears the CA certificate.@@ -1494,7 +1494,7 @@ clears the CA certificate.
@@ -1521,14 +1521,14 @@ nm_setting_802_1x_get_subject_match (Returns
the “subject-match” property. This is the substring to be matched against the subject of the authentication -server certificate, or
NULLno subject verification is to be +server certificate, orNULLno subject verification is to be performed.
nm_setting_802_1x_get_num_altsubject_matches ()
-guint32 +guint32 nm_setting_802_1x_get_num_altsubject_matches (NMSetting8021x *setting);Returns the number of entries in the @@ -1559,7 +1559,7 @@ nm_setting_802_1x_get_num_altsubject_matches
const char * nm_setting_802_1x_get_altsubject_match (+NMSetting8021x *setting, -guint32 i);guint32 i);Returns the altSubjectName match at index
i.@@ -1593,7 +1593,7 @@ nm_setting_802_1x_get_altsubject_match
nm_setting_802_1x_add_altsubject_match ()
-gboolean +gboolean nm_setting_802_1x_add_altsubject_match (@@ -1624,8 +1624,8 @@ server is not verified.NMSetting8021x *setting,const char *altsubject_match);
@@ -1634,7 +1634,7 @@ successfully added, void nm_setting_802_1x_remove_altsubject_match (NMSetting8021x *setting, -guint32 i); +guint32 i);Removes the allowed altSubjectName at the specified index.
@@ -1752,7 +1752,7 @@ ifParameters
@@ -1662,7 +1662,7 @@ nm_setting_802_1x_remove_altsubject_match
nm_setting_802_1x_remove_altsubject_match_by_value ()
-gboolean +gboolean nm_setting_802_1x_remove_altsubject_match_by_value (@@ -1692,8 +1692,8 @@ nm_setting_802_1x_remove_altsubject_match_by_valueNMSetting8021x *setting,const char *altsubject_match);Returns
-+
TRUEif the alternative subject name match was found and removed, -FALSEif it was not.
TRUEif the alternative subject name match was found and removed, +FALSEif it was not.Since: 0.9.10
nm_setting_802_1x_get_client_cert_blob ()
-const GByteArray * +const GByteArray * nm_setting_802_1x_get_client_cert_blob (NMSetting8021x *setting);Client certificates are used to identify the connecting client to the network @@ -1810,12 +1810,12 @@ authentication method.
nm_setting_802_1x_set_client_cert ()
-gboolean +gboolean nm_setting_802_1x_set_client_cert (+NMSetting8021x *setting,const char *cert_path,NMSetting8021xCKScheme scheme,NMSetting8021xCKFormat *out_format, -GError **error);GError **error);Reads a certificate from disk and sets the “client-cert” property with the raw certificate data if using the
is set to eitherNM_SETTING_802_1X_CK_SCHEME_BLOBscheme, or with the path to the certificate @@ -1843,7 +1843,7 @@ authentication method.NM_SETTING_802_1X_CK_SCHEME_PATHorNM_SETTING_802_1X_CK_SCHEME_BLOB, pass the path of the client certificate file (PEM, DER, or PKCS#12 format). The path must be UTF-8 -encoded; useg_filename_to_utf8()to convert if needed. PassingNULLwith +encoded; useg_filename_to_utf8()to convert if needed. PassingNULLwith anyschemeclears the client certificate.@@ -1868,7 +1868,7 @@ clears the client certificate.
@@ -1895,7 +1895,7 @@ nm_setting_802_1x_get_phase1_peapver (Returns
the "phase 1" PEAP version to be used when authenticating with EAP-PEAP as contained in the “phase1-peapver” property. Valid -values are
+values areNULL(unset), "0" (PEAP version 0), and "1" (PEAP version 1).NULL(unset), "0" (PEAP version 0), and "1" (PEAP version 1).
@@ -1923,7 +1923,7 @@ nm_setting_802_1x_get_phase1_peaplabelReturns
whether the "phase 1" PEAP label is new-style or old-style, to be used when authenticating with EAP-PEAP, as contained in the -“phase1-peaplabel” property. Valid values are
@@ -2041,7 +2041,7 @@ useNULL(unset), +“phase1-peaplabel” property. Valid values areNULL(unset), "0" (use old-style label), and "1" (use new-style label). See the wpa_supplicant documentation for more details.nm_setting_802_1x_get_phase2_ca_cert_blob ()
-const GByteArray * +const GByteArray * nm_setting_802_1x_get_phase2_ca_cert_blob (NMSetting8021x *setting);Returns the "phase 2" CA certificate blob if the CA certificate is stored @@ -2105,12 +2105,12 @@ of the network cannot be confirmed by the client.
nm_setting_802_1x_set_phase2_ca_cert ()
-gboolean +gboolean nm_setting_802_1x_set_phase2_ca_cert (+NMSetting8021x *setting,const char *cert_path,NMSetting8021xCKScheme scheme,NMSetting8021xCKFormat *out_format, -GError **error);GError **error);Reads a certificate from disk and sets the “phase2-ca-cert” property with the raw certificate data if using the
NM_SETTING_802_1X_CK_SCHEME_BLOBscheme, or with the path to the certificate @@ -2135,7 +2135,7 @@ file if using theNM_SETTING_802_1X_CK_SCHEME_PATHorNM_SETTING_802_1X_CK_SCHEME_BLOB, pass the path of the "phase2" CA certificate file (PEM or DER format). The path must be UTF-8 encoded; use -g_filename_to_utf8()to convert if needed. PassingNULLwith anyscheme+g_filename_to_utf8()to convert if needed. PassingNULLwith anyschemeclears the "phase2" CA certificate.@@ -2159,7 +2159,7 @@ clears the "phase2" CA certificate. Returns
-+
TRUEif the operation succeeded,FALSEif it was unsuccessful
TRUEif the operation succeeded,FALSEif it was unsuccessful
@@ -2187,14 +2187,14 @@ nm_setting_802_1x_get_phase2_subject_matchReturns
the “phase2-subject-match” property. This is the substring to be matched against the subject of the "phase 2" -authentication server certificate, or
NULLno subject verification +authentication server certificate, orNULLno subject verification is to be performed.
nm_setting_802_1x_get_num_phase2_altsubject_matches ()
-guint32 +guint32 nm_setting_802_1x_get_num_phase2_altsubject_matches (NMSetting8021x *setting);Returns the number of entries in the @@ -2225,7 +2225,7 @@ nm_setting_802_1x_get_num_phase2_altsubject_matches
const char * nm_setting_802_1x_get_phase2_altsubject_match (+NMSetting8021x *setting, -guint32 i);guint32 i);Returns the "phase 2" altSubjectName match at index
i.@@ -2259,7 +2259,7 @@ nm_setting_802_1x_get_phase2_altsubject_match
nm_setting_802_1x_add_phase2_altsubject_match ()
-gboolean +gboolean nm_setting_802_1x_add_phase2_altsubject_match (@@ -2291,8 +2291,8 @@ connectionNMSetting8021x *setting,const char *phase2_altsubject_match);
@@ -2301,7 +2301,7 @@ successfully added, void nm_setting_802_1x_remove_phase2_altsubject_match (NMSetting8021x *setting, -guint32 i); +guint32 i);Removes the allowed "phase 2" altSubjectName at the specified index.
@@ -2421,7 +2421,7 @@ returned scheme isParameters
@@ -2329,7 +2329,7 @@ nm_setting_802_1x_remove_phase2_altsubject_match
nm_setting_802_1x_remove_phase2_altsubject_match_by_value ()
-gboolean +gboolean nm_setting_802_1x_remove_phase2_altsubject_match_by_value (@@ -2359,8 +2359,8 @@ nm_setting_802_1x_remove_phase2_altsubject_match_by_valueNMSetting8021x *setting,const char *phase2_altsubject_match);Returns
-+
TRUEif the alternative subject name match for "phase 2" was found and removed, -FALSEif it was not.
TRUEif the alternative subject name match for "phase 2" was found and removed, +FALSEif it was not.Since: 0.9.10
nm_setting_802_1x_get_phase2_client_cert_blob ()
-const GByteArray * +const GByteArray * nm_setting_802_1x_get_phase2_client_cert_blob (NMSetting8021x *setting);Client certificates are used to identify the connecting client to the network @@ -2479,13 +2479,13 @@ authentication method.
nm_setting_802_1x_set_phase2_client_cert ()
-gboolean +gboolean nm_setting_802_1x_set_phase2_client_cert (+NMSetting8021x *setting,const char *cert_path,NMSetting8021xCKScheme scheme,NMSetting8021xCKFormat *out_format, -GError **error);GError **error);Reads a certificate from disk and sets the “phase2-client-cert” property with the raw certificate data if using the
is set to eitherNM_SETTING_802_1X_CK_SCHEME_BLOBscheme, or with the path to the certificate @@ -2513,7 +2513,7 @@ authentication method.NM_SETTING_802_1X_CK_SCHEME_PATHorNM_SETTING_802_1X_CK_SCHEME_BLOB, pass the path of the "phase2" client certificate file (PEM, DER, or PKCS#12 format). The path must be UTF-8 -encoded; useg_filename_to_utf8()to convert if needed. PassingNULLwith +encoded; useg_filename_to_utf8()to convert if needed. PassingNULLwith anyschemeclears the "phase2" client certificate.@@ -2538,7 +2538,7 @@ clears the "phase2" client certificate.
@@ -2595,7 +2595,7 @@ nm_setting_802_1x_get_password_flags (nm_setting_802_1x_get_password_raw ()
-const GByteArray * +const GByteArray * nm_setting_802_1x_get_password_raw (NMSetting8021x *setting);Parameters
@@ -2732,7 +2732,7 @@ nm_setting_802_1x_get_private_key_scheme
nm_setting_802_1x_get_private_key_blob ()
-const GByteArray * +const GByteArray * nm_setting_802_1x_get_private_key_blob (NMSetting8021x *setting);Private keys are used to authenticate the connecting client to the network @@ -2793,13 +2793,13 @@ authentication method.
nm_setting_802_1x_set_private_key ()
-gboolean +gboolean nm_setting_802_1x_set_private_key (+NMSetting8021x *setting,const char *key_path,const char *password,NMSetting8021xCKScheme scheme,NMSetting8021xCKFormat *out_format, -GError **error);GError **error);Private keys are used to authenticate the connecting client to the network when EAP-TLS is used as either the "phase 1" or "phase 2" 802.1x authentication method.
@@ -2813,7 +2813,7 @@ verify thatpasswordis correct, and if it is, updates the “private-key-password” property with the givenpassword. If -the decryption is unsuccessful,FALSEis returned,error+the decryption is unsuccessful,FALSEis returned,erroris set, and no internal data is changed. If nopasswordis given, the private key is @@ -2843,13 +2843,13 @@ key password to prevent unauthorized access to unencrypted private key data. is set to eitherNM_SETTING_802_1X_CK_SCHEME_PATHorNM_SETTING_802_1X_CK_SCHEME_BLOB, pass the path of the private key file (PEM, DER, or PKCS#12 format). The path must be UTF-8 encoded; use -g_filename_to_utf8()to convert if needed. PassingNULLwith anyscheme+g_filename_to_utf8()to convert if needed. PassingNULLwith anyschemeclears the private key.- password
password used to decrypt the private key, or
NULLif the password +password used to decrypt the private key, or
NULLif the password is unknown. If the password is given but fails to decrypt the private key, an error is returned.@@ -2874,7 +2874,7 @@ an error is returned. Returns
-+
TRUEif the operation succeeded,FALSEif it was unsuccessful
TRUEif the operation succeeded,FALSEif it was unsuccessful
@@ -2993,7 +2993,7 @@ scheme isnm_setting_802_1x_get_phase2_private_key_blob ()
-const GByteArray * +const GByteArray * nm_setting_802_1x_get_phase2_private_key_blob (NMSetting8021x *setting);Private keys are used to authenticate the connecting client to the network @@ -3054,14 +3054,14 @@ authentication method.
nm_setting_802_1x_set_phase2_private_key ()
-gboolean +gboolean nm_setting_802_1x_set_phase2_private_key (+NMSetting8021x *setting,const char *key_path,const char *password,NMSetting8021xCKScheme scheme,NMSetting8021xCKFormat *out_format, -GError **error);GError **error);Private keys are used to authenticate the connecting client to the network when EAP-TLS is used as either the "phase 1" or "phase 2" 802.1x authentication method.
@@ -3075,7 +3075,7 @@ verify thatpasswordis correct, and if it is, updates the “phase2-private-key-password” property with the givenpassword-. If the decryption is unsuccessful,FALSEis returned,error+. If the decryption is unsuccessful,FALSEis returned,erroris set, and no internal data is changed. If nopasswordis given, the private @@ -3105,14 +3105,14 @@ key password to prevent unauthorized access to unencrypted private key data. is set to eitherNM_SETTING_802_1X_CK_SCHEME_PATHorNM_SETTING_802_1X_CK_SCHEME_BLOB, pass the path of the "phase2" private key file (PEM, DER, or PKCS#12 format). The path must be UTF-8 encoded; -useg_filename_to_utf8()to convert if needed. PassingNULLwith any +useg_filename_to_utf8()to convert if needed. PassingNULLwith anyschemeclears the private key.- password
password used to decrypt the private key, or
NULLif the password +password used to decrypt the private key, or
NULLif the password is unknown. If the password is given but fails to decrypt the private key, an error is returned.@@ -3137,7 +3137,7 @@ an error is returned. Returns
-+
TRUEif the operation succeeded,FALSEif it was unsuccessful
TRUEif the operation succeeded,FALSEif it was unsuccessful
@@ -3571,7 +3571,7 @@ no verification of the server certificate's altSubjectName is performed.
The
-“anonymous-identity”property“anonymous-identity” gchar *+“anonymous-identity” gchar *Anonymous identity string for EAP authentication methods. Used as the unencrypted identity with EAP types that support different tunneled identity like EAP-TTLS.
@@ -3599,7 +3599,7 @@ but this allows man-in-the-middle attacks and is NOT recommended.
The
-“ca-path”property“ca-path” gchar *+“ca-path” gchar *UTF-8 encoded path to a directory containing PEM or DER formatted certificates to be added to the verification chain in addition to the certificate specified in the “ca-cert” property.
@@ -3636,7 +3636,7 @@ allowed combinations.
The
-“identity”property“identity” gchar *+“identity” gchar *Identity string for EAP authentication methods. Often the user's user or login name.
Flags: Read / Write
@@ -3645,7 +3645,7 @@ login name.
The
-“pac-file”property“pac-file” gchar *+“pac-file” gchar *UTF-8 encoded file path containing PAC for EAP-FAST.
Flags: Read / Write
Default value: NULL
@@ -3653,7 +3653,7 @@ login name.
The
-“password”property“password” gchar *+“password” gchar *UTF-8 encoded password used for EAP authentication methods. If both the “password” property and the “password-raw” property are specified, “password” is preferred.
@@ -3663,7 +3663,7 @@ property are specified,The
-“password-flags”property“password-flags” guint+“password-flags” guintFlags indicating how to handle the “password” property.
Flags: Read / Write
Allowed values: <= 7
@@ -3682,7 +3682,7 @@ property are specified,The
-“password-raw-flags”property“password-raw-flags” guint+“password-raw-flags” guintFlags indicating how to handle the “password-raw” property.
Flags: Read / Write
Allowed values: <= 7
@@ -3691,7 +3691,7 @@ property are specified,The
-“phase1-fast-provisioning”property“phase1-fast-provisioning” gchar *+“phase1-fast-provisioning” gchar *Enables or disables in-line provisioning of EAP-FAST credentials when FAST is specified as the EAP method in the “eap” property. Recognized values are "0" (disabled), "1" (allow unauthenticated @@ -3704,7 +3704,7 @@ wpa_supplicant documentation for more details.
The
-“phase1-peaplabel”property“phase1-peaplabel” gchar *+“phase1-peaplabel” gchar *Forces use of the new PEAP label during key derivation. Some RADIUS servers may require forcing the new PEAP label to interoperate with PEAPv1. Set to "1" to force use of the new PEAP label. See the @@ -3715,7 +3715,7 @@ wpa_supplicant documentation for more details.
The
-“phase1-peapver”property“phase1-peapver” gchar *+“phase1-peapver” gchar *Forces which PEAP version is used when PEAP is set as the EAP method in the “eap” property. When unset, the version reported by the server will be used. Sometimes when using older RADIUS servers, it @@ -3738,7 +3738,7 @@ server certificate's altSubjectName is performed.
The
-“phase2-auth”property“phase2-auth” gchar *+“phase2-auth” gchar *Specifies the allowed "phase 2" inner non-EAP authentication methods when an EAP method that uses an inner TLS tunnel is specified in the “eap” property. Recognized non-EAP "phase 2" methods are @@ -3751,7 +3751,7 @@ authentication; see the wpa_supplicant documentation for more details.
The
-“phase2-autheap”property“phase2-autheap” gchar *+“phase2-autheap” gchar *Specifies the allowed "phase 2" inner EAP-based authentication methods when an EAP method that uses an inner TLS tunnel is specified in the “eap” property. Recognized EAP-based "phase 2" methods are @@ -3783,7 +3783,7 @@ but this allows man-in-the-middle attacks and is NOT recommended.
The
-“phase2-ca-path”property“phase2-ca-path” gchar *+“phase2-ca-path” gchar *UTF-8 encoded path to a directory containing PEM or DER formatted certificates to be added to the verification chain in addition to the certificate specified in the “phase2-ca-cert” property.
@@ -3837,7 +3837,7 @@ the password used to decode the PKCS#12 private key and certificate.
The
-“phase2-private-key-password”property“phase2-private-key-password” gchar *+“phase2-private-key-password” gchar *The password used to decrypt the "phase 2" private key specified in the “phase2-private-key” property when the private key either uses the path scheme, or is a PKCS#12 format key. Setting this property @@ -3850,7 +3850,7 @@ private key by the
The
-“phase2-private-key-password-flags”property“phase2-private-key-password-flags” guint+“phase2-private-key-password-flags” guintFlags indicating how to handle the “phase2-private-key-password” property.
Flags: Read / Write
@@ -3860,7 +3860,7 @@ private key by theThe
-“phase2-subject-match”property“phase2-subject-match” gchar *+“phase2-subject-match” gchar *Substring to be matched against the subject of the certificate presented by the authentication server during the inner "phase 2" authentication. When unset, no verification of the authentication server @@ -3871,7 +3871,7 @@ certificate's subject is performed.
The
-“pin”property“pin” gchar *+“pin” gchar *PIN used for EAP authentication methods.
Flags: Read / Write
Default value: NULL
@@ -3879,7 +3879,7 @@ certificate's subject is performed.
The
-“pin-flags”property“pin-flags” guint+“pin-flags” guintFlags indicating how to handle the “pin” property.
Flags: Read / Write
Allowed values: <= 7
@@ -3917,7 +3917,7 @@ private key data.
The
-“private-key-password”property“private-key-password” gchar *+“private-key-password” gchar *The password used to decrypt the private key specified in the “private-key” property when the private key either uses the path scheme, or if the private key is a PKCS#12 format key. Setting this @@ -3930,7 +3930,7 @@ the private key by the
The
-“private-key-password-flags”property“private-key-password-flags” guint+“private-key-password-flags” guintFlags indicating how to handle the “private-key-password” property.
Flags: Read / Write
@@ -3940,7 +3940,7 @@ property.
The
-“subject-match”property“subject-match” gchar *+“subject-match” gchar *Substring to be matched against the subject of the certificate presented by the authentication server. When unset, no verification of the authentication server certificate's subject is performed.
@@ -3950,8 +3950,8 @@ authentication server certificate's subject is performed.
The
-“system-ca-certs”property“system-ca-certs” gboolean-When
TRUE, overrides the “ca-path” and +“system-ca-certs” gboolean+When
TRUE, overrides the “ca-path” and “phase2-ca-path” properties using the system CA directory specified at configure time with the --system-ca-path switch. The certificates in this directory are added to the verification chain in diff --git a/docs/libnm-util/html/NMSettingAdsl.html b/docs/libnm-util/html/NMSettingAdsl.html index 4afa20f7..c17fc2c3 100644 --- a/docs/libnm-util/html/NMSettingAdsl.html +++ b/docs/libnm-util/html/NMSettingAdsl.html @@ -43,7 +43,7 @@-GQuark +GQuark nm_setting_adsl_error_quark () @@ -87,7 +87,7 @@ -guint32 +guint32 nm_setting_adsl_get_vpi () @@ -95,7 +95,7 @@ -guint32 +guint32 nm_setting_adsl_get_vci () @@ -123,40 +123,40 @@ -gchar * +gchar *encapsulation Read / Write -gchar * +gchar *password Read / Write - guint +guint password-flags Read / Write -gchar * +gchar *protocol Read / Write -gchar * +gchar *username Read / Write - guint +guint vci Read / Write - @@ -238,7 +238,7 @@guint +guint vpi Read / Write Object Hierarchy
GEnum ╰── NMSettingAdslError - GObject + GObject ╰── NMSetting ╰── NMSettingAdsl@@ -257,7 +257,7 @@ properties of ADSL connections.Functions
nm_setting_adsl_error_quark ()
-GQuark +GQuark nm_setting_adsl_error_quark (void);Registers an error quark for NMSettingAdsl if necessary.
@@ -379,7 +379,7 @@ nm_setting_adsl_get_encapsulation (nm_setting_adsl_get_vpi ()
-guint32 +guint32 nm_setting_adsl_get_vpi (NMSettingAdsl *setting);Parameters
@@ -404,7 +404,7 @@ nm_setting_adsl_get_vpi (nm_setting_adsl_get_vci ()
-guint32 +guint32 nm_setting_adsl_get_vci (NMSettingAdsl *setting);Parameters
@@ -580,7 +580,7 @@ requiredProperty Details
The
-“encapsulation”property“encapsulation” gchar *+“encapsulation” gchar *Encapsulation of ADSL connection. Can be "vcmux" or "llc".
Flags: Read / Write
Default value: NULL
@@ -588,7 +588,7 @@ required
The
-“password”property“password” gchar *+“password” gchar *Password used to authenticate with the ADSL service.
Flags: Read / Write
Default value: NULL
@@ -596,7 +596,7 @@ required
The
-“password-flags”property“password-flags” guint+“password-flags” guintFlags indicating how to handle the “password” property.
Flags: Read / Write
Allowed values: <= 7
@@ -605,7 +605,7 @@ required
The
-“protocol”property“protocol” gchar *+“protocol” gchar *ADSL connection protocol. Can be "pppoa", "pppoe" or "ipoatm".
Flags: Read / Write
Default value: NULL
@@ -613,7 +613,7 @@ required
The
-“username”property“username” gchar *+“username” gchar *Username used to authenticate with the ADSL service.
Flags: Read / Write
Default value: NULL
@@ -621,7 +621,7 @@ required
The
-“vci”property“vci” guint+“vci” guintVCI of ADSL connection
Flags: Read / Write
Allowed values: <= 65536
@@ -630,7 +630,7 @@ required
The
-“vpi”property“vpi” guint+“vpi” guintVPI of ADSL connection
Flags: Read / Write
Allowed values: <= 65536
diff --git a/docs/libnm-util/html/NMSettingBluetooth.html b/docs/libnm-util/html/NMSettingBluetooth.html index 2ec55fda..c01c919e 100644 --- a/docs/libnm-util/html/NMSettingBluetooth.html +++ b/docs/libnm-util/html/NMSettingBluetooth.html @@ -43,7 +43,7 @@-GQuark +GQuark nm_setting_bluetooth_error_quark () @@ -58,7 +58,7 @@ - const GByteArray * + const GByteArray * nm_setting_bluetooth_get_bdaddr () @@ -91,7 +91,7 @@ @@ -141,7 +141,7 @@ -gchar * +gchar *type Read / Write Object Hierarchy
GEnum ╰── NMSettingBluetoothError - GObject + GObject ╰── NMSetting ╰── NMSettingBluetooth@@ -162,7 +162,7 @@ Point (NAP) profiles.Functions
nm_setting_bluetooth_error_quark ()
-GQuark +GQuark nm_setting_bluetooth_error_quark (void);Registers an error quark for NMSettingBluetooth if necessary.
@@ -185,7 +185,7 @@ nm_setting_bluetooth_new (voidnm_setting_bluetooth_get_bdaddr ()
-const GByteArray * +const GByteArray * nm_setting_bluetooth_get_bdaddr (NMSettingBluetooth *setting);Gets the Bluetooth address of the remote device which this setting describes a connection to.
@@ -339,7 +339,7 @@ NAP (Network Access Point) protocol, which accepts connections via PANU.
The
-“type”property“type” gchar *+“type” gchar *Either "dun" for Dial-Up Networking connections or "panu" for Personal Area Networking connections to devices supporting the NAP profile.
Flags: Read / Write
diff --git a/docs/libnm-util/html/NMSettingBond.html b/docs/libnm-util/html/NMSettingBond.html index 6ef253ac..33693844 100644 --- a/docs/libnm-util/html/NMSettingBond.html +++ b/docs/libnm-util/html/NMSettingBond.html @@ -43,7 +43,7 @@-GQuark +GQuark nm_setting_bond_error_quark () @@ -66,7 +66,7 @@ -guint32 +guint32 nm_setting_bond_get_num_options () @@ -74,7 +74,7 @@ -gboolean +gboolean nm_setting_bond_get_option () @@ -89,7 +89,7 @@ -gboolean +gboolean nm_setting_bond_add_option () @@ -97,7 +97,7 @@ -gboolean +gboolean nm_setting_bond_remove_option () @@ -105,7 +105,7 @@ -gboolean +gboolean nm_setting_bond_validate_option () @@ -139,7 +139,7 @@ @@ -246,7 +246,7 @@ -gchar * +gchar *interface-name Read / Write Object Hierarchy
GEnum ╰── NMSettingBondError - GObject + GObject ╰── NMSetting ╰── NMSettingBond@@ -265,7 +265,7 @@ necessary for bond connections.Functions
nm_setting_bond_error_quark ()
-GQuark +GQuark nm_setting_bond_error_quark (void);Registers an error quark for NMSettingBond if necessary.
@@ -313,7 +313,7 @@ nm_setting_bond_get_interface_name (@@ -426,14 +426,14 @@ nm_setting_bond_get_option_by_name (nm_setting_bond_get_num_options ()
-guint32 +guint32 nm_setting_bond_get_num_options (NMSettingBond *setting);Returns the number of options that should be set for this bond when it is activated. This can be used to retrieve each option individually @@ -341,9 +341,9 @@ using
nm_setting_bond_get_option ()
-gboolean +gboolean nm_setting_bond_get_option (NMSettingBond *setting, -guint32 idx, +guint32 idx,const char **out_name,const char **out_value);Given an index, return the value of the bonding option at that index. Indexes @@ -388,8 +388,8 @@ option; this value is owned by the setting and should not be modified.
Returns
-
TRUEon success if the index was valid and an option was found, -FALSEif the index was invalid (ie, greater than the number of options +
TRUEon success if the index was valid and an option was found, +FALSEif the index was invalid (ie, greater than the number of options currently held by the setting)
nm_setting_bond_add_option ()
-gboolean +gboolean nm_setting_bond_add_option (@@ -472,14 +472,14 @@ that conflict with each other.NMSettingBond *setting,const char *name,const char *value);
nm_setting_bond_remove_option ()
-gboolean +gboolean nm_setting_bond_remove_option (NMSettingBond *setting,const char *name);Remove the bonding option referenced by
name@@ -509,14 +509,14 @@ list.Returns
-+
TRUEif the option was found and removed from the internal option -list,FALSEif it was not.
TRUEif the option was found and removed from the internal option +list,FALSEif it was not.
nm_setting_bond_validate_option ()
-gboolean +gboolean nm_setting_bond_validate_option (const char *name,const char *value);Checks whether
+ isname@@ -524,7 +524,7 @@ nm_setting_bond_validate_option (const. Ifnamevalue- isNULL, the function only validates the option name.NULL, the function only validates the option name.Parameters
@@ -549,10 +549,10 @@ the
nameReturns
-
TRUE, if thevalue++is not a valid option,
TRUE, if thevalueis valid for the given name. If thename-is not a valid option,FALSEwill be returned.FALSEwill be returned.Since: 0.9.10
@@ -579,7 +579,7 @@ nm_setting_bond_get_valid_options (@@ -790,7 +790,7 @@ requiredProperty Details
The
-“interface-name”property“interface-name” gchar *+“interface-name” gchar *The name of the virtual in-kernel bonding network interface
Flags: Read / Write
Default value: NULL
diff --git a/docs/libnm-util/html/NMSettingBridge.html b/docs/libnm-util/html/NMSettingBridge.html index 1dd0b4a6..592436ac 100644 --- a/docs/libnm-util/html/NMSettingBridge.html +++ b/docs/libnm-util/html/NMSettingBridge.html @@ -43,7 +43,7 @@-GQuark +GQuark nm_setting_bridge_error_quark () @@ -65,7 +65,7 @@ - const GByteArray * + const GByteArray * nm_setting_bridge_get_mac_address () @@ -73,7 +73,7 @@ -gboolean +gboolean nm_setting_bridge_get_stp () @@ -81,7 +81,7 @@ -guint16 +guint16 nm_setting_bridge_get_priority () @@ -89,7 +89,7 @@ -guint16 +guint16 nm_setting_bridge_get_forward_delay () @@ -97,7 +97,7 @@ -guint16 +guint16 nm_setting_bridge_get_hello_time () @@ -105,7 +105,7 @@ -guint16 +guint16 nm_setting_bridge_get_max_age () @@ -113,7 +113,7 @@ -guint32 +guint32 nm_setting_bridge_get_ageing_time () @@ -132,23 +132,23 @@ - guint +guint ageing-time Read / Write / Construct - guint +guint forward-delay Read / Write / Construct - guint +guint hello-time Read / Write / Construct @@ -159,17 +159,17 @@ -gchar * +gchar *interface-name Read / Write Read / Write - guint +guint max-age Read / Write / Construct - guint +guint priority Read / Write / Construct - @@ -235,7 +235,7 @@gboolean +gboolean stp Read / Write / Construct Object Hierarchy
GEnum ╰── NMSettingBridgeError - GObject + GObject ╰── NMSetting ╰── NMSettingBridge@@ -254,7 +254,7 @@ necessary for bridging connections.Functions
nm_setting_bridge_error_quark ()
-GQuark +GQuark nm_setting_bridge_error_quark (void);Registers an error quark for NMSettingBridge if necessary.
@@ -305,7 +305,7 @@ nm_setting_bridge_get_interface_name (nm_setting_bridge_get_mac_address ()
-const GByteArray * +const GByteArray * nm_setting_bridge_get_mac_address (NMSettingBridge *setting);Parameters
@@ -331,7 +331,7 @@ nm_setting_bridge_get_mac_address (nm_setting_bridge_get_stp ()
-gboolean +gboolean nm_setting_bridge_get_stp (NMSettingBridge *setting);Parameters
@@ -357,7 +357,7 @@ nm_setting_bridge_get_stp (nm_setting_bridge_get_priority ()
-guint16 +guint16 nm_setting_bridge_get_priority (NMSettingBridge *setting);Parameters
@@ -383,7 +383,7 @@ nm_setting_bridge_get_priority (nm_setting_bridge_get_forward_delay ()
-guint16 +guint16 nm_setting_bridge_get_forward_delay (NMSettingBridge *setting);Parameters
@@ -409,7 +409,7 @@ nm_setting_bridge_get_forward_delay (nm_setting_bridge_get_hello_time ()
-guint16 +guint16 nm_setting_bridge_get_hello_time (NMSettingBridge *setting);Parameters
@@ -435,7 +435,7 @@ nm_setting_bridge_get_hello_time (nm_setting_bridge_get_max_age ()
-guint16 +guint16 nm_setting_bridge_get_max_age (NMSettingBridge *setting);Parameters
@@ -461,7 +461,7 @@ nm_setting_bridge_get_max_age (nm_setting_bridge_get_ageing_time ()
-guint32 +guint32 nm_setting_bridge_get_ageing_time (NMSettingBridge *setting);Parameters
@@ -590,7 +590,7 @@ requiredProperty Details
The
-“ageing-time”property“ageing-time” guint+“ageing-time” guintThe Ethernet MAC address aging time, in seconds.
Flags: Read / Write / Construct
Allowed values: <= 1000000
@@ -600,7 +600,7 @@ required
The
-“forward-delay”property“forward-delay” guint+“forward-delay” guintThe Spanning Tree Protocol (STP) forwarding delay, in seconds.
Flags: Read / Write / Construct
Allowed values: <= 30
@@ -610,7 +610,7 @@ required
The
-“hello-time”property“hello-time” guint+“hello-time” guintThe Spanning Tree Protocol (STP) hello time, in seconds.
Flags: Read / Write / Construct
Allowed values: <= 10
@@ -620,7 +620,7 @@ required
The
-“interface-name”property“interface-name” gchar *+“interface-name” gchar *The name of the virtual in-kernel bridging network interface
Flags: Read / Write
Default value: NULL
@@ -639,7 +639,7 @@ NetworkManager created) bridge, this MAC address must match.
The
-“max-age”property“max-age” guint+“max-age” guintThe Spanning Tree Protocol (STP) maximum message age, in seconds.
Flags: Read / Write / Construct
Allowed values: <= 40
@@ -649,7 +649,7 @@ NetworkManager created) bridge, this MAC address must match.
@@ -944,7 +944,7 @@ connection.The
-“priority”property“priority” guint+“priority” guintSets the Spanning Tree Protocol (STP) priority for this bridge. Lower values are "better"; the lowest priority bridge will be elected the root bridge.
@@ -661,7 +661,7 @@ bridge.
The
-“stp”property“stp” gboolean+“stp” gbooleanControls whether Spanning Tree Protocol (STP) is enabled for this bridge.
Flags: Read / Write / Construct
Default value: TRUE
diff --git a/docs/libnm-util/html/NMSettingBridgePort.html b/docs/libnm-util/html/NMSettingBridgePort.html index b8630252..a4ec94e7 100644 --- a/docs/libnm-util/html/NMSettingBridgePort.html +++ b/docs/libnm-util/html/NMSettingBridgePort.html @@ -43,7 +43,7 @@-GQuark +GQuark nm_setting_bridge_port_error_quark () @@ -59,7 +59,7 @@ -guint16 +guint16 nm_setting_bridge_port_get_priority () @@ -67,7 +67,7 @@ -guint16 +guint16 nm_setting_bridge_port_get_path_cost () @@ -75,7 +75,7 @@ -gboolean +gboolean nm_setting_bridge_port_get_hairpin_mode () @@ -94,17 +94,17 @@ - gboolean +gboolean hairpin-mode Read / Write - guint +guint path-cost Read / Write / Construct - @@ -150,7 +150,7 @@guint +guint priority Read / Write / Construct Object Hierarchy
GEnum ╰── NMSettingBridgePortError - GObject + GObject ╰── NMSetting ╰── NMSettingBridgePort@@ -169,7 +169,7 @@ optional properties that apply to bridge ports.Functions
@@ -910,7 +910,7 @@ be a username. Seenm_setting_bridge_port_error_quark ()
-GQuark +GQuark nm_setting_bridge_port_error_quark (void);Registers an error quark for NMSettingBridgePort if necessary.
@@ -194,7 +194,7 @@ nm_setting_bridge_port_new (void<
nm_setting_bridge_port_get_priority ()
-guint16 +guint16 nm_setting_bridge_port_get_priority (NMSettingBridgePort *setting);Parameters
@@ -220,7 +220,7 @@ nm_setting_bridge_port_get_priority (nm_setting_bridge_port_get_path_cost ()
-guint16 +guint16 nm_setting_bridge_port_get_path_cost (NMSettingBridgePort *setting);Parameters
@@ -246,7 +246,7 @@ nm_setting_bridge_port_get_path_cost (nm_setting_bridge_port_get_hairpin_mode ()
-gboolean +gboolean nm_setting_bridge_port_get_hairpin_mode (NMSettingBridgePort *setting);@@ -346,7 +346,7 @@ is requiredProperty Details
The
-“hairpin-mode”property“hairpin-mode” gboolean+“hairpin-mode” gbooleanEnables or disabled "hairpin mode" for the port, which allows frames to be sent back out through the port the frame was received on.
Flags: Read / Write
@@ -356,7 +356,7 @@ be sent back out through the port the frame was received on.
The
-“path-cost”property“path-cost” guint+“path-cost” guintThe Spanning Tree Protocol (STP) port cost for destinations via this port.
Flags: Read / Write / Construct
@@ -367,7 +367,7 @@ port.
The
-“priority”property“priority” guint+“priority” guintThe Spanning Tree Protocol (STP) priority of this bridge port.
Flags: Read / Write / Construct
Allowed values: <= 63
diff --git a/docs/libnm-util/html/NMSettingCdma.html b/docs/libnm-util/html/NMSettingCdma.html index f9ea1c93..53ef98aa 100644 --- a/docs/libnm-util/html/NMSettingCdma.html +++ b/docs/libnm-util/html/NMSettingCdma.html @@ -43,7 +43,7 @@-GQuark +GQuark nm_setting_cdma_error_quark () @@ -100,24 +100,24 @@ -gchar * +gchar *number Read / Write -gchar * +gchar *password Read / Write - guint +guint password-flags Read / Write @@ -167,7 +167,7 @@ -gchar * +gchar *username Read / Write Object Hierarchy
GEnum ╰── NMSettingCdmaError - GObject + GObject ╰── NMSetting ╰── NMSettingCdma@@ -187,7 +187,7 @@ networks, including those using CDMA2000/EVDO technology.Functions
@@ -823,8 +823,8 @@ the "user" permission type is supported, andnm_setting_cdma_error_quark ()
-GQuark +GQuark nm_setting_cdma_error_quark (void);Registers an error quark for NMSettingCdma if necessary.
@@ -395,7 +395,7 @@ is missing in the connectionProperty Details
The
-“number”property“number” gchar *+“number” gchar *The number to dial to establish the connection to the CDMA-based mobile broadband network, if any. If not specified, the default number (777) is used when required.
@@ -405,7 +405,7 @@ is used when required.
The
-“password”property“password” gchar *+“password” gchar *The password used to authenticate with the network, if required. Many providers do not require a password, or accept any password. But if a password is required, it is specified here.
@@ -415,7 +415,7 @@ password is required, it is specified here.
@@ -743,7 +743,7 @@ nm_setting_connection_get_zone (The
-“password-flags”property“password-flags” guint+“password-flags” guintFlags indicating how to handle the “password” property.
Flags: Read / Write
Allowed values: <= 7
@@ -424,7 +424,7 @@ password is required, it is specified here.
The
-“username”property“username” gchar *+“username” gchar *The username used to authenticate with the network, if required. Many providers do not require a username, or accept any username. But if a username is required, it is specified here.
diff --git a/docs/libnm-util/html/NMSettingConnection.html b/docs/libnm-util/html/NMSettingConnection.html index e1bc30de..3756cc10 100644 --- a/docs/libnm-util/html/NMSettingConnection.html +++ b/docs/libnm-util/html/NMSettingConnection.html @@ -43,7 +43,7 @@-GQuark +GQuark nm_setting_connection_error_quark () @@ -87,7 +87,7 @@ -gboolean +gboolean nm_setting_connection_get_autoconnect () @@ -95,7 +95,7 @@ -guint64 +guint64 nm_setting_connection_get_timestamp () @@ -103,7 +103,7 @@ -gboolean +gboolean nm_setting_connection_get_read_only () @@ -111,7 +111,7 @@ -guint32 +guint32 nm_setting_connection_get_num_permissions () @@ -119,7 +119,7 @@ -gboolean +gboolean nm_setting_connection_get_permission () @@ -134,7 +134,7 @@ -gboolean +gboolean nm_setting_connection_permissions_user_allowed () @@ -142,7 +142,7 @@ -gboolean +gboolean nm_setting_connection_add_permission () @@ -158,7 +158,7 @@ -gboolean +gboolean nm_setting_connection_remove_permission_by_value () @@ -173,7 +173,7 @@ -gboolean +gboolean nm_setting_connection_is_slave_type () @@ -188,7 +188,7 @@ -guint32 +guint32 nm_setting_connection_get_num_secondaries () @@ -203,7 +203,7 @@ -gboolean +gboolean nm_setting_connection_add_secondary () @@ -219,7 +219,7 @@ -gboolean +gboolean nm_setting_connection_remove_secondary_by_value () @@ -227,7 +227,7 @@ -guint32 +guint32 nm_setting_connection_get_gateway_ping_timeout () @@ -246,30 +246,30 @@ - gboolean +gboolean autoconnect Read / Write / Construct - guint +guint gateway-ping-timeout Read / Write / Construct -gchar * +gchar *id Read / Write -gchar * +gchar *interface-name Read / Write @@ -280,7 +280,7 @@ -gchar * +gchar *master Read / Write Read / Write - @@ -292,30 +292,30 @@gboolean +gboolean read-only Read / Write / Construct -gchar * +gchar *slave-type Read / Write - guint64 +guint64 timestamp Read / Write / Construct -gchar * +gchar *type Read / Write -gchar * +gchar *uuid Read / Write @@ -405,7 +405,7 @@ -gchar * +gchar *zone Read / Write / Construct Object Hierarchy
GEnum ╰── NMSettingConnectionError - GObject + GObject ╰── NMSetting ╰── NMSettingConnection@@ -426,7 +426,7 @@ aFunctions
@@ -710,7 +710,7 @@ of this setting.nm_setting_connection_error_quark ()
-GQuark +GQuark nm_setting_connection_error_quark (void);Registers an error quark for NMSettingConnection if necessary.
@@ -555,7 +555,7 @@ nm_setting_connection_get_connection_type
nm_setting_connection_get_autoconnect ()
-gboolean +gboolean nm_setting_connection_get_autoconnect (NMSettingConnection *setting);Returns the “autoconnect” property of the connection.
@@ -581,7 +581,7 @@ nm_setting_connection_get_autoconnect (nm_setting_connection_get_timestamp ()
-guint64 +guint64 nm_setting_connection_get_timestamp (NMSettingConnection *setting);Returns the “timestamp” property of the connection.
@@ -607,7 +607,7 @@ nm_setting_connection_get_timestamp (nm_setting_connection_get_read_only ()
-gboolean +gboolean nm_setting_connection_get_read_only (NMSettingConnection *setting);Returns the “read-only” property of the connection.
nm_setting_connection_get_num_permissions ()
-guint32 +guint32 nm_setting_connection_get_num_permissions (NMSettingConnection *setting);Returns the number of entires in the “permissions” @@ -661,9 +661,9 @@ property of this setting.
nm_setting_connection_get_permission ()
-gboolean +gboolean nm_setting_connection_get_permission (@@ -702,7 +702,7 @@ of this setting.NMSettingConnection *setting, -guint32 idx, +guint32 idx,const char **out_ptype,const char **out_pitem,const char **out_detail);- out_detail
+ on return, the permission detail (at this time, always
NULL)on return, the permission detail (at this time, always
NULL)nm_setting_connection_permissions_user_allowed ()
-gboolean +gboolean nm_setting_connection_permissions_user_allowed (@@ -772,14 +772,14 @@ nm_setting_connection_permissions_user_allowedNMSettingConnection *setting,const char *uname);
nm_setting_connection_add_permission ()
-gboolean +gboolean nm_setting_connection_add_permission (NMSettingConnection *setting,const char *ptype,const char *pitem, @@ -815,7 +815,7 @@ the "user" permission type is supported, andpitem- detail
+ unused at this time; must be
NULL.unused at this time; must be
NULL.[allow-none] pitemReturns
-
TRUEif the permission was unique and was successfully added to the -list,FALSEifptype+@@ -836,7 +836,7 @@ present in the list
TRUEif the permission was unique and was successfully added to the +list,FALSEifptypeorpitemwas invalid or it the permission was already present in the listvoid nm_setting_connection_remove_permission (+NMSettingConnection *setting, -guint32 idx);guint32 idx);Removes the permission at index
idxfrom the connection.@@ -865,7 +865,7 @@ nm_setting_connection_remove_permission
nm_setting_connection_remove_permission_by_value ()
-gboolean +gboolean nm_setting_connection_remove_permission_by_value (NMSettingConnection *setting,const char *ptype, @@ -902,7 +902,7 @@ be a username. Seedetail
-+ unused at this time; must be
NULL.unused at this time; must be
NULL.[allow-none] Returns
-+
TRUEif the permission was found and removed;FALSEif it was not.
TRUEif the permission was found and removed;FALSEif it was not.Since: 0.9.10
@@ -1006,7 +1006,7 @@ nm_setting_connection_get_slave_type (nm_setting_connection_is_slave_type ()
-gboolean +gboolean nm_setting_connection_is_slave_type (NMSettingConnection *setting,const char *type);@@ -973,7 +973,7 @@ againstsettingnm_setting_connection_get_num_secondaries ()
-guint32 +guint32 nm_setting_connection_get_num_secondaries (NMSettingConnection *setting);@@ -1035,7 +1035,7 @@ nm_setting_connection_get_num_secondariesnm_setting_connection_get_secondary ()
const char * nm_setting_connection_get_secondary (+NMSettingConnection *setting, -guint32 idx);guint32 idx);Parameters
@@ -1068,7 +1068,7 @@ nm_setting_connection_get_secondary (
nm_setting_connection_add_secondary ()
-gboolean +gboolean nm_setting_connection_add_secondary (NMSettingConnection *setting,const char *sec_uuid);Adds a new secondary connetion UUID to the setting.
@@ -1096,7 +1096,7 @@ nm_setting_connection_add_secondary (Returns
-
TRUEif the secondary connection UUID was added;FALSEif the UUID +
TRUEif the secondary connection UUID was added;FALSEif the UUID was already presentSince: 0.9.8
@@ -1107,7 +1107,7 @@ was already presentvoid nm_setting_connection_remove_secondary (+NMSettingConnection *setting, -guint32 idx);guint32 idx);Removes the secondary coonnection UUID at index
idx.@@ -1137,7 +1137,7 @@ nm_setting_connection_remove_secondary
nm_setting_connection_remove_secondary_by_value ()
-gboolean +gboolean nm_setting_connection_remove_secondary_by_value (@@ -1167,14 +1167,14 @@ nm_setting_connection_remove_secondary_by_valueNMSettingConnection *setting,const char *sec_uuid);Returns
-+
TRUEif the secondary connection UUID was found and removed;FALSEif it was not.
TRUEif the secondary connection UUID was found and removed;FALSEif it was not.Since: 0.9.10
nm_setting_connection_get_gateway_ping_timeout ()
-guint32 +guint32 nm_setting_connection_get_gateway_ping_timeout (NMSettingConnection *setting);@@ -1361,10 +1361,10 @@ It should only be accessed through the functions described below.Property Details
The
-“autoconnect”property“autoconnect” gboolean+“autoconnect” gbooleanWhether or not the connection should be automatically connected by NetworkManager when the resources for the connection are available. -
TRUEto automatically activate the connection,FALSEto require manual +TRUEto automatically activate the connection,FALSEto require manual intervention to activate the connection.Flags: Read / Write / Construct
Default value: TRUE
@@ -1372,7 +1372,7 @@ intervention to activate the connection.
The
-“gateway-ping-timeout”property“gateway-ping-timeout” guint+“gateway-ping-timeout” guintIf greater than zero, delay success of IP addressing until either the timeout is reached, or an IP gateway replies to a ping.
Flags: Read / Write / Construct
@@ -1383,7 +1383,7 @@ timeout is reached, or an IP gateway replies to a ping.
The
-“id”property“id” gchar *+“id” gchar *A human readable unique identifier for the connection, like "Work Wi-Fi" or "T-Mobile 3G".
Flags: Read / Write
@@ -1392,7 +1392,7 @@ or "T-Mobile 3G".
The
-“interface-name”property“interface-name” gchar *+“interface-name” gchar *The name of the network interface this connection is bound to. If not set, then the connection can be attached to any interface of the appropriate type (subject to restrictions imposed by other settings).
@@ -1409,7 +1409,7 @@ connection may be applied to the wrong interface.
The
-“master”property“master” gchar *+“master” gchar *Interface name of the master device or UUID of the master connection.
Flags: Read / Write
Default value: NULL
@@ -1419,7 +1419,7 @@ connection may be applied to the wrong interface.The
“permissions”property“permissions” GSList_gchararray_ *An array of strings defining what access a given user has to this -connection. If this is
@@ -1433,9 +1433,9 @@ use. All of [type], [id], and [reserved] must be valid UTF-8.NULLor empty, all users are allowed to access +connection. If this isNULLor empty, all users are allowed to access this connection. Otherwise a user is allowed to access this connection if and only if they are in this list. Each entry is of the form "[type]:[id]:[reserved]"; for example, "user:dcbw:blah".
The
-“read-only”property“read-only” gboolean-
FALSEif the connection can be modified using the provided settings -service's D-Bus interface with the right privileges, orTRUEif the +“read-only” gboolean+
FALSEif the connection can be modified using the provided settings +service's D-Bus interface with the right privileges, orTRUEif the connection is read-only and cannot be modified.Flags: Read / Write / Construct
Default value: FALSE
@@ -1453,9 +1453,9 @@ supported.
The
-“slave-type”property“slave-type” gchar *+“slave-type” gchar *Setting name of the device type of this slave's master connection (eg, -
NM_SETTING_BOND_SETTING_NAME), orNULLif this connection is not a +NM_SETTING_BOND_SETTING_NAME), orNULLif this connection is not a slave.Flags: Read / Write
Default value: NULL
@@ -1463,7 +1463,7 @@ slave.
The
-“timestamp”property“timestamp” guint64+“timestamp” guint64The time, in seconds since the Unix Epoch, that the connection was last _successfully_ fully activated.
NetworkManager updates the connection timestamp periodically when the @@ -1476,7 +1476,7 @@ property will not be preserved).
The
-“type”property“type” gchar *+“type” gchar *Base type of the connection. For hardware-dependent connections, should contain the setting name of the hardware-type specific setting (ie, "802-3-ethernet" or "802-11-wireless" or "bluetooth", etc), and for @@ -1488,7 +1488,7 @@ the setting name of that setting type (ie, "vpn" or "bridge", etc).
The
-“uuid”property“uuid” gchar *+“uuid” gchar *A universally unique identifier for the connection, for example generated with libuuid. It should be assigned when the connection is created, and never changed as long as the connection still applies to the same @@ -1506,9 +1506,9 @@ be generated by
The
-“zone”property“zone” gchar *+“zone” gchar *The trust level of a the connection. Free form case-insensitive string -(for example "Home", "Work", "Public").
NULLor unspecified zone means +(for example "Home", "Work", "Public").NULLor unspecified zone means the connection will be placed in the default zone as defined by the firewall.Flags: Read / Write / Construct
diff --git a/docs/libnm-util/html/NMSettingDcb.html b/docs/libnm-util/html/NMSettingDcb.html index 896cdfcf..321a6329 100644 --- a/docs/libnm-util/html/NMSettingDcb.html +++ b/docs/libnm-util/html/NMSettingDcb.html @@ -43,7 +43,7 @@-GQuark +GQuark nm_setting_dcb_error_quark () @@ -67,7 +67,7 @@ -gint +gint nm_setting_dcb_get_app_fcoe_priority () @@ -90,7 +90,7 @@ -gint +gint nm_setting_dcb_get_app_iscsi_priority () @@ -106,7 +106,7 @@ -gint +gint nm_setting_dcb_get_app_fip_priority () @@ -122,7 +122,7 @@ -gboolean +gboolean nm_setting_dcb_get_priority_flow_control () @@ -146,7 +146,7 @@ -guint +guint nm_setting_dcb_get_priority_group_id () @@ -162,7 +162,7 @@ -guint +guint nm_setting_dcb_get_priority_group_bandwidth () @@ -178,7 +178,7 @@ -guint +guint nm_setting_dcb_get_priority_bandwidth () @@ -194,7 +194,7 @@ -gboolean +gboolean nm_setting_dcb_get_priority_strict_bandwidth () @@ -210,7 +210,7 @@ -guint +guint nm_setting_dcb_get_priority_traffic_class () @@ -237,38 +237,38 @@ - guint +guint app-fcoe-flags Read / Write -gchar * +gchar *app-fcoe-mode Read / Write / Construct - gint +gint app-fcoe-priority Read / Write / Construct - guint +guint app-fip-flags Read / Write - gint +gint app-fip-priority Read / Write / Construct - guint +guint app-iscsi-flags Read / Write - @@ -285,7 +285,7 @@gint +gint app-iscsi-priority Read / Write / Construct Read / Write - @@ -296,7 +296,7 @@guint +guint priority-flow-control-flags Read / Write Read / Write - @@ -421,7 +421,7 @@guint +guint priority-group-flags Read / Write GEnum ├── NMSettingDcbError ╰── NMSettingDcbFlags - GObject + GObject ╰── NMSetting ╰── NMSettingDcb@@ -443,7 +443,7 @@ of storage technologies like Fibre Channel over Ethernet (FCoE) and iSCSI.Functions
nm_setting_dcb_error_quark ()
-GQuark +GQuark nm_setting_dcb_error_quark (void);Registers an error quark for NMSettingDcb if necessary.
@@ -494,7 +494,7 @@ nm_setting_dcb_get_app_fcoe_flags (nm_setting_dcb_get_app_fcoe_priority ()
-gint +gint nm_setting_dcb_get_app_fcoe_priority (NMSettingDcb *setting);Parameters
@@ -572,7 +572,7 @@ nm_setting_dcb_get_app_iscsi_flags (nm_setting_dcb_get_app_iscsi_priority ()
-gint +gint nm_setting_dcb_get_app_iscsi_priority (NMSettingDcb *setting);Parameters
@@ -624,7 +624,7 @@ nm_setting_dcb_get_app_fip_flags (nm_setting_dcb_get_app_fip_priority ()
-gint +gint nm_setting_dcb_get_app_fip_priority (NMSettingDcb *setting);Parameters
@@ -677,10 +677,10 @@ nm_setting_dcb_get_priority_flow_control_flags
nm_setting_dcb_get_priority_flow_control ()
-gboolean +gboolean nm_setting_dcb_get_priority_flow_control (+NMSettingDcb *setting, -guint user_priority);guint user_priority);Parameters
@@ -705,9 +705,9 @@ nm_setting_dcb_get_priority_flow_control
Returns
-
TRUEif flow control is enabled for the givenuser_priority++
TRUEif flow control is enabled for the givenuser_priority, -FALSEif not enabledFALSEif not enabledSince: 0.9.10
@@ -717,8 +717,8 @@ nm_setting_dcb_get_priority_flow_controlvoid nm_setting_dcb_set_priority_flow_control (+NMSettingDcb *setting, -guint user_priority, -gboolean enabled);guint user_priority, +gboolean enabled);These values are only valid when “priority-flow-control” includes the
NM_SETTING_DCB_FLAG_ENABLEflag.@@ -742,7 +742,7 @@ the@@ -780,9 +780,9 @@ nm_setting_dcb_get_priority_group_flags - enabled
+
TRUEto enable flow control for this priority,FALSEto disable it
TRUEto enable flow control for this priority,FALSEto disable it
nm_setting_dcb_get_priority_group_id ()
-guint +guint nm_setting_dcb_get_priority_group_id (+NMSettingDcb *setting, -guint user_priority);guint user_priority);Parameters
@@ -819,8 +819,8 @@ only valid when
nm_setting_dcb_set_priority_group_id ()
void nm_setting_dcb_set_priority_group_id (+NMSettingDcb *setting, -guint user_priority, -guint group_id);guint user_priority, +guint group_id);These values are only valid when “priority-group-flags” includes the
NM_SETTING_DCB_FLAG_ENABLEflag.@@ -857,10 +857,10 @@ unrestricted group.
nm_setting_dcb_get_priority_group_bandwidth ()
-guint +guint nm_setting_dcb_get_priority_group_bandwidth (+NMSettingDcb *setting, -guint group_id);guint group_id);Parameters
@@ -898,8 +898,8 @@ only valid when void nm_setting_dcb_set_priority_group_bandwidth (
NMSettingDcb *setting, -guint group_id, -guint bandwidth_percent); +guint group_id, +guint bandwidth_percent);These values are only valid when “priority-group-flags” includes the
NM_SETTING_DCB_FLAG_ENABLEflag.@@ -935,9 +935,9 @@ to
nm_setting_dcb_get_priority_bandwidth ()
-guint +guint nm_setting_dcb_get_priority_bandwidth (+NMSettingDcb *setting, -guint user_priority);guint user_priority);Parameters
@@ -974,8 +974,8 @@ These values are only valid when
nm_setting_dcb_set_priority_bandwidth ()
void nm_setting_dcb_set_priority_bandwidth (+NMSettingDcb *setting, -guint user_priority, -guint bandwidth_percent);guint user_priority, +guint bandwidth_percent);These values are only valid when “priority-group-flags” includes the
NM_SETTING_DCB_FLAG_ENABLEflag.@@ -1012,10 +1012,10 @@ allowed to use within its priority group
nm_setting_dcb_get_priority_strict_bandwidth ()
-gboolean +gboolean nm_setting_dcb_get_priority_strict_bandwidth (+NMSettingDcb *setting, -guint user_priority);guint user_priority);Parameters
@@ -1040,9 +1040,9 @@ nm_setting_dcb_get_priority_strict_bandwidth
Returns
-
TRUEifuser_priority+
TRUEifuser_prioritymay use all of the bandwidth allocated to its -assigned group, orFALSEif not. These values are only valid when +assigned group, orFALSEif not. These values are only valid when “priority-group-flags” includes theNM_SETTING_DCB_FLAG_ENABLEflag.Since: 0.9.10
@@ -1053,8 +1053,8 @@ assigned group, or void nm_setting_dcb_set_priority_strict_bandwidth (NMSettingDcb *setting, -guint user_priority, -gboolean strict); +guint user_priority, +gboolean strict);These values are only valid when “priority-group-flags” includes the
NM_SETTING_DCB_FLAG_ENABLEflag.@@ -1078,9 +1078,9 @@ the@@ -1091,10 +1091,10 @@ its priority group, or - strict
TRUEto allowuser_priority++its priority group, or
TRUEto allowuser_priorityto use all the bandwidth allocated to -its priority group, orFALSEif notFALSEif notnm_setting_dcb_get_priority_traffic_class ()
-guint +guint nm_setting_dcb_get_priority_traffic_class (+NMSettingDcb *setting, -guint user_priority);guint user_priority);Parameters
@@ -1132,8 +1132,8 @@ valid when void nm_setting_dcb_set_priority_traffic_class (
NMSettingDcb *setting, -guint user_priority, -guint traffic_class); +guint user_priority, +guint traffic_class);@@ -1345,7 +1345,7 @@ peer configuration advertisementsProperty Details
The
-“app-fcoe-flags”property“app-fcoe-flags” guint+“app-fcoe-flags” guintSpecifies the NMSettingDcbFlags for the DCB FCoE application. Flags may be any combination of
@@ -1357,7 +1357,7 @@ be any combination ofNM_SETTING_DCB_FLAG_ENABLE,NM_SETTING_DCB_FLAG_ADVERTISE, andNM_SETTING_DCB_FLAG_WILLING.The
-“app-fcoe-mode”property“app-fcoe-mode” gchar *+“app-fcoe-mode” gchar *The FCoE controller mode; either
NM_SETTING_DCB_FCOE_MODE_FABRIC(default) orNM_SETTING_DCB_FCOE_MODE_VN2VN.Flags: Read / Write / Construct
@@ -1367,7 +1367,7 @@ be any combination ofThe
-“app-fcoe-priority”property“app-fcoe-priority” gint+“app-fcoe-priority” gintThe highest User Priority (0 - 7) which FCoE frames should use, or -1 for default priority. Only used when the “app-fcoe-flags” property includes the
@@ -1379,7 +1379,7 @@ property includes theNM_SETTING_DCB_FLAG_ENABLEflag.The
-“app-fip-flags”property“app-fip-flags” guint+“app-fip-flags” guintSpecifies the NMSettingDcbFlags for the DCB FIP application. Flags may be any combination of
@@ -1391,7 +1391,7 @@ be any combination ofNM_SETTING_DCB_FLAG_ENABLE,NM_SETTING_DCB_FLAG_ADVERTISE, andNM_SETTING_DCB_FLAG_WILLING.The
-“app-fip-priority”property“app-fip-priority” gint+“app-fip-priority” gintThe highest User Priority (0 - 7) which FIP frames should use, or -1 for default priority. Only used when the “app-fip-flags” property includes the
@@ -1403,7 +1403,7 @@ property includes theNM_SETTING_DCB_FLAG_ENABLEflag.The
-“app-iscsi-flags”property“app-iscsi-flags” guint+“app-iscsi-flags” guintSpecifies the NMSettingDcbFlags for the DCB iSCSI application. Flags may be any combination of
@@ -1415,7 +1415,7 @@ may be any combination ofNM_SETTING_DCB_FLAG_ENABLE,NM_SETTING_DCB_FLAG_ADVERTISE, andNM_SETTING_DCB_FLAG_WILLING.The
-“app-iscsi-priority”property“app-iscsi-priority” gint+“app-iscsi-priority” gintThe highest User Priority (0 - 7) which iSCSI frames should use, or -1 for default priority. Only used when the “app-iscsi-flags” property includes the
@@ -1450,7 +1450,7 @@ transmit pause) and 1 (transmit pause).NM_SETTING_DCB_FLAG_ENABLEflag.
The
-“priority-flow-control-flags”property“priority-flow-control-flags” guint+“priority-flow-control-flags” guintSpecifies the NMSettingDcbFlags for DCB Priority Flow Control (PFC). Flags may be any combination of
@@ -1473,7 +1473,7 @@ sum of all values must total 100 percent.NM_SETTING_DCB_FLAG_ENABLE,NM_SETTING_DCB_FLAG_ADVERTISE, andNM_SETTING_DCB_FLAG_WILLING.
The
-“priority-group-flags”property“priority-group-flags” guint+“priority-group-flags” guintSpecifies the NMSettingDcbFlags for DCB Priority Groups. Flags may be any combination of
diff --git a/docs/libnm-util/html/NMSettingGeneric.html b/docs/libnm-util/html/NMSettingGeneric.html index 3c50a5ac..56fa81cf 100644 --- a/docs/libnm-util/html/NMSettingGeneric.html +++ b/docs/libnm-util/html/NMSettingGeneric.html @@ -42,7 +42,7 @@NM_SETTING_DCB_FLAG_ENABLE,NM_SETTING_DCB_FLAG_ADVERTISE, andNM_SETTING_DCB_FLAG_WILLING.-GQuark +GQuark nm_setting_generic_error_quark () @@ -86,7 +86,7 @@ Object Hierarchy
GEnum ╰── NMSettingGenericError - GObject + GObject ╰── NMSetting ╰── NMSettingGeneric@@ -108,7 +108,7 @@ the "connection type" setting onFunctions
nm_setting_generic_error_quark ()
-GQuark +GQuark nm_setting_generic_error_quark (void);Registers an error quark for NMSettingGeneric if necessary.
diff --git a/docs/libnm-util/html/NMSettingGsm.html b/docs/libnm-util/html/NMSettingGsm.html index 4a9398bd..b1631ac2 100644 --- a/docs/libnm-util/html/NMSettingGsm.html +++ b/docs/libnm-util/html/NMSettingGsm.html @@ -43,7 +43,7 @@-GQuark +GQuark nm_setting_gsm_error_quark () @@ -101,7 +101,7 @@ -gboolean +gboolean nm_setting_gsm_get_home_only () @@ -133,7 +133,7 @@ -guint32 +guint32 nm_setting_gsm_get_allowed_bands () @@ -152,63 +152,63 @@ - guint +guint allowed-bands Read / Write / Construct -gchar * +gchar *apn Read / Write - gboolean +gboolean home-only Read / Write -gchar * +gchar *network-id Read / Write - gint +gint network-type Read / Write / Construct -gchar * +gchar *number Read / Write -gchar * +gchar *password Read / Write - guint +guint password-flags Read / Write -gchar * +gchar *pin Read / Write - guint +guint pin-flags Read / Write @@ -300,7 +300,7 @@ ├── NMSettingGsmError ├── NMSettingGsmNetworkBand ╰── NMSettingGsmNetworkType - GObject + GObject ╰── NMSetting ╰── NMSettingGsm @@ -320,7 +320,7 @@ networks, including those using GPRS/EDGE and UMTS/HSPA technology. -gchar * +gchar *username Read / Write Functions
nm_setting_gsm_error_quark ()
-GQuark +GQuark nm_setting_gsm_error_quark (void);Registers an error quark for NMSettingGsm if necessary.
@@ -492,7 +492,7 @@ nm_setting_gsm_get_pin (nm_setting_gsm_get_home_only ()
-gboolean +gboolean nm_setting_gsm_get_home_only (NMSettingGsm *setting);Parameters
@@ -596,7 +596,7 @@ nm_setting_gsm_get_network_type (nm_setting_gsm_get_allowed_bands ()
-guint32 +guint32 nm_setting_gsm_get_allowed_bands (NMSettingGsm *setting);@@ -968,7 +968,7 @@ as the allowed frequency bands (
nm_setting_gsm_get_allowed_bandshas been deprecated since version 0.9.10 and should not be used in newly-written code.Property Details
The
-“allowed-bands”property“allowed-bands” guint+“allowed-bands” guintBitfield of allowed frequency bands. Note that not all devices allow frequency band control. Permitted values are those specified by NMSettingGsmNetworkBand.
@@ -984,7 +984,7 @@ talking to ModemManager directly.
The
-“apn”property“apn” gchar *+“apn” gchar *The GPRS Access Point Name specifying the APN used when establishing a data session with the GSM-based network. The APN often determines how the user will be billed for their network usage and whether the user has @@ -998,8 +998,8 @@ The APN may only be composed of the characters a-z, 0-9, ., and - per GSM
The
-“home-only”property“home-only” gboolean-When
TRUE, only connections to the home network will be allowed. +“home-only” gboolean+When
TRUE, only connections to the home network will be allowed. Connections to roaming networks will not be made.Flags: Read / Write
Default value: FALSE
@@ -1007,7 +1007,7 @@ Connections to roaming networks will not be made.
The
-“network-id”property“network-id” gchar *+“network-id” gchar *The Network ID (GSM LAI format, ie MCC-MNC) to force specific network registration. If the Network ID is specified, NetworkManager will attempt to force the device to register only on the specified network. @@ -1019,7 +1019,7 @@ roaming control of the device is not otherwise possible.
The
-“network-type”property“network-type” gint+“network-type” gintNetwork preference to force the device to only use specific network technologies. The permitted values are
NM_SETTING_GSM_NETWORK_TYPE_ANY,NM_SETTING_GSM_NETWORK_TYPE_UMTS_HSPA, @@ -1041,7 +1041,7 @@ by talking to ModemManager directly.
The
-“number”property“number” gchar *+“number” gchar *Number to dial when establishing a PPP data session with the GSM-based mobile broadband network. Many modems do not require PPP for connections to the mobile network and thus this property should be left blank, which @@ -1052,7 +1052,7 @@ allows NetworkManager to select the appropriate settings automatically.
The
-“password”property“password” gchar *+“password” gchar *The password used to authenticate with the network, if required. Many providers do not require a password, or accept any password. But if a password is required, it is specified here.
@@ -1062,7 +1062,7 @@ password is required, it is specified here.