libcosmos
Linux C++ System Programming Library
|
Base class for Socket option helpers for different OptLevels. More...
#include <SockOptBase.hxx>
Protected Member Functions | |
SockOptBase (FileDescriptor fd) | |
Perform socket options on the given file descriptor. | |
bool | getBoolOption (const OptName name) const |
Return a boolean style option. | |
void | setBoolOption (const OptName name, const bool val) |
Set a boolean style option. | |
int | getIntOption (const OptName name) const |
Return an integer option. | |
void | setIntOption (const OptName name, const int val) |
Set an integer option. | |
std::string | getStringOption (const OptName name, size_t max_len) const |
Return a null terminated string option. | |
void | setStringOption (const OptName name, const SysString str) |
Set a null terminated string option. | |
std::string | getPeerSec () const |
Returns the labeled IPSEC or NetLabel of the peer. | |
SockOptBase (const SockOptBase &)=delete | |
SockOptBase & | operator= (const SockOptBase &)=delete |
Protected Attributes | |
FileDescriptor | m_sock |
The socket file descriptor to operate on. | |
Static Protected Attributes | |
static constexpr OptLevel | M_LEVEL = LEVEL |
The option level to operate on. | |
Base class for Socket option helpers for different OptLevels.
This base class offers some common infrastructure for dealing with socket options. Implementations of this class need to specify the OptLevel they cover as template argument to this class.
Definition at line 18 of file SockOptBase.hxx.
|
inlineexplicitprotected |
Perform socket options on the given file descriptor.
Definition at line 22 of file SockOptBase.hxx.
|
protected |
Return a boolean style option.
Definition at line 9 of file SockOptBase.cxx.
|
protected |
Return an integer option.
Definition at line 20 of file SockOptBase.cxx.
|
protected |
Returns the labeled IPSEC or NetLabel of the peer.
This only works if IPSEC or NetLabel is configured on both the sending and receiving hosts. This option is supported for TCP and SCTP sockets on IP level or for UNIX domain sockets.
The returned string will have the proper length and null termination. The encoding of the returned string is unspecified though. In particular it is not guaranteed to be ASCII or UTF-8.
Definition at line 43 of file SockOptBase.cxx.
|
protected |
Return a null terminated string option.
Definition at line 30 of file SockOptBase.cxx.
|
protected |
Set a boolean style option.
Definition at line 15 of file SockOptBase.cxx.
|
protected |
Set an integer option.
Definition at line 25 of file SockOptBase.cxx.
|
protected |
Set a null terminated string option.
Definition at line 38 of file SockOptBase.cxx.
|
staticconstexprprotected |
The option level to operate on.
Definition at line 60 of file SockOptBase.hxx.
|
protected |
The socket file descriptor to operate on.
Definition at line 61 of file SockOptBase.hxx.