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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup net_ng_netbase Network Stack Pseudo Header
|
|
|
|
* @ingroup net
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief Pseudo header that includes all network stack base modules
|
|
|
|
*
|
|
|
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef NG_NETBASE_H_
|
|
|
|
#define NG_NETBASE_H_
|
|
|
|
|
2015-08-06 15:37:11 +02:00
|
|
|
#include "net/netopt.h"
|
2015-03-17 16:34:01 +01:00
|
|
|
#include "net/ng_netdev.h"
|
|
|
|
#include "net/ng_netapi.h"
|
|
|
|
#include "net/ng_netreg.h"
|
|
|
|
#include "net/ng_nettype.h"
|
|
|
|
#include "net/ng_netif.h"
|
2015-03-19 15:28:41 +01:00
|
|
|
#include "net/ng_netif/hdr.h"
|
2015-03-17 16:34:01 +01:00
|
|
|
#include "net/ng_pktbuf.h"
|
|
|
|
#include "net/ng_pkt.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* this file does not provide anything on it's own */
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* NG_NETBASE_H_ */
|
|
|
|
/** @} */
|