mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-27 14:00:11 +01:00
libnm: hide nm_setting_ip_config_next_valid_dns_option() function from headers
nm_setting_ip_config_next_valid_dns_option() API was added in libnm 1.2, but
it was never exported in the ABI of libnm. It thus was unusable, and any user
trying to link against it would have been unable to do so.
Hide the API now entirely. It doesn't seem a very nice API. If we want to
allow the user to validate option names, we should expose such a function
to validate an option (not to fetch the next valid option from a
profile).
Fixes: 019943bb5d ('libnm-core: add dns-options property to NMSettingIPConfig')
This commit is contained in:
parent
e8dd19bb01
commit
e8e5c12480
3 changed files with 3 additions and 4 deletions
|
|
@ -495,6 +495,9 @@ gboolean _nm_utils_dns_option_validate (const char *option, char **out_name,
|
|||
const NMUtilsDNSOptionDesc *option_descs);
|
||||
gssize _nm_utils_dns_option_find_idx (GPtrArray *array, const char *option);
|
||||
|
||||
int nm_setting_ip_config_next_valid_dns_option (NMSettingIPConfig *setting,
|
||||
guint idx);
|
||||
|
||||
/*****************************************************************************/
|
||||
|
||||
typedef struct _NMUtilsStrStrDictKey NMUtilsStrStrDictKey;
|
||||
|
|
|
|||
|
|
@ -4041,8 +4041,6 @@ nm_setting_ip_config_get_dns_option (NMSettingIPConfig *setting, guint idx)
|
|||
*
|
||||
* Returns: the index, greater or equal than @idx, of the first valid
|
||||
* DNS option, or -1 if no valid option is found
|
||||
*
|
||||
* Since: 1.2
|
||||
**/
|
||||
int
|
||||
nm_setting_ip_config_next_valid_dns_option (NMSettingIPConfig *setting, guint idx)
|
||||
|
|
|
|||
|
|
@ -456,8 +456,6 @@ guint nm_setting_ip_config_get_num_dns_options (NMSettingIPConfig
|
|||
gboolean nm_setting_ip_config_has_dns_options (NMSettingIPConfig *setting);
|
||||
const char *nm_setting_ip_config_get_dns_option (NMSettingIPConfig *setting,
|
||||
guint idx);
|
||||
int nm_setting_ip_config_next_valid_dns_option (NMSettingIPConfig *setting,
|
||||
guint idx);
|
||||
gboolean nm_setting_ip_config_add_dns_option (NMSettingIPConfig *setting,
|
||||
const char *dns_option);
|
||||
void nm_setting_ip_config_remove_dns_option (NMSettingIPConfig *setting,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue