summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libnetworking/rtems_servers/ftpd.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--c/src/lib/libnetworking/rtems_servers/ftpd.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/c/src/lib/libnetworking/rtems_servers/ftpd.h b/c/src/lib/libnetworking/rtems_servers/ftpd.h
deleted file mode 100644
index 6daaaf4d51..0000000000
--- a/c/src/lib/libnetworking/rtems_servers/ftpd.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * FTP Server Information
- *
- * $Id$
- */
-
-#ifndef __FTPD_H__
-#define __FTPD_H__
-
-
-#define FTPD_CONTROL_PORT 21
-
-typedef int (*rtems_ftpd_hookfunction)(unsigned char *, unsigned long);
-
-struct rtems_ftpd_hook
-{
- char *filename;
- rtems_ftpd_hookfunction hook_function;
-};
-
-struct rtems_ftpd_configuration
-{
- rtems_task_priority priority; /* FTPD task priority */
- unsigned long max_hook_filesize; /* Maximum buffersize */
- /* for hooks */
- int port; /* Well-known port */
- struct rtems_ftpd_hook *hooks; /* List of hooks */
-};
-
-/*
- * Reply codes.
- */
-#define PRELIM 1 /* positive preliminary */
-#define COMPLETE 2 /* positive completion */
-#define CONTINUE 3 /* positive intermediate */
-#define TRANSIENT 4 /* transient negative completion */
-#define ERROR 5 /* permanent negative completion */
-
-int rtems_initialize_ftpd();
-
-#endif /* __FTPD_H__ */
-