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

LibCore: Port CSocket over to using dbg().

Also added a LogStream operator<< for CSocketAddress.
This commit is contained in:
Andreas Kling 2019-07-14 11:02:40 +02:00
parent b4329a8eec
commit c9ee481cdf
2 changed files with 13 additions and 8 deletions

View file

@ -46,3 +46,8 @@ private:
IPv4Address m_ipv4_address;
String m_local_address;
};
inline const LogStream& operator<<(const LogStream& stream, const CSocketAddress& value)
{
return stream << value;
}