5 * Copyright (C) 2007-2010 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
30 #define CONNMAN_API_SUBJECT_TO_CHANGE
31 #include <connman/plugin.h>
32 #include <connman/resolver.h>
33 #include <connman/log.h>
37 static int resolvconf_append(const char *interface, const char *domain,
43 DBG("interface %s server %s", interface, server);
45 if (access(RESOLVCONF, X_OK) < 0)
48 if (interface == NULL)
51 cmd = g_strdup_printf("echo \"nameserver %s\" | %s -a %s",
52 server, RESOLVCONF, interface);
63 static int resolvconf_remove(const char *interface, const char *domain,
69 DBG("interface %s server %s", interface, server);
71 if (interface == NULL)
74 cmd = g_strdup_printf("%s -d %s", RESOLVCONF, interface);
85 static struct connman_resolver resolvconf_resolver = {
87 .priority = CONNMAN_RESOLVER_PRIORITY_DEFAULT,
88 .append = resolvconf_append,
89 .remove = resolvconf_remove,
92 static int resolvconf_init(void)
94 return connman_resolver_register(&resolvconf_resolver);
97 static void resolvconf_exit(void)
99 connman_resolver_unregister(&resolvconf_resolver);
102 CONNMAN_PLUGIN_DEFINE(resolvconf, "Name resolver plugin", VERSION,
103 CONNMAN_PLUGIN_PRIORITY_DEFAULT, resolvconf_init, resolvconf_exit)