summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/ftpd.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/include/rtems/ftpd.h')
-rw-r--r--cpukit/include/rtems/ftpd.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/cpukit/include/rtems/ftpd.h b/cpukit/include/rtems/ftpd.h
index f33ca59d3a..b8d5e779f3 100644
--- a/cpukit/include/rtems/ftpd.h
+++ b/cpukit/include/rtems/ftpd.h
@@ -5,7 +5,7 @@
#ifndef _RTEMS_FTPD_H
#define _RTEMS_FTPD_H
-#include <rtems/rtems/tasks.h>
+#include <rtems.h>
#ifdef __cplusplus
extern "C" {
@@ -54,6 +54,7 @@ struct rtems_ftpd_configuration
3 - browse-only */
rtems_shell_login_check_t login; /* Login check or 0 to ignore
user/passwd. */
+ bool verbose; /* Say hello! */
};
/*
@@ -65,6 +66,10 @@ struct rtems_ftpd_configuration
#define TRANSIENT 4 /* transient negative completion */
#define ERROR 5 /* permanent negative completion */
+int rtems_ftpd_start(const struct rtems_ftpd_configuration *config);
+
+extern struct rtems_ftpd_configuration rtems_ftpd_configuration;
+
int rtems_initialize_ftpd(void);
#ifdef __cplusplus