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
6
namespace
cosmos {
7
9
14
class
COSMOS_API
ListenSocket
:
15
public
Socket
{
16
public
:
// functions
17
18
using
Socket::listen;
19
20
protected
:
// functions
21
22
using
Socket::Socket;
23
24
protected
:
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
cosmos::ListenSocket
Base class for connection based listening-only sockets.
Definition
ListenSocket.hxx:15
cosmos::Socket
Base class for Socket types with ownership of a FileDescriptor.
Definition
Socket.hxx:38
include
net
ListenSocket.hxx
Generated by
1.12.0