1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/sys/net/routing/aodvv2/aodv.h

132 lines
4.2 KiB
C
Raw Normal View History

/*
* Copyright (C) 2014 Freie Universität Berlin
* Copyright (C) 2014 Lotte Steenbrink <lotte.steenbrink@fu-berlin.de>
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
/**
* @ingroup aodvv2
* @{
*
* @file aodv.h
* @brief aodvv2 routing protocol
*
* @author Lotte Steenbrink <lotte.steenbrink@fu-berlin.de>
*/
#ifndef AODV_H_
#define AODV_H_
#include <sixlowpan/ip.h>
#include "sixlowpan.h"
#include "kernel.h"
#include "udp.h"
#include "socket_base/socket.h"
#include "net_help.h"
#include "net_if.h"
#include "aodvv2/types.h"
#include "constants.h"
#include "seqnum.h"
#include "routingtable.h"
#include "utils.h"
#include "reader.h"
#include "writer.h"
#include "thread.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief This struct contains data which needs to be put into a RREQ or RREP.
* It is used to transport this data in a message to the sender_thread.
* @note Please note that it is for internal use only. To send a RREQ or RREP,
* please use the aodv_send_rreq() and aodv_send_rrep() functions.
*/
struct rreq_rrep_data
{
struct aodvv2_packet_data *packet_data; /**< Data for the RREQ or RREP */
struct netaddr *next_hop; /**< Next hop to which the RREQ
* or RREP should be sent */
};
/**
* @brief This struct contains data which needs to be put into a RERR.
* It is used to transport this data in a message to the sender_thread.
* @note Please note that it is for internal use only. To send a RERR,
* please use the aodv_send_rerr() function.
*/
struct rerr_data
{
struct unreachable_node *unreachable_nodes; /**< All unreachable nodes. Beware,
* this is the start of an array */
size_t len; /**< Length of the unreachable_nodes array */
int hoplimit; /**< hoplimit for the RERR */
struct netaddr *next_hop; /**< Next hop to which the RERR
* should be sent */
};
/**
* @brief This struct holds the data for a RREQ, RREP or RERR (contained
* in a rreq_rrep_data or rerr_data struct) and the next hop the RREQ, RREP
* or RERR should be sent to. It used for message communication with
* the sender_thread.
* @note Please note that it is for internal use only. To send a RERR,
* please use the aodv_send_rerr() function.
*/
struct msg_container
{
int type; /**< Message type (i.e. one of
* rfc5444_msg_type) */
void *data; /**< Pointer to the message data
* (i.e. rreq_rrep_data or rerr_data) */
};
/**
* @brief When set as ipv6_iface_routing_provider, this function is called by
* ipv6_sendto() to determine the next hop towards dest. This function
* is non-blocking.
*
* @param[in] dest destination of the packet
* @return Address of the next hop towards dest if there is any,
* NULL if there is none (yet)
*/
ipv6_addr_t *aodv_get_next_hop(ipv6_addr_t *dest);
/**
* @brief Dispatch a RREQ
*
* @param[in] packet_data Payload of the RREQ
*/
void aodv_send_rreq(struct aodvv2_packet_data *packet_data);
/**
* @brief Dispatch a RREP
*
* @param[in] packet_data Payload of the RREP
* @param[in] next_hop Address of the next hop the RREP should be sent to
*/
void aodv_send_rrep(struct aodvv2_packet_data *packet_data, struct netaddr *next_hop);
/**
* @brief Dispatch a RERR
*
* @param[in] unreachable_nodes All nodes that are marked as unreachable
* by this RERR
* @param[in] len Number of unreachable nodes
* @param[in] next_hop Address of the next hop the RERR should be sent to
*/
void aodv_send_rerr(struct unreachable_node unreachable_nodes[], size_t len,
struct netaddr *next_hop);
#ifdef __cplusplus
}
#endif
#endif /* AODV_H_ */