4#include <cosmos/net/IPOptions.hxx>
5#include <cosmos/net/Socket.hxx>
6#include <cosmos/net/traits.hxx>
19template <SocketFamily FAMILY>
32 auto ipOptions()
const {
48 Socket{FAMILY, type, flags, protocol} {}
56using IP4Socket = IPSocketT<SocketFamily::INET>;
57using IP6Socket = IPSocketT<SocketFamily::INET6>;
A typesafe bit mask representation using class enums.
FileDescriptor fd() const
Allows access to the underlying fd with const semantics.
Thin Wrapper around OS file descriptors.
Base class for IPv4 or IPv6 based sockets.
IPSocketT(FileDescriptor fd, const AutoCloseFD auto_close)
void getSockName(IPAddress &addr)
Returns the current address that the socket is bound to, if any.
IPSocketT(const SocketType type, const SocketFlags flags=SocketFlags{SocketFlag::CLOEXEC}, const SocketProtocol protocol=SocketProtocol::DEFAULT)
Base class for Socket types with ownership of a FileDescriptor.
void getSockName(SocketAddress &addr)
Returns the current address that the socket is bound to, if any.
SocketProtocol
Specific protocol to use on a socket.
SocketType
A socket's type setting.