X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fnet%2Fstreamsocket.h;h=6f478d289985f0a553a9c9261ccf5ff02a14579a;hb=e900bb4a8fe086fac55ffe51c75915be0003c5e4;hp=8b39e91afd358214168c977e299e01bc714d3e76;hpb=50e9f9ea7f7385a2c5931fca2b8fb1103078e67c;p=libs%2Fnet.git diff --git a/source/net/streamsocket.h b/source/net/streamsocket.h index 8b39e91..6f478d2 100644 --- a/source/net/streamsocket.h +++ b/source/net/streamsocket.h @@ -23,12 +23,12 @@ public: If the socket is non-blocking, this function may return before the connection is fully established. The caller must then use either the poll_connect function or an EventDispatcher to finish the process. */ - virtual bool connect(const SockAddr &); + bool connect(const SockAddr &) override; - virtual bool poll_connect(const Time::TimeDelta &); + bool poll_connect(const Time::TimeDelta &) override; private: - void on_event(IO::PollEvent); + void on_event(IO::PollEvent) override; }; } // namespace Net