libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
ListenSocket.hxx
1#pragma once
2
3// cosmos
4#include <cosmos/net/Socket.hxx>
5
6namespace cosmos {
7
9
14class COSMOS_API ListenSocket :
15 public Socket {
16public: // functions
17
18 using Socket::listen;
19
20protected: // functions
21
22 using Socket::Socket;
23
24protected:
25
26 /*
27 * I/O doesn't make sense on a listen socket
28 */
29
30 using StreamIO::read;
31 using StreamIO::readAll;
32 using StreamIO::write;
33 using StreamIO::writeAll;
34};
35
36} // end ns
Base class for connection based listening-only sockets.
Base class for Socket types with ownership of a FileDescriptor.
Definition Socket.hxx:38