mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 02:03:06 -05:00
10 lines
380 B
C++
10 lines
380 B
C++
#include <Kernel/Net/LoopbackAdapter.h>
|
|
#include <Kernel/Net/Routing.h>
|
|
|
|
WeakPtr<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().make_weak_ptr();
|
|
return NetworkAdapter::from_ipv4_address(IPv4Address(192, 168, 5, 2));
|
|
}
|