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

48 lines
1.4 KiB
C
Raw Normal View History

2013-09-20 15:31:57 +02:00
/**
* destiny.h - Wraps all API types, constants and functions of the transport
* layer implementation.
2013-09-20 14:29:00 +02:00
*
2013-09-20 15:31:57 +02:00
* Copyright (C) 2013 INRIA.
*
2013-11-22 20:47:05 +01:00
* This file is subject to the terms and conditions of the GNU Lesser General
2013-09-20 15:31:57 +02:00
* 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>
2013-09-20 14:29:00 +02:00
*/
#ifndef DESTINY_H
#define DESTINY_H
2013-09-20 15:13:18 +02:00
#include "destiny/in.h"
2013-09-23 12:40:16 +02:00
#include "destiny/socket.h"
#include "destiny/types.h"
2013-09-20 15:13:18 +02:00
2013-09-20 15:31:57 +02:00
/**
* Initializes transport layer.
*
* @return 0 on success, other else.
*/
2013-09-20 14:29:00 +02:00
int destiny_init_transport_layer(void);
#endif /* DESTINY_H */