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

CSocket: Don't create the read notifier until after we've connected

This makes it so that "on_connected" always gets called first.
Since accepted sockets are connected before construction, they have
to manually set CSocket::m_connected.
This commit is contained in:
Andreas Kling 2019-09-22 21:46:46 +02:00
parent 65409e8f04
commit a1907011b2
4 changed files with 19 additions and 1 deletions

View file

@ -51,6 +51,7 @@ protected:
private:
virtual bool open(CIODevice::OpenMode) override { ASSERT_NOT_REACHED(); }
bool common_connect(const struct sockaddr*, socklen_t);
void ensure_read_notifier();
Type m_type { Type::Invalid };
RefPtr<CNotifier> m_notifier;