libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
traits.hxx
Go to the documentation of this file.
1#pragma once
2
3// cosmos
4#include <cosmos/net/types.hxx>
5
14namespace cosmos {
15
16template <SocketFamily>
18};
19
20class IP4Options;
21class IP4Address;
22
23template <>
25 static constexpr OptLevel OPT_LEVEL = OptLevel::IP;
26 using Options = IP4Options;
27 using Address = IP4Address;
28 using RawAddr = sockaddr_in;
29 using CtrlMsg = IP4Message;
30};
31
32class IP6Options;
33class IP6Address;
34
35template <>
37 static constexpr OptLevel OPT_LEVEL = OptLevel::IPV6;
38 using Options = IP6Options;
39 using Address = IP6Address;
40 using RawAddr = sockaddr_in6;
41 using CtrlMsg = IP6Message;
42};
43
44}; // end ns
A 32-bit IPv4 address and 16 bit port number for use with SocketFamily::INET sockets.
IPv4 level socket option setter/getter helper.
Definition IPOptions.hxx:58
A 128 bit IPv6 address and 16-bit port number plus some IPv6 specific extra fields.
IPv6 level socket option setter/getter helper.
IP6Message
Ancillary message types available for IPv6 based sockets.
Definition types.hxx:280
OptLevel
Representation of socket option levels.
Definition types.hxx:90
SocketFamily
A socket's family setting.
Definition types.hxx:37
IP4Message
Ancillary message types available for IPv4 based sockets.
Definition types.hxx:266