diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2009-12-07 07:58:29 +0100 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2009-12-07 07:58:29 +0100 |
commit | 93a5ff49828eda5435d79f56c954562144fcf88b (patch) | |
tree | e67d22026f9aea7638d09f6ff8d75e274ed17c18 /src/dhcp.c | |
parent | cc27196d76cbf700b81d628e037a9fcb8c043e18 (diff) | |
download | connman-93a5ff49828eda5435d79f56c954562144fcf88b.tar.gz connman-93a5ff49828eda5435d79f56c954562144fcf88b.tar.bz2 connman-93a5ff49828eda5435d79f56c954562144fcf88b.zip |
Add parsing of Domainname, Hostname and Timeserver results
Diffstat (limited to 'src/dhcp.c')
-rw-r--r-- | src/dhcp.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -114,6 +114,9 @@ void connman_dhcp_set_value(struct connman_dhcp *dhcp, } else if (g_strcmp0(key, "Nameserver") == 0) { g_free(dhcp->element->ipv4.nameserver); dhcp->element->ipv4.nameserver = g_strdup(value); + } else if (g_strcmp0(key, "Domainname") == 0) { + } else if (g_strcmp0(key, "Hostname") == 0) { + } else if (g_strcmp0(key, "Timeserver") == 0) { } } |