mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-20 03:30:09 +01:00
vpn: add nm_vpn_plugin_info_supports_safe_private_file_access()
The new API indicates that the VPN plugin supports reading files (certificates, keys) of private connections in a safe way (i.e. checking user permissions), or that it doesn't need to read any file from disk.
This commit is contained in:
parent
8d8edda3f4
commit
10db4baeb6
3 changed files with 26 additions and 0 deletions
|
|
@ -2090,4 +2090,5 @@ global:
|
||||||
nm_setting_gsm_get_device_uid;
|
nm_setting_gsm_get_device_uid;
|
||||||
nm_setting_connection_get_dnssec;
|
nm_setting_connection_get_dnssec;
|
||||||
nm_setting_connection_dnssec_get_type;
|
nm_setting_connection_dnssec_get_type;
|
||||||
|
nm_vpn_plugin_info_supports_safe_private_file_access;
|
||||||
} libnm_1_54_0;
|
} libnm_1_54_0;
|
||||||
|
|
|
||||||
|
|
@ -913,6 +913,29 @@ nm_vpn_plugin_info_supports_multiple(NMVpnPluginInfo *self)
|
||||||
return _nm_utils_ascii_str_to_bool(s, FALSE);
|
return _nm_utils_ascii_str_to_bool(s, FALSE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* nm_vpn_plugin_info_supports_safe_private_file_access:
|
||||||
|
* @self: plugin info instance
|
||||||
|
*
|
||||||
|
* Returns: %TRUE if the service supports reading files (certificates, keys) of
|
||||||
|
* private connections in a safe way (i.e. checking user permissions), or
|
||||||
|
if the service doesn't need to read any file from disk.
|
||||||
|
*
|
||||||
|
* Since: 1.56
|
||||||
|
*/
|
||||||
|
gboolean
|
||||||
|
nm_vpn_plugin_info_supports_safe_private_file_access(NMVpnPluginInfo *self)
|
||||||
|
{
|
||||||
|
const char *s;
|
||||||
|
|
||||||
|
g_return_val_if_fail(NM_IS_VPN_PLUGIN_INFO(self), FALSE);
|
||||||
|
|
||||||
|
s = nm_vpn_plugin_info_lookup_property(self,
|
||||||
|
NM_VPN_PLUGIN_INFO_KF_GROUP_CONNECTION,
|
||||||
|
"supports-safe-private-file-access");
|
||||||
|
return _nm_utils_ascii_str_to_bool(s, FALSE);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* nm_vpn_plugin_info_get_aliases:
|
* nm_vpn_plugin_info_get_aliases:
|
||||||
* @self: plugin info instance
|
* @self: plugin info instance
|
||||||
|
|
|
||||||
|
|
@ -64,6 +64,8 @@ NM_AVAILABLE_IN_1_4
|
||||||
gboolean nm_vpn_plugin_info_supports_hints(NMVpnPluginInfo *self);
|
gboolean nm_vpn_plugin_info_supports_hints(NMVpnPluginInfo *self);
|
||||||
NM_AVAILABLE_IN_1_42
|
NM_AVAILABLE_IN_1_42
|
||||||
gboolean nm_vpn_plugin_info_supports_multiple(NMVpnPluginInfo *self);
|
gboolean nm_vpn_plugin_info_supports_multiple(NMVpnPluginInfo *self);
|
||||||
|
NM_AVAILABLE_IN_1_56
|
||||||
|
gboolean nm_vpn_plugin_info_supports_safe_private_file_access(NMVpnPluginInfo *self);
|
||||||
NM_AVAILABLE_IN_1_4
|
NM_AVAILABLE_IN_1_4
|
||||||
const char *const *nm_vpn_plugin_info_get_aliases(NMVpnPluginInfo *self);
|
const char *const *nm_vpn_plugin_info_get_aliases(NMVpnPluginInfo *self);
|
||||||
NM_AVAILABLE_IN_1_2
|
NM_AVAILABLE_IN_1_2
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue