Commit d2eb4df8 authored by Max Kellermann's avatar Max Kellermann

event/{Fully,}BufferedSocket: add more API documentation

parent df33a898
...@@ -46,6 +46,11 @@ public: ...@@ -46,6 +46,11 @@ public:
using SocketMonitor::Close; using SocketMonitor::Close;
private: private:
/**
* @return the number of bytes read from the socket, 0 if the
* socket isn't ready for reading, -1 on error (the socket has
* been closed and probably destructed)
*/
ssize_t DirectRead(void *data, size_t length) noexcept; ssize_t DirectRead(void *data, size_t length) noexcept;
/** /**
......
...@@ -45,6 +45,11 @@ public: ...@@ -45,6 +45,11 @@ public:
} }
private: private:
/**
* @return the number of bytes written to the socket, 0 if the
* socket isn't ready for writing, -1 on error (the socket has
* been closed and probably destructed)
*/
ssize_t DirectWrite(const void *data, size_t length) noexcept; ssize_t DirectWrite(const void *data, size_t length) noexcept;
protected: protected:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment