ladybird/Kernel/Net/Routing.cpp
2019-06-07 11:43:58 +02:00

11 lines
357 B
C++

#include <Kernel/Net/LoopbackAdapter.h>
#include <Kernel/Net/Routing.h>
NetworkAdapter* adapter_for_route_to(const IPv4Address& ipv4_address)
{
// FIXME: Have an actual routing table.
if (ipv4_address == IPv4Address(127, 0, 0, 1))
return &LoopbackAdapter::the();
return NetworkAdapter::from_ipv4_address(IPv4Address(192, 168, 5, 2));
}