5 * Copyright (C) 2007-2008 Intel Corporation. All rights reserved.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
28 #include <connman/plugin.h>
29 #include <connman/driver.h>
30 #include <connman/log.h>
32 static int resolvconf_probe(struct connman_element *element)
34 const char *nameserver = NULL;
38 DBG("element %p name %s", element, element->name);
40 connman_element_get_value(element,
41 CONNMAN_PROPERTY_TYPE_IPV4_NAMESERVER, &nameserver);
43 if (nameserver == NULL)
46 cmd = g_strdup_printf("echo \"nameserver %s\" | resolvconf -a %s",
47 nameserver, element->netdev.name);
58 static void resolvconf_remove(struct connman_element *element)
63 DBG("element %p name %s", element, element->name);
65 cmd = g_strdup_printf("resolvconf -d %s", element->netdev.name);
74 static struct connman_driver resolvconf_driver = {
76 .type = CONNMAN_ELEMENT_TYPE_RESOLVER,
77 .probe = resolvconf_probe,
78 .remove = resolvconf_remove,
81 static int resolvconf_init(void)
83 return connman_driver_register(&resolvconf_driver);
86 static void resolvconf_exit(void)
88 connman_driver_unregister(&resolvconf_driver);
91 CONNMAN_PLUGIN_DEFINE("resolvconf", "Name resolver plugin", VERSION,
92 resolvconf_init, resolvconf_exit)