libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
UnixOptions.hxx
1#pragma once
2
3// C++
4#include <chrono>
5
6// cosmos
7#include <cosmos/net/SockOptBase.hxx>
8#include <cosmos/net/unix_aux.hxx>
9
10namespace cosmos {
11
13class COSMOS_API UnixOptions :
14 // historically UNIX sockets use the base socket option level
15 public SockOptBase<OptLevel::SOCKET> {
16 friend class UnixDatagramSocket;
17 friend class UnixConnection;
18 friend class UnixListenSocket;
19 friend class UnixClientSocket;
20public: // functions
21
23
40 void setPassCredentials(const bool on_off) {
41 setBoolOption(OptName{SO_PASSCRED}, on_off);
42 }
43
45
48 void setPassSecurity(const bool on_off) {
49 setBoolOption(OptName{SO_PASSSEC}, on_off);
50 }
51
53
58 UnixCredentials credentials() const;
59
61
71 void setPeekOffset(const bool on_off, const size_t offset = 0) {
72 const int off = on_off ? offset : -1;
73 setIntOption(OptName{SO_PEEK_OFF}, off);
74 }
75
76 using SockOptBase::getPeerSec;
77
78protected: // functions
79
80 using SockOptBase::SockOptBase;
81};
82
83}; // end ns
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.
Definition types.hxx:103
User and group credentials of a peer process.
Definition unix_aux.hxx:29