[doc] Give files a common structure by placing license first (partial)
Followed by doxyen file and group tags. This patch is only a first attempt to make provide a clean structure, many more files require rework, too.
This commit is contained in:
parent
b0206e2f58
commit
85b494c16b
141 changed files with 2026 additions and 1994 deletions
|
@ -1,41 +1,3 @@
|
|||
/**
|
||||
* \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.
|
||||
*
|
||||
*
|
||||
* \section channels Channels
|
||||
*
|
||||
* The runicast module uses 1 channel.
|
||||
*
|
||||
*/
|
||||
|
||||
/*
|
||||
* Copyright (c) 2006, Swedish Institute of Computer Science.
|
||||
* All rights reserved.
|
||||
|
@ -75,6 +37,44 @@
|
|||
* Adam Dunkels <adam@sics.se>
|
||||
*/
|
||||
|
||||
/**
|
||||
* \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.
|
||||
*
|
||||
*
|
||||
* \section channels Channels
|
||||
*
|
||||
* The runicast module uses 1 channel.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef RUNICAST_H_
|
||||
#define RUNICAST_H_
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue