summaryrefslogtreecommitdiffstats
path: root/rtemsbsd/ftpd/ftpd-init.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-04-30 11:07:05 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-04-30 13:42:18 +0200
commit443a058db4ee8032221da84823f39f411796ff63 (patch)
treedb5850817d66462ff2f869dfb19c0f0840282cc8 /rtemsbsd/ftpd/ftpd-init.c
parentAdd DHCP clientid to test default network init (diff)
downloadrtems-libbsd-443a058db4ee8032221da84823f39f411796ff63.tar.bz2
Use network services from RTEMS
Close #3419.
Diffstat (limited to 'rtemsbsd/ftpd/ftpd-init.c')
-rw-r--r--rtemsbsd/ftpd/ftpd-init.c39
1 files changed, 0 insertions, 39 deletions
diff --git a/rtemsbsd/ftpd/ftpd-init.c b/rtemsbsd/ftpd/ftpd-init.c
deleted file mode 100644
index 2741a633..00000000
--- a/rtemsbsd/ftpd/ftpd-init.c
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- * FTP Server Daemon
- *
- * Submitted by: Jake Janovetz <janovetz@tempest.ece.uiuc.edu>
- *
- * Changed by: Sergei Organov <osv@javad.ru> (OSV)
- * Arnout Vandecappelle <arnout@mind.be> (AV)
- * Sebastien Bourdeauducq <sebastien@milkymist.org> (MM)
- */
-
-/*************************************************************************
- * ftpd-init.c
- *************************************************************************
- * Description:
- *
- * This file contains the legacy daemon initialisation.
- *
- *************************************************************************/
-
-#if HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include <rtems/ftpd.h>
-
-/* Configuration table */
-extern struct rtems_ftpd_configuration rtems_ftpd_configuration;
-
-/*
- * rtems_initialize_ftpd
- *
- * Call the FTPD start function.
- */
-int
-rtems_initialize_ftpd(void)
-{
- rtems_ftpd_configuration.verbose = true;
- return rtems_ftpd_start(&rtems_ftpd_configuration);
-}