summaryrefslogtreecommitdiff
path: root/cpukit/ftpd/ftpd-init.c
blob: 35546ff553840d75a2423b0d63450186be13a471 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * Copyright (c) 2018 embedded brains GmbH.  All rights reserved.
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
 * http://www.rtems.org/license/LICENSE.
 */

#if HAVE_CONFIG_H
#include "config.h"
#endif

#include <rtems/ftpd.h>

int rtems_initialize_ftpd( void )
{
  rtems_ftpd_configuration.verbose = true;
  return rtems_ftpd_start( &rtems_ftpd_configuration );
}