source: rtems/cpukit/ftpd/ftpd-init.c @ bdd4eb87

5
Last change on this file since bdd4eb87 was b771cb4, checked in by Sebastian Huber <sebastian.huber@…>, on 04/30/18 at 08:11:37

ftpd: Always build FTP daemon

Add support for libbsd initialization.

Update #3419.

  • Property mode set to 100644
File size: 441 bytes
Line 
1/*
2 * Copyright (c) 2018 embedded brains GmbH.  All rights reserved.
3 *
4 * The license and distribution terms for this file may be
5 * found in the file LICENSE in this distribution or at
6 * http://www.rtems.org/license/LICENSE.
7 */
8
9#if HAVE_CONFIG_H
10#include "config.h"
11#endif
12
13#include <rtems/ftpd.h>
14
15int rtems_initialize_ftpd( void )
16{
17  rtems_ftpd_configuration.verbose = true;
18  return rtems_ftpd_start( &rtems_ftpd_configuration );
19}
Note: See TracBrowser for help on using the repository browser.