/* * Copyright (C) 2016 Wentao Shang * * 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 NDN ping application * * @author Wentao Shang * * @} */ #include #include "ndn-riot/ndn.h" #include "shell.h" #include "msg.h" extern int ndn_ping(int argc, char **argv); static const shell_command_t shell_commands[] = { { "ndnping", "start ndn-ping client and server", ndn_ping }, { NULL, NULL, NULL } }; int main(void) { /* start shell */ puts("All up, running the shell now"); char line_buf[SHELL_DEFAULT_BUFSIZE]; shell_run(shell_commands, line_buf, SHELL_DEFAULT_BUFSIZE); /* should be never reached */ return 0; }