7#include <cosmos/net/SockOptBase.hxx>
8#include <cosmos/net/unix_aux.hxx>
41 setBoolOption(
OptName{SO_PASSCRED}, on_off);
49 setBoolOption(
OptName{SO_PASSSEC}, on_off);
72 const int off = on_off ? offset : -1;
73 setIntOption(
OptName{SO_PEEK_OFF}, off);
76 using SockOptBase::getPeerSec;
80 using SockOptBase::SockOptBase;
Base class for Socket option helpers for different OptLevels.
Client side socket for connection mode UNIX domain sockets.
An active UNIX domain socket connection.
Implementation of a UNIX domain datagram socket.
Implementation of a UNIX domain socket listener.
UnixSocket level option setter/getter helper.
void setPassSecurity(const bool on_off)
This enables or disables the reception of SCM_SECURITY ancillary messages.
void setPassCredentials(const bool on_off)
This enables or disables the transfer of SCM_CREDENTIALS control messages.
void setPeekOffset(const bool on_off, const size_t offset=0)
Sets an offset for the MessageFlag::PEEK receive() flag.
OptName
Representation of socket option names.
User and group credentials of a peer process.