ReactOS 0.4.16-dev-258-g81860b4
inet.h File Reference
#include "lwip/opt.h"
#include "lwip/def.h"
#include "lwip/ip_addr.h"
#include "lwip/ip6_addr.h"
Include dependency graph for inet.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  in_addr
 
struct  in6_addr
 

Macros

#define s6_addr   un.u8_addr
 
#define INADDR_NONE   IPADDR_NONE
 
#define INADDR_LOOPBACK   IPADDR_LOOPBACK
 
#define INADDR_ANY   IPADDR_ANY
 
#define INADDR_BROADCAST   IPADDR_BROADCAST
 
#define IN6ADDR_ANY_INIT   {{{0,0,0,0}}}
 
#define IN6ADDR_LOOPBACK_INIT   {{{0,0,0,PP_HTONL(1)}}}
 
#define IN_CLASSA(a)   IP_CLASSA(a)
 
#define IN_CLASSA_NET   IP_CLASSA_NET
 
#define IN_CLASSA_NSHIFT   IP_CLASSA_NSHIFT
 
#define IN_CLASSA_HOST   IP_CLASSA_HOST
 
#define IN_CLASSA_MAX   IP_CLASSA_MAX
 
#define IN_CLASSB(b)   IP_CLASSB(b)
 
#define IN_CLASSB_NET   IP_CLASSB_NET
 
#define IN_CLASSB_NSHIFT   IP_CLASSB_NSHIFT
 
#define IN_CLASSB_HOST   IP_CLASSB_HOST
 
#define IN_CLASSB_MAX   IP_CLASSB_MAX
 
#define IN_CLASSC(c)   IP_CLASSC(c)
 
#define IN_CLASSC_NET   IP_CLASSC_NET
 
#define IN_CLASSC_NSHIFT   IP_CLASSC_NSHIFT
 
#define IN_CLASSC_HOST   IP_CLASSC_HOST
 
#define IN_CLASSC_MAX   IP_CLASSC_MAX
 
#define IN_CLASSD(d)   IP_CLASSD(d)
 
#define IN_CLASSD_NET   IP_CLASSD_NET /* These ones aren't really */
 
#define IN_CLASSD_NSHIFT   IP_CLASSD_NSHIFT /* net and host fields, but */
 
#define IN_CLASSD_HOST   IP_CLASSD_HOST /* routing needn't know. */
 
#define IN_CLASSD_MAX   IP_CLASSD_MAX
 
#define IN_MULTICAST(a)   IP_MULTICAST(a)
 
#define IN_EXPERIMENTAL(a)   IP_EXPERIMENTAL(a)
 
#define IN_BADCLASS(a)   IP_BADCLASS(a)
 
#define IN_LOOPBACKNET   IP_LOOPBACKNET
 
#define IN6_IS_ADDR_UNSPECIFIED(a)   ip6_addr_isany((ip6_addr_t*)(a))
 
#define IN6_IS_ADDR_LOOPBACK(a)   ip6_addr_isloopback((ip6_addr_t*)(a))
 
#define IN6_IS_ADDR_MULTICAST(a)   ip6_addr_ismulticast((ip6_addr_t*)(a))
 
#define IN6_IS_ADDR_LINKLOCAL(a)   ip6_addr_islinklocal((ip6_addr_t*)(a))
 
#define IN6_IS_ADDR_SITELOCAL(a)   ip6_addr_issitelocal((ip6_addr_t*)(a))
 
#define IN6_IS_ADDR_V4MAPPED(a)   ip6_addr_isipv4mappedipv6((ip6_addr_t*)(a))
 
#define IN6_IS_ADDR_V4COMPAT(a)   ip6_addr_isipv4compat((ip6_addr_t*)(a))
 
#define IN6_IS_ADDR_MC_NODELOCAL(a)   ip6_addr_ismulticast_iflocal((ip6_addr_t*)(a))
 
#define IN6_IS_ADDR_MC_LINKLOCAL(a)   ip6_addr_ismulticast_linklocal((ip6_addr_t*)(a))
 
#define IN6_IS_ADDR_MC_SITELOCAL(a)   ip6_addr_ismulticast_sitelocal((ip6_addr_t*)(a))
 
#define IN6_IS_ADDR_MC_ORGLOCAL(a)   ip6_addr_ismulticast_orglocal((ip6_addr_t*)(a))
 
#define IN6_IS_ADDR_MC_GLOBAL(a)   ip6_addr_ismulticast_global((ip6_addr_t*)(a))
 
#define INET_ADDRSTRLEN   IP4ADDR_STRLEN_MAX
 

Typedefs

typedef u32_t in_addr_t
 

Variables

const struct in6_addr in6addr_any
 

Detailed Description

This file (together with sockets.h) aims to provide structs and functions from

Definition in file inet.h.

Macro Definition Documentation

◆ IN6_IS_ADDR_LINKLOCAL

#define IN6_IS_ADDR_LINKLOCAL (   a)    ip6_addr_islinklocal((ip6_addr_t*)(a))

Definition at line 131 of file inet.h.

◆ IN6_IS_ADDR_LOOPBACK

#define IN6_IS_ADDR_LOOPBACK (   a)    ip6_addr_isloopback((ip6_addr_t*)(a))

Definition at line 129 of file inet.h.

◆ IN6_IS_ADDR_MC_GLOBAL

#define IN6_IS_ADDR_MC_GLOBAL (   a)    ip6_addr_ismulticast_global((ip6_addr_t*)(a))

Definition at line 139 of file inet.h.

◆ IN6_IS_ADDR_MC_LINKLOCAL

#define IN6_IS_ADDR_MC_LINKLOCAL (   a)    ip6_addr_ismulticast_linklocal((ip6_addr_t*)(a))

Definition at line 136 of file inet.h.

◆ IN6_IS_ADDR_MC_NODELOCAL

#define IN6_IS_ADDR_MC_NODELOCAL (   a)    ip6_addr_ismulticast_iflocal((ip6_addr_t*)(a))

Definition at line 135 of file inet.h.

◆ IN6_IS_ADDR_MC_ORGLOCAL

#define IN6_IS_ADDR_MC_ORGLOCAL (   a)    ip6_addr_ismulticast_orglocal((ip6_addr_t*)(a))

Definition at line 138 of file inet.h.

◆ IN6_IS_ADDR_MC_SITELOCAL

#define IN6_IS_ADDR_MC_SITELOCAL (   a)    ip6_addr_ismulticast_sitelocal((ip6_addr_t*)(a))

Definition at line 137 of file inet.h.

◆ IN6_IS_ADDR_MULTICAST

#define IN6_IS_ADDR_MULTICAST (   a)    ip6_addr_ismulticast((ip6_addr_t*)(a))

Definition at line 130 of file inet.h.

◆ IN6_IS_ADDR_SITELOCAL

#define IN6_IS_ADDR_SITELOCAL (   a)    ip6_addr_issitelocal((ip6_addr_t*)(a))

Definition at line 132 of file inet.h.

◆ IN6_IS_ADDR_UNSPECIFIED

#define IN6_IS_ADDR_UNSPECIFIED (   a)    ip6_addr_isany((ip6_addr_t*)(a))

Definition at line 128 of file inet.h.

◆ IN6_IS_ADDR_V4COMPAT

#define IN6_IS_ADDR_V4COMPAT (   a)    ip6_addr_isipv4compat((ip6_addr_t*)(a))

Definition at line 134 of file inet.h.

◆ IN6_IS_ADDR_V4MAPPED

#define IN6_IS_ADDR_V4MAPPED (   a)    ip6_addr_isipv4mappedipv6((ip6_addr_t*)(a))

Definition at line 133 of file inet.h.

◆ IN6ADDR_ANY_INIT

#define IN6ADDR_ANY_INIT   {{{0,0,0,0}}}

This macro can be used to initialize a variable of type struct in6_addr to the IPv6 wildcard address.

Definition at line 86 of file inet.h.

◆ IN6ADDR_LOOPBACK_INIT

#define IN6ADDR_LOOPBACK_INIT   {{{0,0,0,PP_HTONL(1)}}}

This macro can be used to initialize a variable of type struct in6_addr to the IPv6 loopback address.

Definition at line 89 of file inet.h.

◆ IN_BADCLASS

#define IN_BADCLASS (   a)    IP_BADCLASS(a)

Definition at line 124 of file inet.h.

◆ IN_CLASSA

#define IN_CLASSA (   a)    IP_CLASSA(a)

Definition at line 97 of file inet.h.

◆ IN_CLASSA_HOST

#define IN_CLASSA_HOST   IP_CLASSA_HOST

Definition at line 100 of file inet.h.

◆ IN_CLASSA_MAX

#define IN_CLASSA_MAX   IP_CLASSA_MAX

Definition at line 101 of file inet.h.

◆ IN_CLASSA_NET

#define IN_CLASSA_NET   IP_CLASSA_NET

Definition at line 98 of file inet.h.

◆ IN_CLASSA_NSHIFT

#define IN_CLASSA_NSHIFT   IP_CLASSA_NSHIFT

Definition at line 99 of file inet.h.

◆ IN_CLASSB

#define IN_CLASSB (   b)    IP_CLASSB(b)

Definition at line 103 of file inet.h.

◆ IN_CLASSB_HOST

#define IN_CLASSB_HOST   IP_CLASSB_HOST

Definition at line 106 of file inet.h.

◆ IN_CLASSB_MAX

#define IN_CLASSB_MAX   IP_CLASSB_MAX

Definition at line 107 of file inet.h.

◆ IN_CLASSB_NET

#define IN_CLASSB_NET   IP_CLASSB_NET

Definition at line 104 of file inet.h.

◆ IN_CLASSB_NSHIFT

#define IN_CLASSB_NSHIFT   IP_CLASSB_NSHIFT

Definition at line 105 of file inet.h.

◆ IN_CLASSC

#define IN_CLASSC (   c)    IP_CLASSC(c)

Definition at line 109 of file inet.h.

◆ IN_CLASSC_HOST

#define IN_CLASSC_HOST   IP_CLASSC_HOST

Definition at line 112 of file inet.h.

◆ IN_CLASSC_MAX

#define IN_CLASSC_MAX   IP_CLASSC_MAX

Definition at line 113 of file inet.h.

◆ IN_CLASSC_NET

#define IN_CLASSC_NET   IP_CLASSC_NET

Definition at line 110 of file inet.h.

◆ IN_CLASSC_NSHIFT

#define IN_CLASSC_NSHIFT   IP_CLASSC_NSHIFT

Definition at line 111 of file inet.h.

◆ IN_CLASSD

#define IN_CLASSD (   d)    IP_CLASSD(d)

Definition at line 115 of file inet.h.

◆ IN_CLASSD_HOST

#define IN_CLASSD_HOST   IP_CLASSD_HOST /* routing needn't know. */

Definition at line 118 of file inet.h.

◆ IN_CLASSD_MAX

#define IN_CLASSD_MAX   IP_CLASSD_MAX

Definition at line 119 of file inet.h.

◆ IN_CLASSD_NET

#define IN_CLASSD_NET   IP_CLASSD_NET /* These ones aren't really */

Definition at line 116 of file inet.h.

◆ IN_CLASSD_NSHIFT

#define IN_CLASSD_NSHIFT   IP_CLASSD_NSHIFT /* net and host fields, but */

Definition at line 117 of file inet.h.

◆ IN_EXPERIMENTAL

#define IN_EXPERIMENTAL (   a)    IP_EXPERIMENTAL(a)

Definition at line 123 of file inet.h.

◆ IN_LOOPBACKNET

#define IN_LOOPBACKNET   IP_LOOPBACKNET

Definition at line 126 of file inet.h.

◆ IN_MULTICAST

#define IN_MULTICAST (   a)    IP_MULTICAST(a)

Definition at line 121 of file inet.h.

◆ INADDR_ANY

#define INADDR_ANY   IPADDR_ANY

0.0.0.0

Definition at line 80 of file inet.h.

◆ INADDR_BROADCAST

#define INADDR_BROADCAST   IPADDR_BROADCAST

255.255.255.255

Definition at line 82 of file inet.h.

◆ INADDR_LOOPBACK

#define INADDR_LOOPBACK   IPADDR_LOOPBACK

127.0.0.1

Definition at line 78 of file inet.h.

◆ INADDR_NONE

#define INADDR_NONE   IPADDR_NONE

255.255.255.255

Definition at line 76 of file inet.h.

◆ INET_ADDRSTRLEN

#define INET_ADDRSTRLEN   IP4ADDR_STRLEN_MAX

Definition at line 142 of file inet.h.

◆ s6_addr

#define s6_addr   un.u8_addr

Definition at line 72 of file inet.h.

Typedef Documentation

◆ in_addr_t

typedef u32_t in_addr_t

Definition at line 60 of file inet.h.

Variable Documentation

◆ in6addr_any

const struct in6_addr in6addr_any
extern

This variable is initialized by the system to contain the wildcard IPv6 address.