mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-27 04:10:47 +00:00
Integrated SSH daemon authenticating against FSUTILS_PASSWD, with an ECDSA P-256 host key and an NSH session over a PTY per connection. Built from the upstream Dropbear tarball (pinned commit) and patched for NuttX, using Dropbear's bundled libtomcrypt for all crypto. setsid() (apache/nuttx#19184) and link() now come from NuttX, not local stubs. Signed-off-by: Felipe Moura <moura.fmo@gmail.com>
20 lines
735 B
C
20 lines
735 B
C
/****************************************************************************
|
|
* apps/netutils/dropbear/port/config.h
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
****************************************************************************/
|
|
|
|
#ifndef __APPS_NETUTILS_DROPBEAR_PORT_CONFIG_H
|
|
#define __APPS_NETUTILS_DROPBEAR_PORT_CONFIG_H
|
|
|
|
/* Dropbear looks for a file named config.h. Keep this wrapper name stable;
|
|
* NuttX-specific autoconf replacements live in nuttx_config.h.
|
|
*/
|
|
|
|
/****************************************************************************
|
|
* Included Files
|
|
****************************************************************************/
|
|
|
|
#include "nuttx_config.h"
|
|
|
|
#endif /* __APPS_NETUTILS_DROPBEAR_PORT_CONFIG_H */
|