Loading...
Searching...
No Matches
sock_ip_ep_t Struct Reference

Abstract IP end point and end point for a raw IP sock object. More...

Detailed Description

Abstract IP end point and end point for a raw IP sock object.

Definition at line 178 of file sock.h.

#include <sock.h>

Data Fields

int family
 family of sock_ip_ep_t::addr
 
union { 
 
   uint8_t   ipv6 [16] 
 IPv6 address mode. More...
 
   uint8_t   ipv4 [4] 
 IPv4 address mode. More...
 
   uint32_t   ipv4_u32 
 IPv4 address in network byte order More...
 
addr 
 address
 
uint16_t netif
 stack-specific network interface ID
 

Field Documentation

◆ family

int sock_ip_ep_t::family

family of sock_ip_ep_t::addr

See also
UNIX address families

Definition at line 184 of file sock.h.

◆ ipv4

uint8_t sock_ip_ep_t::ipv4[4]

IPv4 address mode.

Definition at line 195 of file sock.h.

◆ ipv4_u32

uint32_t sock_ip_ep_t::ipv4_u32

IPv4 address in network byte order

Definition at line 196 of file sock.h.

◆ ipv6

uint8_t sock_ip_ep_t::ipv6[16]

IPv6 address mode.

Note
only available if SOCK_HAS_IPV6 is defined.

Definition at line 193 of file sock.h.

◆ netif

uint16_t sock_ip_ep_t::netif

stack-specific network interface ID

Todo:
port to common network interface identifiers in PR #5511.

Use SOCK_ADDR_ANY_NETIF for any interface. For reception this is the local interface the message came over, for transmission, this is the local interface the message should be send over

Definition at line 209 of file sock.h.


The documentation for this struct was generated from the following file: