diff options
| author | Michael Biebl <biebl@debian.org> | 2026-02-22 00:40:03 +0100 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2026-02-22 00:40:03 +0100 |
| commit | ccdb9117cca7141ee709afca8b25c966ff4fa18e (patch) | |
| tree | 3b7377c95e1d4049c13dd9101ae923fee70ab91d /src/libnm-client-impl | |
| parent | d0ea10125cc04f55c1864451198d87fb801d1457 (diff) | |
| parent | 067fb576988f685e83ac8b0ae690334aff547c85 (diff) | |
Update upstream source from tag 'upstream/1.56.0'
Update to upstream version '1.56.0' with Debian dir 15fab61a7abf1fd4e2ba46785f96d935e87d32bb
Diffstat (limited to 'src/libnm-client-impl')
| -rw-r--r-- | src/libnm-client-impl/libnm.ver | 16 | ||||
| -rw-r--r-- | src/libnm-client-impl/nm-client.c | 24 | ||||
| -rwxr-xr-x | src/libnm-client-impl/tests/test-gir.py | 2 | ||||
| -rw-r--r-- | src/libnm-client-impl/tests/test-libnm.c | 2 |
4 files changed, 41 insertions, 3 deletions
diff --git a/src/libnm-client-impl/libnm.ver b/src/libnm-client-impl/libnm.ver index bd66e61d..6c48978a 100644 --- a/src/libnm-client-impl/libnm.ver +++ b/src/libnm-client-impl/libnm.ver @@ -2064,6 +2064,11 @@ global: nm_ethtool_optname_is_fec; } libnm_1_50_0; +libnm_1_52_2 { + #nm_utils_copy_cert_as_user@libnm_1_52_2; + #nm_vpn_plugin_info_supports_safe_private_file_access@libnm_1_52_2; +} libnm_1_52_0; + libnm_1_54_0 { global: nm_setting_ip_config_forwarding_get_type; @@ -2085,7 +2090,16 @@ global: } libnm_1_54_0; libnm_1_54_3 { + #nm_utils_copy_cert_as_user@libnm_1_54_3; + #nm_vpn_plugin_info_supports_safe_private_file_access@libnm_1_54_3; +} libnm_1_54_2; + +libnm_1_56_0 { global: + nm_dns_server_validate; + nm_setting_gsm_get_device_uid; + nm_setting_connection_get_dnssec; + nm_setting_connection_dnssec_get_type; nm_utils_copy_cert_as_user; nm_vpn_plugin_info_supports_safe_private_file_access; -} libnm_1_54_2; +} libnm_1_54_0; diff --git a/src/libnm-client-impl/nm-client.c b/src/libnm-client-impl/nm-client.c index 13343cbf..b81ac6e5 100644 --- a/src/libnm-client-impl/nm-client.c +++ b/src/libnm-client-impl/nm-client.c @@ -9339,3 +9339,27 @@ NM_BACKPORT_SYMBOL(libnm_1_50_4, (optname)); NM_BACKPORT_SYMBOL(libnm_1_50_4, GType, nm_setting_ethtool_fec_mode_get_type, (void), ()); + +NM_BACKPORT_SYMBOL(libnm_1_52_2, + char *, + nm_utils_copy_cert_as_user, + (const char *filename, const char *user, GError **error), + (filename, user, error)); + +NM_BACKPORT_SYMBOL(libnm_1_52_2, + gboolean, + nm_vpn_plugin_info_supports_safe_private_file_access, + (NMVpnPluginInfo * self), + (self)); + +NM_BACKPORT_SYMBOL(libnm_1_54_3, + char *, + nm_utils_copy_cert_as_user, + (const char *filename, const char *user, GError **error), + (filename, user, error)); + +NM_BACKPORT_SYMBOL(libnm_1_54_3, + gboolean, + nm_vpn_plugin_info_supports_safe_private_file_access, + (NMVpnPluginInfo * self), + (self)); diff --git a/src/libnm-client-impl/tests/test-gir.py b/src/libnm-client-impl/tests/test-gir.py index 81518e37..554080fa 100755 --- a/src/libnm-client-impl/tests/test-gir.py +++ b/src/libnm-client-impl/tests/test-gir.py @@ -93,8 +93,6 @@ def syms_from_ver(verfile): # hardcode it. c_syms["nm_ethtool_optname_is_feature"] = "1.20" c_syms["nm_setting_bond_port_get_prio"] = "1.44" - c_syms["nm_utils_copy_cert_as_user"] = "1.56" - c_syms["nm_vpn_plugin_info_supports_safe_private_file_access"] = "1.56" return c_syms diff --git a/src/libnm-client-impl/tests/test-libnm.c b/src/libnm-client-impl/tests/test-libnm.c index f56521a4..b30d02a5 100644 --- a/src/libnm-client-impl/tests/test-libnm.c +++ b/src/libnm-client-impl/tests/test-libnm.c @@ -2756,6 +2756,8 @@ test_types(void) G(nm_setting_connection_lldp_get_type), G(nm_setting_connection_llmnr_get_type), G(nm_setting_connection_mdns_get_type), + G(nm_setting_connection_dns_over_tls_get_type), + G(nm_setting_connection_dnssec_get_type), G(nm_setting_dcb_flags_get_type), G(nm_setting_dcb_get_type), G(nm_setting_diff_result_get_type), |