1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:57:35 +00:00

Kernel: Implement the SO_DONTROUTE SOL_SOCKET-level option

This commit is contained in:
Idan Horowitz 2021-12-02 01:01:02 +02:00 committed by Andreas Kling
parent 641498954f
commit 613ade9dec
4 changed files with 20 additions and 2 deletions

View file

@ -154,9 +154,9 @@ protected:
void set_role(Role role) { m_role = role; }
protected:
ucred m_origin { 0, 0, 0 };
ucred m_acceptor { 0, 0, 0 };
bool m_routing_disabled { false };
private:
virtual bool is_socket() const final { return true; }