2#include <cosmos/error/RuntimeError.hxx>
3#include <cosmos/net/SocketOptions.hxx>
5#include <cosmos/utils.hxx>
28 if (len !=
sizeof(ret)) {
29 cosmos_throw (
RuntimeError(
"getsockopt: short read on SO_LINGER"));
Exception type for generic runtime errors.
void setStringOption(const OptName name, const SysString str)
static constexpr OptLevel M_LEVEL
std::string getStringOption(const OptName name, size_t max_len) const
std::string boundDevice() const
Returns the name of the network device this socket is bound to, if any.
void setLinger(const Linger &linger)
Sets the current linger setting for this socket.
void bindToDevice(const SysString ifname)
Bind the socket to a specific network device.
Linger getLinger() const
Gets the current linger setting for this socket.
void setMark(const uint32_t mark)
Sets a mark for this socket.
OptName
Representation of socket option names.
constexpr size_t MAX_NET_INTERFACE_NAME
Maximum length of a network device name in bytes.
Special option struct for getLinger() and setLinger().
Wrapper type around a C-style string for use with system APIs.