Go to the documentation of this file.
99 #ifndef NET_GNRC_IPV6_H
100 #define NET_GNRC_IPV6_H
129 #ifndef GNRC_IPV6_STACK_SIZE
130 #define GNRC_IPV6_STACK_SIZE (THREAD_STACKSIZE_DEFAULT)
136 #ifndef GNRC_IPV6_PRIO
137 #define GNRC_IPV6_PRIO (THREAD_PRIORITY_MAIN - 3)
148 #ifndef CONFIG_GNRC_IPV6_MSG_QUEUE_SIZE_EXP
149 #define CONFIG_GNRC_IPV6_MSG_QUEUE_SIZE_EXP (3U)
168 #define GNRC_IPV6_STATIC_LLADDR
175 #ifndef GNRC_IPV6_MSG_QUEUE_SIZE
176 #define GNRC_IPV6_MSG_QUEUE_SIZE (1 << CONFIG_GNRC_IPV6_MSG_QUEUE_SIZE_EXP)
194 #ifndef GNRC_IPV6_FIB_TABLE_SIZE
195 # ifdef MODULE_GNRC_RPL
196 # define GNRC_IPV6_FIB_TABLE_SIZE (20)
198 # define GNRC_IPV6_FIB_TABLE_SIZE (5)
IPv6 include gathering header.
int16_t kernel_pid_t
Unique process identifier.
Types and functions for FIB.
Includes all essential GNRC network stack base modules.
kernel_pid_t gnrc_ipv6_pid
The PID to the IPv6 thread.
Meta information of a FIB table.
Scheduler API definition.
Definititions for IPv6 extension headers.
ipv6_hdr_t * gnrc_ipv6_get_header(gnrc_pktsnip_t *pkt)
Get the IPv6 header from a given list of gnrc_pktsnip_t.
Data type to represent an IPv6 packet header.
Type to represent parts (either headers or payload) of a packet, called snips.
kernel_pid_t gnrc_ipv6_init(void)
Initialization of the IPv6 thread.