From f9bfd1158b8d08d6a5ed3bb7cc1ba7a6455e5201 Mon Sep 17 00:00:00 2001 From: Michael Biebl Date: Sun, 1 Sep 2024 22:38:35 +0200 Subject: New upstream version 1.49.90 --- docs/libnm/html/NMVpnPluginInfo.html | 102 +++++++++++++++++------------------ 1 file changed, 51 insertions(+), 51 deletions(-) (limited to 'docs/libnm/html/NMVpnPluginInfo.html') diff --git a/docs/libnm/html/NMVpnPluginInfo.html b/docs/libnm/html/NMVpnPluginInfo.html index 4677e137..da3accc6 100644 --- a/docs/libnm/html/NMVpnPluginInfo.html +++ b/docs/libnm/html/NMVpnPluginInfo.html @@ -8,7 +8,7 @@ - + @@ -107,7 +107,7 @@ -gboolean +gboolean nm_vpn_plugin_info_supports_hints () @@ -115,7 +115,7 @@ -gboolean +gboolean nm_vpn_plugin_info_supports_multiple () @@ -137,7 +137,7 @@ -gboolean +gboolean nm_vpn_plugin_info_validate_filename () @@ -145,7 +145,7 @@ -GSList * +GSList * nm_vpn_plugin_info_list_load () @@ -153,7 +153,7 @@ -gboolean +gboolean nm_vpn_plugin_info_list_add () @@ -161,7 +161,7 @@ -gboolean +gboolean nm_vpn_plugin_info_list_remove () @@ -278,7 +278,7 @@

nm_vpn_plugin_info_new_from_file ()

NMVpnPluginInfo *
 nm_vpn_plugin_info_new_from_file (const char *filename,
-                                  GError **error);
+ GError **error);

Read the plugin info from file filename . Does not do any further verification on the file. You might want to check @@ -307,7 +307,7 @@ file permissions and ownership of the file.

Returns

-

NULL if there is any error or a newly created +

NULL if there is any error or a newly created NMVpnPluginInfo instance.

Since: 1.2

@@ -317,8 +317,8 @@ file permissions and ownership of the file.

nm_vpn_plugin_info_new_with_data ()

NMVpnPluginInfo *
 nm_vpn_plugin_info_new_with_data (const char *filename,
-                                  GKeyFile *keyfile,
-                                  GError **error);
+ GKeyFile *keyfile, + GError **error);

This constructor does not read any data from file but takes instead a keyfile argument.

@@ -397,7 +397,7 @@ must be present.

Returns

a newly created instance of plugin info -or NULL if no matching value was found.

+or NULL if no matching value was found.

[transfer full][nullable]

Since: 1.4

@@ -424,7 +424,7 @@ nm_vpn_plugin_info_get_name (

Returns

-

the name. Cannot be NULL.

+

the name. Cannot be NULL.

[transfer none]

Since: 1.2

@@ -451,7 +451,7 @@ nm_vpn_plugin_info_get_filename (

Returns

-

the filename. Can be NULL.

+

the filename. Can be NULL.

[transfer none]

Since: 1.2

@@ -478,7 +478,7 @@ nm_vpn_plugin_info_get_service (

Returns

-

the service. Cannot be NULL.

+

the service. Cannot be NULL.

[transfer none]

Since: 1.4

@@ -505,7 +505,7 @@ nm_vpn_plugin_info_get_plugin (

Returns

-

the plugin. Can be NULL.

+

the plugin. Can be NULL.

[transfer none]

Since: 1.2

@@ -532,7 +532,7 @@ nm_vpn_plugin_info_get_program (

Returns

-

the program. Can be NULL.

+

the program. Can be NULL.

[transfer none]

Since: 1.2

@@ -559,14 +559,14 @@ nm_vpn_plugin_info_get_auth_dialog (

Returns

-

the absolute path to the auth-dialog helper or NULL.

+

the absolute path to the auth-dialog helper or NULL.

Since: 1.4


nm_vpn_plugin_info_supports_hints ()

-
gboolean
+
gboolean
 nm_vpn_plugin_info_supports_hints (NMVpnPluginInfo *self);

Parameters

@@ -585,14 +585,14 @@ nm_vpn_plugin_info_supports_hints (

Returns

-

TRUE if the supports hints for secret requests, otherwise FALSE

+

TRUE if the supports hints for secret requests, otherwise FALSE

Since: 1.4


nm_vpn_plugin_info_supports_multiple ()

-
gboolean
+
gboolean
 nm_vpn_plugin_info_supports_multiple (NMVpnPluginInfo *self);

Parameters

@@ -611,7 +611,7 @@ nm_vpn_plugin_info_supports_multiple (

Returns

-

TRUE if the service supports multiple instances with different bus names, otherwise FALSE

+

TRUE if the service supports multiple instances with different bus names, otherwise FALSE

Since: 1.42

@@ -678,7 +678,7 @@ nm_vpn_plugin_info_lookup_property (

Returns

-

NMVpnPluginInfo is internally a GKeyFile. Returns the matching +

NMVpnPluginInfo is internally a GKeyFile. Returns the matching property.

[transfer none]

@@ -687,7 +687,7 @@ property.


nm_vpn_plugin_info_validate_filename ()

-
gboolean
+
gboolean
 nm_vpn_plugin_info_validate_filename (const char *filename);

Regular name files have a certain pattern. That basically means they have the file extension "name". Check if filename @@ -713,7 +713,7 @@ is valid according to that pattern.


nm_vpn_plugin_info_list_load ()

-
GSList *
+
GSList *
 nm_vpn_plugin_info_list_load (void);

Returns

@@ -726,10 +726,10 @@ loaded from the default directories rejecting duplicates.


nm_vpn_plugin_info_list_add ()

-
gboolean
-nm_vpn_plugin_info_list_add (GSList **list,
+
gboolean
+nm_vpn_plugin_info_list_add (GSList **list,
                              NMVpnPluginInfo *plugin_info,
-                             GError **error);
+ GError **error);

Parameters

@@ -759,7 +759,7 @@ nm_vpn_plugin_info_list_add (

Returns

-

TRUE if the plugin was added to list +

TRUE if the plugin was added to list . This will fail to add duplicate plugins.

@@ -768,8 +768,8 @@ to add duplicate plugins.


nm_vpn_plugin_info_list_remove ()

-
gboolean
-nm_vpn_plugin_info_list_remove (GSList **list,
+
gboolean
+nm_vpn_plugin_info_list_remove (GSList **list,
                                 NMVpnPluginInfo *plugin_info);

Remove plugin_info from list @@ -798,7 +798,7 @@ nm_vpn_plugin_info_list_remove (

Returns

-

TRUE if plugin_info +

TRUE if plugin_info was in list and successfully removed.

@@ -808,7 +808,7 @@ and successfully removed.

nm_vpn_plugin_info_list_find_by_name ()

NMVpnPluginInfo *
-nm_vpn_plugin_info_list_find_by_name (GSList *list,
+nm_vpn_plugin_info_list_find_by_name (GSList *list,
                                       const char *name);

Parameters

@@ -835,7 +835,7 @@ nm_vpn_plugin_info_list_find_by_name (

Returns

the first plugin with a matching name -(or NULL).

+(or NULL).

[transfer none]

Since: 1.2

@@ -845,7 +845,7 @@ nm_vpn_plugin_info_list_find_by_name (

nm_vpn_plugin_info_list_find_by_filename ()

NMVpnPluginInfo *
 nm_vpn_plugin_info_list_find_by_filename
-                               (GSList *list,
+                               (GSList *list,
                                 const char *filename);

Parameters

@@ -872,7 +872,7 @@ nm_vpn_plugin_info_list_find_by_filename

Returns

the first plugin with a matching filename -(or NULL).

+(or NULL).

[transfer none]

Since: 1.2

@@ -882,7 +882,7 @@ nm_vpn_plugin_info_list_find_by_filename

nm_vpn_plugin_info_list_find_by_service ()

NMVpnPluginInfo *
 nm_vpn_plugin_info_list_find_by_service
-                               (GSList *list,
+                               (GSList *list,
                                 const char *service);

Parameters

@@ -910,7 +910,7 @@ or one of the provided aliases.

Returns

the first plugin with a matching service -(or NULL).

+(or NULL).

[transfer none]

Since: 1.2

@@ -920,7 +920,7 @@ or one of the provided aliases.

nm_vpn_plugin_info_list_find_service_type ()

char *
 nm_vpn_plugin_info_list_find_service_type
-                               (GSList *list,
+                               (GSList *list,
                                 const char *name);

A VPN plugin provides one or several service-types, like org.freedesktop.NetworkManager.libreswan Certain plugins provide more then one service type, via aliases (org.freedesktop.NetworkManager.openswan). @@ -943,7 +943,7 @@ but it could be retrieved via

list

-
+ @@ -956,7 +956,7 @@ but it could be retrieved via

Returns

-

the resolved service-type or NULL on failure.

+

the resolved service-type or NULL on failure.

[transfer full]

Since: 1.4

@@ -966,9 +966,9 @@ but it could be retrieved via

nm_vpn_plugin_info_list_get_service_types ()

char **
 nm_vpn_plugin_info_list_get_service_types
-                               (GSList *list,
-                                gboolean only_existing,
-                                gboolean with_abbreviations);
+ (GSList *list, + gboolean only_existing, + gboolean with_abbreviations);

Parameters

a possibly empty GSList of NMVpnPluginInfo instances.

a possibly empty GSList of NMVpnPluginInfo instances.

[element-type NMVpnPluginInfo]
@@ -980,7 +980,7 @@ nm_vpn_plugin_info_list_get_service_types - + @@ -993,7 +993,7 @@ well-known plugins

- @@ -1003,8 +1003,8 @@ with

Returns

-

a NULL terminated strv list of strings. -The list itself and the values must be freed with g_strfreev().

+

a NULL terminated strv list of strings. +The list itself and the values must be freed with g_strfreev().

[transfer full]

Since: 1.4

@@ -1042,7 +1042,7 @@ nm_vpn_plugin_info_get_editor_plugin (void nm_vpn_plugin_info_set_editor_plugin (NMVpnPluginInfo *self, NMVpnEditorPlugin *plugin); -

Set the internal plugin instance. If NULL, only clear the previous instance.

+

Set the internal plugin instance. If NULL, only clear the previous instance.

Parameters

list

a possibly empty GSList of NMVpnPluginInfo.

a possibly empty GSList of NMVpnPluginInfo.

[element-type NMVpnPluginInfo]

with_abbreviations

if FALSE, only full service types are returned. +

if FALSE, only full service types are returned. Otherwise, this also includes abbreviated names that can be used with nm_vpn_plugin_info_list_find_service_type().

 
@@ -1072,7 +1072,7 @@ nm_vpn_plugin_info_set_editor_plugin (

nm_vpn_plugin_info_load_editor_plugin ()

NMVpnEditorPlugin *
 nm_vpn_plugin_info_load_editor_plugin (NMVpnPluginInfo *self,
-                                       GError **error);
+ GError **error);

Parameters

@@ -1148,6 +1148,6 @@ plugin only once, unless you reset the state via +
Generated by GTK-Doc V1.34.0 \ No newline at end of file -- cgit 1.3.0-6-gf8a5