2015-11-16 19:57:08 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Inria
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ingroup examples
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief Showing minimum memory footprint of gnrc network stack
|
|
|
|
*
|
|
|
|
* @author Oliver Hahm <oliver.hahm@inria.fr>
|
|
|
|
*
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "msg.h"
|
|
|
|
#include "net/ipv6/addr.h"
|
2017-07-27 15:26:49 +02:00
|
|
|
#include "net/gnrc.h"
|
2017-11-16 18:06:46 +01:00
|
|
|
#include "net/gnrc/netif.h"
|
2022-06-02 12:38:33 +02:00
|
|
|
#include "net/netif.h"
|
2015-11-16 19:57:08 +01:00
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
|
|
|
|
puts("RIOT network stack example application");
|
|
|
|
|
2022-06-02 12:38:33 +02:00
|
|
|
/* print all IPv6 addresses */
|
|
|
|
printf("{\"IPv6 addresses\": [\"");
|
|
|
|
netifs_print_ipv6("\", \"");
|
|
|
|
puts("\"]}");
|
2015-11-16 19:57:08 +01:00
|
|
|
|
|
|
|
/* main thread exits */
|
|
|
|
return 0;
|
|
|
|
}
|