/* * SPDX-FileCopyrightText: 2019 HAW Hamburg * SPDX-License-Identifier: LGPL-2.1-only */ /** * @ingroup examples * @{ * * @file * @brief Example application for DTLS sock * * @author Aiman Ismail */ #include #include "shell.h" int main(void) { puts("DTLS sock example application"); /* start shell */ puts("All up, running the shell now"); char line_buf[SHELL_DEFAULT_BUFSIZE]; shell_run(NULL, line_buf, SHELL_DEFAULT_BUFSIZE); /* should never be reached */ return 0; }