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

Kernel: Move TCP state logging into TCPSocket

This commit is contained in:
Conrad Pankoff 2019-08-10 13:14:00 +10:00 committed by Andreas Kling
parent e978e7543f
commit 638008da13
3 changed files with 12 additions and 19 deletions

View file

@ -78,7 +78,7 @@ public:
}
State state() const { return m_state; }
void set_state(State state) { m_state = state; }
void set_state(State state);
Direction direction() const { return m_direction; }