11#include <linux/if_arp.h>
13#include <netinet/in.h>
14#include <netinet/ip.h>
15#include <sys/socket.h>
18#include <cosmos/BitMask.hxx>
19#include <cosmos/net/byte_order.hxx>
77 CLOEXEC = SOCK_CLOEXEC,
148 public std::array<uint8_t, 16> {
158constexpr IP6RawAddress IP6_LOOPBACK{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1};
164 public std::array<uint8_t, 6> {
210 CLOEXEC = MSG_CMSG_CLOEXEC,
254using MessageFlags = BitMask<MessageFlag>;
261 CREDENTIALS = SCM_CREDENTIALS
A typesafe bit mask representation using class enums.
A 32-bit IPv4 binary address in network byte order.
A 16-bit IP port in network byte order.
An endianness aware unsigned integer.
constexpr EndianNumber()
Construct a zero-initialized integer.
@ TRUNCATE
If write access was requested and is allowed then an already existing file object is truncated to zer...
@ NONBLOCK
Attempt to open the file in non-blocking mode causing I/O operations not to block.
InterfaceIndex
A network device interface index.
constexpr net::HostInt32 IP4_BROADCAST_ADDR
The IPv4 broadcast address to reach all hosts in the neighborhood.
constexpr size_t MAX_HOSTNAME
Maximum length of a DNS hostname.
IP6Message
Ancillary message types available for IPv6 based sockets.
SocketProtocol
Specific protocol to use on a socket.
@ DEFAULT
if used on a packet socket then no packets will be received (until bind).
OptLevel
Representation of socket option levels.
@ SOCKET
used for generic socket options and UNIX domain sockets
SocketFamily
A socket's family setting.
@ PACKET
Network device level packets (raw).
@ UNIX
UNIX domain sockets.
@ UNSPEC
Unknown / not specified.
@ NETLINK
Netlink sockets talking to the kernel.
MessageFlag
Flags available for the send() and recv() family of socket I/O functions.
@ DONT_ROUTE
Don't use a gateway to send out the packet, send only to directly connected networks.
@ NO_SIGNAL
Don't send a SIGPIPE signal if a stream oriented connection is closed.
@ WAIT_FOR_ONE
Only for recvmsg(): Turn on DONT_WAIT after the first message has been received.
@ ZEROCOPY
Operate in zerocopy I/O mode.
@ OUT_OF_BAND
Send or receive out of band data on protocols that support this.
@ PEEK
Return data from the beginning of the receive queue, without removing it from the queue.
@ DONT_WAIT
Use non-blocking semantics for the I/O call.
@ MORE_DATA
Indicate that more data to send is to follow.
@ CTL_WAS_TRUNCATED
In recvmsg() msg_flags this indicates that some control data was discarded due to lack of space in th...
@ ERRQUEUE
Request extended error messages to be received as ancillary messages.
@ CONFIRM
Inform the link layer that a successful reply was received from the other side.
@ WAIT_ALL
Block on receiving until all requested data has been received.
@ FASTOPEN
Attempt a TCP fast-open and send data in the SYNC like a combined connect() and write().
@ END_OF_RECORD
Terminates a record.
SocketFlag
Additional socket settings used during socket creation.
constexpr net::HostInt32 IP4_ANY_ADDR
The any IPv4 address specifying all possible addresses or a "don't care" address for automatic assign...
constexpr IP6RawAddress IP6_LOOPBACK
The binary loopback IPv6 address ::1 referring to the localhost.
SocketType
A socket's type setting.
@ RDM
reliably delivered messages, datagrams without ordering, keeps boundaries.
@ STREAM
connection oriented, reliable, in-order, but no record boundaries.
@ RAW
raw packets as seen on network device level.
@ DGRAM
connection-less, unreliable, unordered with length limitation, keeps message boundaries.
@ ANY
can be used in AddressHints to return any socket types.
@ SEQPACKET
connection oriented, in-order, reliable with length limitation, keeps message boundaries.
constexpr size_t MAX_SERVICE
Maximum length of a port service name (from /etc/services).
OptName
Representation of socket option names.
constexpr net::HostInt32 IP4_LOOPBACK_ADDR
The loopback IPv4 address referring to the localhost.
constexpr IP6RawAddress IP6_ANY_ADDR
The binary IPv6 "any" address :: specifying all possible addresses or a "don't care" address for auto...
constexpr size_t MAX_NET_INTERFACE_NAME
Maximum length of a network device name in bytes.
UnixMessage
Ancillary message types available for UNIX domain sockets.
@ RIGHTS
file descriptor passing.
IP4Message
Ancillary message types available for IPv4 based sockets.
A 48-bit ethernet 802.3 MAC address.