2015-03-17 16:34:01 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Freie Universität Berlin
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2015-08-10 02:41:08 +02:00
|
|
|
* @defgroup net_gnrc Generic (gnrc) network stack.
|
2015-03-17 16:34:01 +01:00
|
|
|
* @ingroup net
|
2015-08-10 02:41:08 +02:00
|
|
|
* @brief RIOT's modular default IP network stack.
|
2015-03-17 16:34:01 +01:00
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
2015-08-10 02:41:08 +02:00
|
|
|
* @brief Pseudo header that includes all gnrc network stack base modules
|
2015-03-17 16:34:01 +01:00
|
|
|
*
|
|
|
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
|
|
|
*/
|
|
|
|
|
2015-08-17 15:41:29 +02:00
|
|
|
#ifndef GNRC_NETBASE_H_
|
|
|
|
#define GNRC_NETBASE_H_
|
2015-03-17 16:34:01 +01:00
|
|
|
|
2015-08-06 15:37:11 +02:00
|
|
|
#include "net/netopt.h"
|
2015-08-17 15:41:29 +02:00
|
|
|
#include "net/gnrc/netdev.h"
|
|
|
|
#include "net/gnrc/netapi.h"
|
|
|
|
#include "net/gnrc/netreg.h"
|
|
|
|
#include "net/gnrc/nettype.h"
|
|
|
|
#include "net/gnrc/netif.h"
|
|
|
|
#include "net/gnrc/netif/hdr.h"
|
|
|
|
#include "net/gnrc/pktbuf.h"
|
|
|
|
#include "net/gnrc/pkt.h"
|
2015-03-17 16:34:01 +01:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* this file does not provide anything on it's own */
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-08-17 15:41:29 +02:00
|
|
|
#endif /* GNRC_NETBASE_H_ */
|
2015-03-17 16:34:01 +01:00
|
|
|
/** @} */
|