libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
UnixListenSocket.cxx
1// cosmos
2#include <cosmos/error/RuntimeError.hxx>
3#include <cosmos/net/UnixListenSocket.hxx>
4
5namespace cosmos {
6
7UnixListenSocket::UnixListenSocket(const SocketType type, const SocketFlags flags) :
8 ListenSocket{SocketFamily::UNIX, type, flags} {
9 if (type != SocketType::STREAM && type != SocketType::SEQPACKET) {
10 cosmos_throw(RuntimeError("invalid socket type for unix connection mode socket"));
11 }
12}
13
14} // end ns
SocketFamily
A socket's family setting.
Definition types.hxx:37
@ UNIX
UNIX domain sockets.