dodag.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2013 INRIA.
3  * Copyright (C) 2015 Cenk Gündoğan <cnkgndgn@gmail.com>
4  *
5  * This file is subject to the terms and conditions of the GNU Lesser
6  * General Public License v2.1. See the file LICENSE in the top level
7  * directory for more details.
8  */
9 
10 #pragma once
11 
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28 
29 #include "net/ipv6/addr.h"
30 #include "trickle.h"
31 #include "net/gnrc/rpl.h"
32 #include "net/gnrc/rpl/structs.h"
33 
37 #ifndef GNRC_RPL_INSTANCES_NUMOF
38 #define GNRC_RPL_INSTANCES_NUMOF (1)
39 #endif
40 
44 #ifndef GNRC_RPL_PARENTS_NUMOF
45 #define GNRC_RPL_PARENTS_NUMOF (3)
46 #endif
47 
52 
57 
67 bool gnrc_rpl_instance_add(uint8_t instance_id, gnrc_rpl_instance_t **inst);
68 
77 bool gnrc_rpl_instance_remove_by_id(uint8_t instance_id);
78 
88 
98 
109 bool gnrc_rpl_dodag_init(gnrc_rpl_instance_t *instance, const ipv6_addr_t *dodag_id,
110  kernel_pid_t iface);
111 
118 
130  gnrc_rpl_parent_t **parent);
131 
141 
149 
157 
164 
171 
178 #ifdef __cplusplus
179 }
180 #endif
181 
bool gnrc_rpl_instance_add(uint8_t instance_id, gnrc_rpl_instance_t **inst)
Add a new RPL instance with the id instance_id.
#define GNRC_RPL_PARENTS_NUMOF
Number of RPL parents.
Definition: dodag.h:45
bool gnrc_rpl_parent_remove(gnrc_rpl_parent_t *parent)
Remove the parent from its DODAG.
gnrc_rpl_parent_t gnrc_rpl_parents[GNRC_RPL_PARENTS_NUMOF]
RPL parent table.
void gnrc_rpl_parent_update(gnrc_rpl_dodag_t *dodag, gnrc_rpl_parent_t *parent)
Update a parent of the dodag.
bool gnrc_rpl_parent_add_by_addr(gnrc_rpl_dodag_t *dodag, ipv6_addr_t *addr, gnrc_rpl_parent_t **parent)
Add a new parent with the IPv6 address addr to the dodag.
#define GNRC_RPL_INSTANCES_NUMOF
Number of RPL instances.
Definition: dodag.h:38
bool gnrc_rpl_instance_remove(gnrc_rpl_instance_t *inst)
Remove a RPL instance with the pointer inst.
void gnrc_rpl_cleanup_start(gnrc_rpl_dodag_t *dodag)
Removes the dodag state of dodag after CONFIG_GNRC_RPL_CLEANUP_TIME milliseconds.
gnrc_rpl_instance_t * gnrc_rpl_instance_get(uint8_t instance_id)
Get the RPL instance with the id instance_id.
void gnrc_rpl_router_operation(gnrc_rpl_dodag_t *dodag)
Operate as router.
bool gnrc_rpl_dodag_init(gnrc_rpl_instance_t *instance, const ipv6_addr_t *dodag_id, kernel_pid_t iface)
Initialize a new RPL DODAG with the id dodag_id for the instance instance.
bool gnrc_rpl_instance_remove_by_id(uint8_t instance_id)
Remove a RPL instance with the id instance_id.
void gnrc_rpl_leaf_operation(gnrc_rpl_dodag_t *dodag)
Operate as leaf.
gnrc_rpl_instance_t gnrc_rpl_instances[GNRC_RPL_INSTANCES_NUMOF]
RPL instance table.
void gnrc_rpl_dodag_remove_all_parents(gnrc_rpl_dodag_t *dodag)
Remove all parents from the dodag.
void gnrc_rpl_local_repair(gnrc_rpl_dodag_t *dodag)
Start a local repair.
int16_t kernel_pid_t
Unique process identifier.
Definition: sched.h:138
Definitions for IPv6 addresses.
RPL header.
RPL data structs.
struct gnrc_rpl_instance gnrc_rpl_instance_t
Instance representation.
Definition: structs.h:234
struct gnrc_rpl_parent gnrc_rpl_parent_t
Parent representation.
Definition: structs.h:229
struct gnrc_rpl_dodag gnrc_rpl_dodag_t
DODAG representation.
Definition: structs.h:224
Trickle timer interface definition.
Data type to represent an IPv6 address.
Definition: addr.h:67