mptcpd
Multipath TCP Daemon
|
mptcpd struct
sockaddr
related utility functions.
More...
#include <string.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <mptcpd/private/sockaddr.h>
Functions | |
bool | mptcpd_sockaddr_storage_init (in_addr_t const *addr4, struct in6_addr const *addr6, in_port_t port, struct sockaddr_storage *addr) |
Initialize sockaddr_storage instance. More... | |
mptcpd struct
sockaddr
related utility functions.
Copyright (c) 2019-2022, Intel Corporation
bool mptcpd_sockaddr_storage_init | ( | in_addr_t const * | addr4, |
struct in6_addr const * | addr6, | ||
in_port_t | port, | ||
struct sockaddr_storage * | addr | ||
) |
Initialize sockaddr_storage
instance.
Initialize a sockaddr_storage
instance with the provided IPv4 or IPv6 address. Only one is required and used. The port may be zero in cases where it is optional.
[in] | addr4 | IPv4 internet address (network byte order). |
[in] | addr6 | IPv6 internet address. |
[in] | port | IP port (network byte order). |
[in,out] | addr | mptcpd network address information. |
true
on success. false
otherwise.