Kernel: Remove IP configuration from LoopbackAdapter

This is configured in NetworkTask_main now, so there's no need to do it
here as well.
This commit is contained in:
Conrad Pankoff
2019-08-28 21:55:49 +10:00
committed by Andreas Kling
parent 13abb3e88b
commit 626e176cab

View File

@@ -11,7 +11,6 @@ LoopbackAdapter& LoopbackAdapter::the()
LoopbackAdapter::LoopbackAdapter()
{
set_interface_name("loop");
set_ipv4_address({ 127, 0, 0, 1 });
}
LoopbackAdapter::~LoopbackAdapter()