1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:48:11 +00:00

Kernel: Implement link status in /proc/net/adapters

This commit is contained in:
Conrad Pankoff 2019-08-22 00:52:50 +10:00 committed by Andreas Kling
parent af840af1ce
commit 286bafbb19
4 changed files with 19 additions and 0 deletions

View file

@ -17,6 +17,7 @@ public:
virtual ~E1000NetworkAdapter() override;
virtual void send_raw(const u8*, int) override;
virtual bool link_up() override;
private:
virtual void handle_irq() override;