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

IPv4: More hacking on bringing up TCP support.

This was a bit more complicated than I expected, but it's moving forward.
This commit is contained in:
Andreas Kling 2019-03-13 23:14:30 +01:00
parent 7aba68d51c
commit 032d9d7065
7 changed files with 193 additions and 33 deletions

View file

@ -44,5 +44,5 @@ public:
operator T() const { return convert_between_host_and_network(m_network_value); }
private:
T m_network_value;
T m_network_value { 0 };
};