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

Kernel: Make LoopbackAdapter always link up

This commit is contained in:
Maciej Zygmanowski 2021-07-26 12:59:01 +02:00 committed by Andreas Kling
parent c31f085b8c
commit 9efeecf903

View file

@ -22,6 +22,7 @@ public:
virtual void send_raw(ReadonlyBytes) override;
virtual StringView class_name() const override { return "LoopbackAdapter"; }
virtual bool link_up() override { return true; }
};
}