2007-02-28 17:38:51 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2006, Swedish Institute of Computer Science.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. Neither the name of the Institute nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* This file is part of the Contiki operating system.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \file
|
2007-03-31 20:33:27 +02:00
|
|
|
* Reliable unicast header file
|
2007-02-28 17:38:51 +01:00
|
|
|
* \author
|
|
|
|
* Adam Dunkels <adam@sics.se>
|
|
|
|
*/
|
|
|
|
|
2014-11-08 01:15:42 +01:00
|
|
|
/**
|
|
|
|
* \addtogroup rime
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \defgroup rimerunicast Single-hop reliable unicast
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* The reliable single-hop unicast primitive (runicast) reliably sends
|
|
|
|
* a packet to a single-hop neighbor. The runicast primitive uses
|
|
|
|
* acknowledgements and retransmissions to ensure that the neighbor
|
|
|
|
* successfully receives the packet. When the receiver has
|
|
|
|
* acknowledged the packet, the ruc module notifies the sending
|
|
|
|
* application via a callback. The ruc primitive uses the stubborn
|
|
|
|
* single-hop unicast primitive to do retransmissions. Thus, the ruc
|
|
|
|
* primitive does not have to manage the details of setting up timers
|
|
|
|
* and doing retransmissions, but can concentrate on dealing with
|
|
|
|
* acknowledgements.
|
|
|
|
*
|
|
|
|
* The runicast primitive adds two packet attributes: the single-hop
|
|
|
|
* packet type and the single-hop packet ID. The runicast primitive
|
|
|
|
* uses the packet ID attribute as a sequence number for matching
|
|
|
|
* acknowledgement packets to the corresponding data packets.
|
|
|
|
*
|
|
|
|
* The application or protocol that uses the runicast primitive can
|
|
|
|
* specify the maximum number of transmissions that the ruc module
|
|
|
|
* should attempt before the packet times out. If a packet times out,
|
|
|
|
* the application or protocol that sent the packet is notified with a
|
|
|
|
* callback.
|
|
|
|
*
|
|
|
|
*
|
2015-02-15 16:31:28 +01:00
|
|
|
* \section runicast-channels Channels
|
2014-11-08 01:15:42 +01:00
|
|
|
*
|
|
|
|
* The runicast module uses 1 channel.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2013-11-24 16:57:08 +01:00
|
|
|
#ifndef RUNICAST_H_
|
|
|
|
#define RUNICAST_H_
|
2007-02-28 17:38:51 +01:00
|
|
|
|
2008-07-03 23:35:46 +02:00
|
|
|
#include "net/rime/stunicast.h"
|
2007-02-28 17:38:51 +01:00
|
|
|
|
2008-07-03 23:52:25 +02:00
|
|
|
struct runicast_conn;
|
2007-02-28 17:38:51 +01:00
|
|
|
|
2010-03-19 14:20:40 +01:00
|
|
|
|
|
|
|
#define RUNICAST_PACKET_ID_BITS 2
|
|
|
|
|
2009-03-12 22:58:20 +01:00
|
|
|
#define RUNICAST_ATTRIBUTES { PACKETBUF_ATTR_PACKET_TYPE, PACKETBUF_ATTR_BIT }, \
|
2010-03-19 14:20:40 +01:00
|
|
|
{ PACKETBUF_ATTR_PACKET_ID, PACKETBUF_ATTR_BIT * RUNICAST_PACKET_ID_BITS }, \
|
|
|
|
STUNICAST_ATTRIBUTES
|
2008-07-03 23:52:25 +02:00
|
|
|
struct runicast_callbacks {
|
2013-12-12 23:58:52 +01:00
|
|
|
void (* recv)(struct runicast_conn *c, const linkaddr_t *from, uint8_t seqno);
|
|
|
|
void (* sent)(struct runicast_conn *c, const linkaddr_t *to, uint8_t retransmissions);
|
|
|
|
void (* timedout)(struct runicast_conn *c, const linkaddr_t *to, uint8_t retransmissions);
|
2007-02-28 17:38:51 +01:00
|
|
|
};
|
|
|
|
|
2008-07-03 23:52:25 +02:00
|
|
|
struct runicast_conn {
|
2008-07-03 23:35:46 +02:00
|
|
|
struct stunicast_conn c;
|
2008-07-03 23:52:25 +02:00
|
|
|
const struct runicast_callbacks *u;
|
2008-02-24 23:05:27 +01:00
|
|
|
uint8_t sndnxt;
|
2009-03-03 13:19:46 +01:00
|
|
|
uint8_t is_tx;
|
2008-02-24 23:05:27 +01:00
|
|
|
uint8_t rxmit;
|
|
|
|
uint8_t max_rxmit;
|
2007-02-28 17:38:51 +01:00
|
|
|
};
|
|
|
|
|
2008-07-03 23:52:25 +02:00
|
|
|
void runicast_open(struct runicast_conn *c, uint16_t channel,
|
|
|
|
const struct runicast_callbacks *u);
|
|
|
|
void runicast_close(struct runicast_conn *c);
|
2007-02-28 17:38:51 +01:00
|
|
|
|
2013-12-12 23:58:52 +01:00
|
|
|
int runicast_send(struct runicast_conn *c, const linkaddr_t *receiver,
|
2009-11-08 20:40:16 +01:00
|
|
|
uint8_t max_retransmissions);
|
2007-02-28 17:38:51 +01:00
|
|
|
|
2009-03-03 13:19:46 +01:00
|
|
|
uint8_t runicast_is_transmitting(struct runicast_conn *c);
|
|
|
|
|
2013-11-24 16:57:08 +01:00
|
|
|
#endif /* RUNICAST_H_ */
|
2007-12-16 15:33:32 +01:00
|
|
|
/** @} */
|
|
|
|
/** @} */
|