* Work-in-progress of DHCP - the interface should now be correctly configured.

* Lease times are currently ignored, though.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@19462 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2006-12-11 23:58:16 +00:00
parent 9289e25b25
commit f9af65667d
4 changed files with 320 additions and 20 deletions
+1 -1
View File
@@ -42,7 +42,7 @@ AutoconfigLooper::_ReadyToRun()
{
// start with DHCP
DHCPClient* client = new DHCPClient(fDevice.String());
DHCPClient* client = new DHCPClient(fTarget, fDevice.String());
if (client->InitCheck() == B_OK) {
AddHandler(client);
return;