1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/sys/shell/commands/sc_zep.c
2015-08-18 23:00:07 +02:00

100 lines
2.2 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 <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <inttypes.h>
#include "net/ipv6/addr.h"
#include "net/gnrc/ipv6/netif.h"
#include "net/gnrc/nomac.h"
#include "net/gnrc/zep.h"
#include "thread.h"
static gnrc_zep_t zep;
static char zep_stack[THREAD_STACKSIZE_DEFAULT];
int _zep_init(int argc, char **argv)
{
uint16_t src_port = GNRC_ZEP_DEFAULT_PORT;
uint16_t dst_port = GNRC_ZEP_DEFAULT_PORT;
ipv6_addr_t dst_addr;
int res;
if (argc < 2) {
printf("usage: %s dst_addr [src_port [dst_port]]\n", argv[0]);
return 1;
}
if (argc > 2) {
src_port = (uint16_t)atoi(argv[2]);
}
if (argc > 3) {
dst_port = (uint16_t)atoi(argv[3]);
}
ipv6_addr_from_str(&dst_addr, argv[1]);
if ((res = gnrc_zep_init(&zep, src_port, &dst_addr, dst_port)) < 0) {
switch (res) {
case -EADDRINUSE:
printf("error: Source port %" PRIu16 " already in use\n", src_port);
break;
case -EEXIST:
puts("error: ZEP already intialized");
break;
case -ENOTSUP:
printf("error: dst_addr (%s) invalid\n", argv[1]);
break;
case -EOVERFLOW:
puts("error: too many threads running");
break;
default:
puts("unexpected error");
break;
}
return 1;
}
if ((res = gnrc_nomac_init(zep_stack, sizeof(zep_stack), THREAD_PRIORITY_MAIN - 3,
"zep_l2", (gnrc_netdev_t *)&zep)) < 0) {
switch (res) {
case -EOVERFLOW:
puts("error: too many threads running");
break;
default:
puts("unexpected error");
break;
}
return 1;
}
#ifdef MODULE_GNRC_IPV6_NETIF
gnrc_ipv6_netif_init_by_dev();
#endif
return 0;
}
/** @} */