libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
SocketOptions.cxx
1// cosmos
2#include <cosmos/error/RuntimeError.hxx>
3#include <cosmos/net/SocketOptions.hxx>
5#include <cosmos/utils.hxx>
6
7namespace cosmos {
8
10 setStringOption(OptName{SO_BINDTODEVICE}, ifname);
11}
12
13std::string SocketOptions::boundDevice() const {
14 return getStringOption(OptName{SO_BINDTODEVICE}, MAX_NET_INTERFACE_NAME);
15}
16
17void SocketOptions::setMark(const uint32_t mark) {
18 // this being an uint32_t is not properly documented in the man page
19 // but can be found in the `struct sock` structure in the kernel
20 // sources.
21 setsockopt<uint32_t>(m_sock, M_LEVEL, OptName{SO_MARK}, mark);
22}
23
25 Linger ret;
26 auto len = getsockopt(m_sock, M_LEVEL, OptName{SO_LINGER}, &ret, sizeof(ret));
27
28 if (len != sizeof(ret)) {
29 cosmos_throw (RuntimeError("getsockopt: short read on SO_LINGER"));
30 }
31
32 return ret;
33}
34
35void SocketOptions::setLinger(const Linger &linger) {
36 setsockopt(m_sock, M_LEVEL, OptName{SO_LINGER}, &linger, sizeof(linger));
37}
38
39} // end ns
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.
Definition types.hxx:103
constexpr size_t MAX_NET_INTERFACE_NAME
Maximum length of a network device name in bytes.
Definition types.hxx:106
Special option struct for getLinger() and setLinger().
Wrapper type around a C-style string for use with system APIs.
Definition SysString.hxx:33