Loading...
Searching...
No Matches
ndp.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2017 Freie Universität Berlin
3 *
4 * This file is subject to the terms and conditions of the GNU Lesser
5 * General Public License v2.1. See the file LICENSE in the top level
6 * directory for more details.
7 */
8
20#ifndef NET_GNRC_NDP_H
21#define NET_GNRC_NDP_H
22
23#include <stdint.h>
24
25#include "net/gnrc/pkt.h"
26#include "net/gnrc/netif.h"
27#include "net/ipv6/addr.h"
28#include "net/ipv6/hdr.h"
29
30#ifdef __cplusplus
31extern "C" {
32#endif
33
37#ifndef GNRC_NETTYPE_NDP
38# if defined(MODULE_GNRC_IPV6) || DOXYGEN
39# define GNRC_NETTYPE_NDP (GNRC_NETTYPE_IPV6) /* usual configuration */
40# else
41# define GNRC_NETTYPE_NDP (GNRC_NETTYPE_UNDEF) /* for testing */
42# endif
43#endif /* GNRC_NETTYPE_NDP */
44
61 gnrc_pktsnip_t *options);
62
91 gnrc_pktsnip_t *options);
92
105
133gnrc_pktsnip_t *gnrc_ndp_rtr_adv_build(uint8_t cur_hl, uint8_t flags,
134 uint16_t ltime, uint32_t reach_time,
135 uint32_t retrans_timer,
136 gnrc_pktsnip_t *options);
137
149gnrc_pktsnip_t *gnrc_ndp_opt_build(uint8_t type, size_t size,
150 gnrc_pktsnip_t *next);
151
172 uint8_t l2addr_len,
173 gnrc_pktsnip_t *next);
174
195 uint8_t l2addr_len,
196 gnrc_pktsnip_t *next);
197
232 uint8_t prefix_len,
233 uint32_t valid_ltime, uint32_t pref_ltime,
234 uint8_t flags, gnrc_pktsnip_t *next);
261 uint8_t prefix_len,
262 uint32_t route_ltime,
263 uint8_t flags, gnrc_pktsnip_t *next);
264
280
301 unsigned addrs_num,
302 gnrc_pktsnip_t *next);
303
325 const ipv6_addr_t *src, const ipv6_addr_t *dst,
326 gnrc_pktsnip_t *ext_opts);
327
371 const ipv6_addr_t *dst, bool supply_tl2a,
372 gnrc_pktsnip_t *ext_opts);
373
384
411 const ipv6_addr_t *dst, bool fin,
412 gnrc_pktsnip_t *ext_opts);
413
414#ifdef __cplusplus
415}
416#endif
417
418#endif /* NET_GNRC_NDP_H */
Definition for GNRC's network interfaces.
gnrc_pktsnip_t * gnrc_ndp_opt_mtu_build(uint32_t mtu, gnrc_pktsnip_t *next)
Builds the MTU option.
gnrc_pktsnip_t * gnrc_ndp_nbr_adv_build(const ipv6_addr_t *tgt, uint8_t flags, gnrc_pktsnip_t *options)
Builds a neighbor advertisement message for sending.
gnrc_pktsnip_t * gnrc_ndp_rtr_sol_build(gnrc_pktsnip_t *options)
Builds a router solicitation message for sending.
void gnrc_ndp_nbr_sol_send(const ipv6_addr_t *tgt, gnrc_netif_t *netif, const ipv6_addr_t *src, const ipv6_addr_t *dst, gnrc_pktsnip_t *ext_opts)
Send pre-compiled neighbor solicitation depending on a given network interface.
gnrc_pktsnip_t * gnrc_ndp_opt_pi_build(const ipv6_addr_t *prefix, uint8_t prefix_len, uint32_t valid_ltime, uint32_t pref_ltime, uint8_t flags, gnrc_pktsnip_t *next)
Builds the prefix information option.
gnrc_pktsnip_t * gnrc_ndp_rtr_adv_build(uint8_t cur_hl, uint8_t flags, uint16_t ltime, uint32_t reach_time, uint32_t retrans_timer, gnrc_pktsnip_t *options)
Builds a router advertisement message for sending.
void gnrc_ndp_rtr_sol_send(gnrc_netif_t *netif, const ipv6_addr_t *dst)
Send pre-compiled router solicitation depending on a given network interface.
gnrc_pktsnip_t * gnrc_ndp_opt_build(uint8_t type, size_t size, gnrc_pktsnip_t *next)
Builds a generic NDP option.
gnrc_pktsnip_t * gnrc_ndp_nbr_sol_build(const ipv6_addr_t *tgt, gnrc_pktsnip_t *options)
Builds a neighbor solicitation message for sending.
gnrc_pktsnip_t * gnrc_ndp_opt_tl2a_build(const uint8_t *l2addr, uint8_t l2addr_len, gnrc_pktsnip_t *next)
Builds the target link-layer address option.
gnrc_pktsnip_t * gnrc_ndp_opt_rdnss_build(uint32_t lifetime, ipv6_addr_t *addrs, unsigned addrs_num, gnrc_pktsnip_t *next)
Builts the recursive DNS server option.
void gnrc_ndp_rtr_adv_send(gnrc_netif_t *netif, const ipv6_addr_t *src, const ipv6_addr_t *dst, bool fin, gnrc_pktsnip_t *ext_opts)
Send pre-compiled router advertisement depending on a given network interface.
void gnrc_ndp_nbr_adv_send(const ipv6_addr_t *tgt, gnrc_netif_t *netif, const ipv6_addr_t *dst, bool supply_tl2a, gnrc_pktsnip_t *ext_opts)
Send pre-compiled neighbor advertisement depending on a given network interface.
gnrc_pktsnip_t * gnrc_ndp_opt_ri_build(const ipv6_addr_t *prefix, uint8_t prefix_len, uint32_t route_ltime, uint8_t flags, gnrc_pktsnip_t *next)
Builds the route information option.
gnrc_pktsnip_t * gnrc_ndp_opt_sl2a_build(const uint8_t *l2addr, uint8_t l2addr_len, gnrc_pktsnip_t *next)
Builds the source link-layer address option.
Definitions for IPv6 addresses.
General definitions for network packets and their helper functions.
IPv6 header type and helper function definitions.
Representation of a network interface.
Definition netif.h:135
Type to represent parts (either headers or payload) of a packet, called snips.
Definition pkt.h:108
Data type to represent an IPv6 address.
Definition addr.h:72