mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
Add Documentation for destiny.h
This commit is contained in:
parent
de33fcd31b
commit
446be54a24
@ -1,13 +1,43 @@
|
|||||||
/*
|
/**
|
||||||
* destiny.h
|
* destiny.h - Wraps all API types, constants and functions of the transport
|
||||||
|
* layer implementation.
|
||||||
*
|
*
|
||||||
* Created on: 03.09.2011
|
* Copyright (C) 2013 INRIA.
|
||||||
* Author: Oliver
|
*
|
||||||
|
* This file subject to the terms and conditions of the GNU Lesser General
|
||||||
|
* Public License. See the file LICENSE in the top level directory for more
|
||||||
|
* details.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @defgroup destiny DESTiny - Transport layer implementation
|
||||||
|
* @ingroup net
|
||||||
|
* @brief DESTiny module implements the transport layer. This includes
|
||||||
|
* 6LoWPAN UDP header compression and (experimental) 6LoWPAN TCP header
|
||||||
|
* compression.
|
||||||
|
* @see <a href="http://tools.ietf.org/html/rfc6282#section-4.3">
|
||||||
|
* RFC 6282 - Compression Format for IPv6 Datagrams over
|
||||||
|
* IEEE 802.15.4-Based Networks - UDP Header Compression
|
||||||
|
* </a>
|
||||||
|
* @see <a href="http://tools.ietf.org/html/draft-aayadi-6lowpan-tcphc-01">
|
||||||
|
* RFC draft-aayadi-6lowpan-tcphc-01 - TCP header compression for
|
||||||
|
* 6LoWPAN
|
||||||
|
* </a>
|
||||||
|
* @{
|
||||||
|
* @file
|
||||||
|
* @brief destiny functions
|
||||||
|
* @author Oliver Gesch <oliver.gesch@googlemail.com>
|
||||||
|
* @author Martin Lenders <mlenders@inf.fu-berlin.de>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef DESTINY_H
|
#ifndef DESTINY_H
|
||||||
#define DESTINY_H
|
#define DESTINY_H
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initializes transport layer.
|
||||||
|
*
|
||||||
|
* @return 0 on success, other else.
|
||||||
|
*/
|
||||||
int destiny_init_transport_layer(void);
|
int destiny_init_transport_layer(void);
|
||||||
|
|
||||||
#endif /* DESTINY_H */
|
#endif /* DESTINY_H */
|
||||||
|
Loading…
Reference in New Issue
Block a user