1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-24 20:47:43 +00:00

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() LoopbackAdapter::LoopbackAdapter()
{ {
set_interface_name("loop"); set_interface_name("loop");
set_ipv4_address({ 127, 0, 0, 1 });
} }
LoopbackAdapter::~LoopbackAdapter() LoopbackAdapter::~LoopbackAdapter()