libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
IPSocket.hxx
1#pragma once
2
3// cosmos
4#include <cosmos/net/IPOptions.hxx>
5#include <cosmos/net/Socket.hxx>
6#include <cosmos/net/traits.hxx>
7
8namespace cosmos {
9
11
19template <SocketFamily FAMILY>
20class IPSocketT :
21 public Socket {
22public: // types
23
24 using IPAddress = typename FamilyTraits<FAMILY>::Address;
25
26public: // functions
27
28 auto ipOptions() {
29 return typename FamilyTraits<FAMILY>::Options{m_fd};
30 }
31
32 auto ipOptions() const {
33 return typename FamilyTraits<FAMILY>::Options{m_fd};
34 }
35
37 void getSockName(IPAddress &addr) {
39 }
40
41protected: // functions
42
45 const SocketType type,
46 const SocketFlags flags = SocketFlags{SocketFlag::CLOEXEC},
47 const SocketProtocol protocol = SocketProtocol::DEFAULT) :
48 Socket{FAMILY, type, flags, protocol} {}
49
52 Socket{fd, auto_close}
53 {}
54};
55
56using IP4Socket = IPSocketT<SocketFamily::INET>;
57using IP6Socket = IPSocketT<SocketFamily::INET6>;
58
59} // end ns
A typesafe bit mask representation using class enums.
Definition BitMask.hxx:19
FileDescriptor fd() const
Allows access to the underlying fd with const semantics.
Definition FileBase.hxx:74
Thin Wrapper around OS file descriptors.
Base class for IPv4 or IPv6 based sockets.
Definition IPSocket.hxx:21
IPSocketT(FileDescriptor fd, const AutoCloseFD auto_close)
Definition IPSocket.hxx:51
void getSockName(IPAddress &addr)
Returns the current address that the socket is bound to, if any.
Definition IPSocket.hxx:37
IPSocketT(const SocketType type, const SocketFlags flags=SocketFlags{SocketFlag::CLOEXEC}, const SocketProtocol protocol=SocketProtocol::DEFAULT)
Definition IPSocket.hxx:44
Base class for Socket types with ownership of a FileDescriptor.
Definition Socket.hxx:38
void getSockName(SocketAddress &addr)
Returns the current address that the socket is bound to, if any.
Definition Socket.cxx:111
SocketProtocol
Specific protocol to use on a socket.
Definition types.hxx:71
SocketType
A socket's type setting.
Definition types.hxx:52