summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2020-03-31 10:05:51 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2020-03-31 10:11:06 +0200
commit762425e1e4a8c47d1215a8357c02e05c7b82e38f (patch)
tree6c458db863b1c52cc6b62c9b2f67ce5861ed640d
parenteb92b1fceb4cc521a74b7264a49b4905e3334474 (diff)
ftpd: Remove superfluous defines
These defines are not used and easily conflict with application code. They are also defined by the standard header file <arpa/ftp.h> if someone needs them.
-rw-r--r--cpukit/include/rtems/ftpd.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/cpukit/include/rtems/ftpd.h b/cpukit/include/rtems/ftpd.h
index d2a51afc21..3e956fe33f 100644
--- a/cpukit/include/rtems/ftpd.h
+++ b/cpukit/include/rtems/ftpd.h
@@ -57,15 +57,6 @@ struct rtems_ftpd_configuration
bool verbose; /* Say hello! */
};
-/*
- * 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 */
-
rtems_status_code rtems_ftpd_start(
const struct rtems_ftpd_configuration *config
);