Skip to content

Commit

Permalink
Merge pull request #2433 from authmillenon/ng_ipv6_addr/feat/initial
Browse files Browse the repository at this point in the history
ng_ipv6_addr: initial import
  • Loading branch information
miri64 committed Feb 20, 2015
2 parents 2ee9d41 + ff36abb commit dad4e8d
Show file tree
Hide file tree
Showing 9 changed files with 1,365 additions and 0 deletions.
3 changes: 3 additions & 0 deletions sys/Makefile
Expand Up @@ -65,6 +65,9 @@ endif
ifneq (,$(filter oneway_malloc,$(USEMODULE)))
DIRS += oneway-malloc
endif
ifneq (,$(filter ng_ipv6_addr,$(USEMODULE)))
DIRS += net/network_layer/ng_ipv6/addr
endif
ifneq (,$(filter ng_netif,$(USEMODULE)))
DIRS += net/crosslayer/ng_netif
endif
Expand Down
40 changes: 40 additions & 0 deletions sys/include/net/ng_ipv6.h
@@ -0,0 +1,40 @@
/*
* Copyright (C) 2015 Martine Lenders <mlenders@inf.fu-berlin.de>
*
* 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_ipv6 IPv6
* @ingroup net
* @brief New IPv6 implementation
* @{
*
* @file
* @brief Definitions for IPv6
*
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
*/


#ifndef NG_IPV6_H_
#define NG_IPV6_H_

#include "net/ng_ipv6/addr.h"

#ifdef __cplusplus
extern "C" {
#endif



#ifdef __cplusplus
}
#endif

#endif /* NG_IPV6_H_ */
/**
* @}
*/

0 comments on commit dad4e8d

Please sign in to comment.