* - ax25: Ax25.
* - dl: Dl.
* - eon: Eon.
+ * - generic: None specified, does not use extra fields and should be considered the fallback / failsafe (see AF_UNSPEC).
* - inet4: Ipv4 internet network socket.
* - inet6: Ipv6 internet network socket..
* - ipx: Ipx.
* - iso: Iso.
* - local: Local (aka: Unix) socket (socket file or localhost).
* - ns: Ns.
- * - generic: None specified, does not use extra fields and should be considered the fallback / failsafe (see AF_UNSPEC).
+ * - storage: The storage socket address.
* - x25: X25.
*/
#ifndef _di_f_socket_address_form_e_
f_socket_address_form_inet4_e,
f_socket_address_form_inet6_e,
f_socket_address_form_local_e,
+ f_socket_address_form_storage,
#ifdef _en_support_socket_address_arp_
f_socket_address_form_arp_e,
* - ax25: Ax25.
* - dl: Dl.
* - eon: Eon.
+ * - generic: None specified, does not use extra fields and should be considered the fallback / failsafe (see AF_UNSPEC).
* - inet4: Ipv4 internet network socket.
* - inet6: Ipv6 internet network socket..
* - ipx: Ipx.
* - iso: Iso.
* - local: Local (aka: Unix) socket (socket file or localhost).
* - ns: Ns.
- * - generic: None specified, does not use extra fields and should be considered the fallback / failsafe (see AF_UNSPEC).
+ * - storage: The storage socket address.
* - x25: X25.
*/
#ifndef _di_f_socket_address_t_
struct sockaddr generic;
struct sockaddr_in inet4;
struct sockaddr_in6 inet6;
+ struct sockaddr_storage storage;
struct sockaddr_un local;
#ifdef _en_support_socket_address_arp_