libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
SocketOptions.hxx
1#pragma once
2
3// C++
4#include <chrono>
5
6// cosmos
7#include <cosmos/dso_export.h>
8#include <cosmos/error/errno.hxx>
9#include <cosmos/fs/FileDescriptor.hxx>
10#include <cosmos/net/SockOptBase.hxx>
11#include <cosmos/net/types.hxx>
12
13namespace cosmos {
14
16
26class COSMOS_API SocketOptions :
27 public SockOptBase<OptLevel::SOCKET> {
28public: // types
29
31
37 struct Linger :
38 protected ::linger {
39
40 friend SocketOptions;
41
42 Linger() :
43 Linger{false, std::chrono::seconds{0}}
44 {}
45
46 Linger(const bool on_off, const std::chrono::seconds time) {
47 setEnabled(on_off);
48 setTime(time);
49 }
50
51 bool isEnabled() const {
52 return l_onoff == 0 ? false : true;
53 }
54
55 void setEnabled(const bool on_off) {
56 l_onoff = on_off ? 1 : 0;
57 }
58
59 void setTime(const std::chrono::seconds time) {
60 l_linger = time.count();
61 }
62
63 std::chrono::seconds time() const {
64 return std::chrono::seconds{l_linger};
65 }
66 };
67
68public: // functions
69
71 bool acceptsConnections() const {
72 return getBoolOption(OptName{SO_ACCEPTCONN});
73 }
74
76
83 void bindToDevice(const SysString ifname);
84
86 std::string boundDevice() const;
87
89 void unbindDevice() {
90 bindToDevice("");
91 }
92
94
100 void enableDebug(const bool on_off) {
101 setBoolOption(OptName{SO_DEBUG}, on_off);
102 }
103
106 const auto family = getIntOption(OptName{SO_DOMAIN});
107 return SocketFamily{family};
108 }
109
111 SocketType type() const {
112 const auto type = getIntOption(OptName{SO_TYPE});
113 return SocketType{type};
114 }
115
118 const auto protocol = getIntOption(OptName{SO_PROTOCOL});
119 return SocketProtocol{protocol};
120 }
121
123
136 const auto error = getIntOption(OptName{SO_ERROR});
137 return Errno{error};
138 }
139
141
151 void setReuseAddress(const bool on_off) {
152 setBoolOption(OptName{SO_REUSEADDR}, on_off);
153 }
154
156
169 void setReusePort(const bool on_off) {
170 setBoolOption(OptName{SO_REUSEPORT}, on_off);
171 }
172
174
179 void setKeepalive(const bool on_off) {
180 setBoolOption(OptName{SO_KEEPALIVE}, on_off);
181 }
182
184
189 void setMark(const uint32_t mark);
190
192
195 Linger getLinger() const;
196
198
208 void setLinger(const Linger &linger);
209
211
214 void setZeroCopy(const bool on_off) {
215 setBoolOption(OptName{SO_ZEROCOPY}, on_off);
216 }
217
219
224 void setReceiveLowerBound(const int bytes) {
225 setIntOption(OptName{SO_RCVLOWAT}, bytes);
226 }
227
228protected: // functions
229
230 friend class Socket;
231
232 explicit SocketOptions(FileDescriptor fd) : SockOptBase{fd} {}
233};
234
235}; // end ns
Thin Wrapper around OS file descriptors.
Base class for Socket option helpers for different OptLevels.
Generic socket level option setter/getter helper.
void setReusePort(const bool on_off)
Allow parallel use of the same port.
void setZeroCopy(const bool on_off)
Signals the intent to use MessageFlag::ZEROCOPY in socket I/O.
void setReuseAddress(const bool on_off)
Allow or disallow reuse of local addresses.
void setReceiveLowerBound(const int bytes)
Sets the minimum size of input bytes to pass on to userspace.
Errno lastError()
Returns and clears the result of a non-blocking connection attempt.
SocketFamily family() const
Returns the family of the current socket.
SocketProtocol protocol() const
Returns the protocol of the current socket.
bool acceptsConnections() const
Returns whether the socket is currently in a listening state, accepting connections.
void unbindDevice()
Removes a previously established binding to a network device.
void setKeepalive(const bool on_off)
Enables the sending of keepalive messages for connection oriented sockets.
void enableDebug(const bool on_off)
Enable socket debugging.
SocketType type() const
Returns the type of the current socket.
Base class for Socket types with ownership of a FileDescriptor.
Definition Socket.hxx:38
Errno
Strong enum type representing errno error constants.
Definition errno.hxx:29
SocketProtocol
Specific protocol to use on a socket.
Definition types.hxx:71
SocketFamily
A socket's family setting.
Definition types.hxx:37
SocketType
A socket's type setting.
Definition types.hxx:52
OptName
Representation of socket option names.
Definition types.hxx:103
Special option struct for getLinger() and setLinger().
Wrapper type around a C-style string for use with system APIs.
Definition SysString.hxx:33