net/SocketDescriptor: add GetType(), IsStream()

This commit is contained in:
Max Kellermann
2018-08-20 16:06:58 +02:00
parent b5c569cd30
commit 50c7337965
2 changed files with 33 additions and 0 deletions

View File

@@ -82,6 +82,20 @@ public:
using FileDescriptor::IsValid;
using FileDescriptor::IsSocket;
#endif
/**
* Determine the socket type, i.e. SOCK_STREAM, SOCK_DGRAM or
* SOCK_SEQPACKET. Returns -1 on error.
*/
gcc_pure
int GetType() const noexcept;
/**
* Is this a stream socket?
*/
gcc_pure
bool IsStream() const noexcept;
using FileDescriptor::Get;
using FileDescriptor::Set;
using FileDescriptor::Steal;