summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2009-06-12 04:42:57 +0200
committerMarcel Holtmann <marcel@holtmann.org>2009-06-12 04:42:57 +0200
commit112fb5a3a5b64f2e0f6edd2acfe806868810b1e8 (patch)
treeadc73f60a082ff711726f2e8ea6bdfa52951344b /plugins
parentb5ecc8c4f4cf4a299af6a4408d2ee3f5924ed2b8 (diff)
downloadconnman-112fb5a3a5b64f2e0f6edd2acfe806868810b1e8.tar.gz
connman-112fb5a3a5b64f2e0f6edd2acfe806868810b1e8.tar.bz2
connman-112fb5a3a5b64f2e0f6edd2acfe806868810b1e8.zip
Add hooks for domain details in dhclient
Diffstat (limited to 'plugins')
-rw-r--r--plugins/dhclient.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/plugins/dhclient.c b/plugins/dhclient.c
index ca9b6214..10f32ff6 100644
--- a/plugins/dhclient.c
+++ b/plugins/dhclient.c
@@ -299,6 +299,15 @@ static DBusHandlerResult dhclient_filter(DBusConnection *conn,
task->element->ipv4.nameserver = g_strdup(value);
}
+ if (g_ascii_strcasecmp(key, "new_domain_name") == 0) {
+ }
+
+ if (g_ascii_strcasecmp(key, "new_domain_search") == 0) {
+ }
+
+ if (g_ascii_strcasecmp(key, "new_host_name") == 0) {
+ }
+
dbus_message_iter_next(&dict);
}