mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
87 lines
1.7 KiB
C
87 lines
1.7 KiB
C
|
/*
|
||
|
* 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.
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* @{
|
||
|
*
|
||
|
* @file
|
||
|
*/
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
#include <errno.h>
|
||
|
#include "kernel_types.h"
|
||
|
#include "net/ng_netif.h"
|
||
|
|
||
|
static ng_netif_handler_t if_handler[] = {
|
||
|
#ifdef MODULE_NG_IPV6
|
||
|
{ ipv6_if_add, ipv6_if_remove },
|
||
|
#endif
|
||
|
/* #ifdef MODULE_NG_IPV4
|
||
|
* { ipv4_if_add, ipv4_if_remove },
|
||
|
* #endif ... you get the idea
|
||
|
*/
|
||
|
{ NULL, NULL }
|
||
|
};
|
||
|
|
||
|
static kernel_pid_t ifs[NG_NETIF_NUMOF];
|
||
|
|
||
|
void ng_netif_init(void)
|
||
|
{
|
||
|
for (int i = 0; i < NG_NETIF_NUMOF; i++) {
|
||
|
ifs[i] = KERNEL_PID_UNDEF;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
int ng_netif_add(kernel_pid_t pid)
|
||
|
{
|
||
|
for (int i = 0; i < NG_NETIF_NUMOF; i++) {
|
||
|
if (ifs[i] == pid) { /* avoid duplicates */
|
||
|
return 0;
|
||
|
}
|
||
|
else if (ifs[i] == KERNEL_PID_UNDEF) {
|
||
|
ifs[i] = pid;
|
||
|
|
||
|
for (int j = 0; if_handler[j].add != NULL; j++) {
|
||
|
if_handler[j].add(pid);
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return -ENOMEM;
|
||
|
}
|
||
|
|
||
|
void ng_netif_remove(kernel_pid_t pid)
|
||
|
{
|
||
|
for (int i = 0; i < NG_NETIF_NUMOF; i++) {
|
||
|
if (ifs[i] == pid) {
|
||
|
ifs[i] = KERNEL_PID_UNDEF;
|
||
|
|
||
|
for (int j = 0; if_handler[j].remove != NULL; j++) {
|
||
|
if_handler[j].remove(pid);
|
||
|
}
|
||
|
|
||
|
return;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
kernel_pid_t *ng_netif_get(size_t *size)
|
||
|
{
|
||
|
for (*size = 0;
|
||
|
(*size < NG_NETIF_NUMOF) && (ifs[*size] != KERNEL_PID_UNDEF);
|
||
|
(*size)++);
|
||
|
|
||
|
return ifs;
|
||
|
}
|
||
|
|
||
|
/** @} */
|