1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 09:52:45 +01:00
RIOT/sys/net/application_layer/telnet/stdio_telnet.c

32 lines
734 B
C
Raw Normal View History

/*
* Copyright (C) 2021 ML!PA Consulting GmbH
*
* 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.
*/
/**
* @defgroup net_telnet_stdio STDIO via telnet
* @ingroup sys_stdio
* @{
*
* @file
* @brief STDIO over Telnet implementation
*
* This file implements STDIO via a Telnet server with fallback UART output
*
* @author Benjamin Valentin <benjamin.valentin@ml-pa.com>
*
* @}
*/
#include <errno.h>
#include "board.h"
#include "kernel_defines.h"
#include "net/telnet.h"
2023-06-14 18:51:18 +02:00
#include "stdio_base.h"
2023-06-14 18:51:18 +02:00
STDIO_PROVIDER(STDIO_TELNET, NULL, telnet_server_disconnect, telnet_server_write)