summaryrefslogtreecommitdiff
path: root/src/dns/nm-dns-plugin.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/dns/nm-dns-plugin.c')
-rw-r--r--src/dns/nm-dns-plugin.c16
1 files changed, 2 insertions, 14 deletions
diff --git a/src/dns/nm-dns-plugin.c b/src/dns/nm-dns-plugin.c
index 7ac57ce8b1..d9400e3e97 100644
--- a/src/dns/nm-dns-plugin.c
+++ b/src/dns/nm-dns-plugin.c
@@ -77,30 +77,18 @@ G_DEFINE_TYPE_EXTENDED (NMDnsPlugin, nm_dns_plugin, G_TYPE_OBJECT, G_TYPE_FLAG_A
gboolean
nm_dns_plugin_update (NMDnsPlugin *self,
- const GPtrArray *configs,
const NMGlobalDnsConfig *global_config,
+ const CList *ip_config_lst_head,
const char *hostname)
{
g_return_val_if_fail (NM_DNS_PLUGIN_GET_CLASS (self)->update != NULL, FALSE);
return NM_DNS_PLUGIN_GET_CLASS (self)->update (self,
- configs,
global_config,
+ ip_config_lst_head,
hostname);
}
-gboolean
-nm_dns_plugin_update_mdns (NMDnsPlugin *self,
- int ifindex,
- NMSettingConnectionMdns mdns)
-{
- g_return_val_if_fail (NM_DNS_PLUGIN_GET_CLASS (self)->update_mdns != NULL, FALSE);
-
- return NM_DNS_PLUGIN_GET_CLASS (self)->update_mdns (self,
- ifindex,
- mdns);
-}
-
static gboolean
is_caching (NMDnsPlugin *self)
{