summaryrefslogtreecommitdiffstats
path: root/c/src/exec/libnetworking/rtems/ftpfs.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2002-06-27 21:59:23 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2002-06-27 21:59:23 +0000
commitdda0bffc4112a544ede2dca0e9e409171b0c3dc2 (patch)
treecb2910469708376fb8e4223f238f1404bfec3194 /c/src/exec/libnetworking/rtems/ftpfs.h
parent2002-06-27 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-dda0bffc4112a544ede2dca0e9e409171b0c3dc2.tar.bz2
2002-06-27 Thomas Doerfler <Thomas.Doerfler@imd-systems.de>
* Addition of a ftp client filesystem, comparable to the tftp one. * lib/ftpfs.c, rtems/ftpfs.h: New files. * lib/Makefile.am, rtems/Makefile.am: Modified to reflect above.
Diffstat (limited to '')
-rw-r--r--c/src/exec/libnetworking/rtems/ftpfs.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/c/src/exec/libnetworking/rtems/ftpfs.h b/c/src/exec/libnetworking/rtems/ftpfs.h
new file mode 100644
index 0000000000..bcd18a4266
--- /dev/null
+++ b/c/src/exec/libnetworking/rtems/ftpfs.h
@@ -0,0 +1,34 @@
+/*
+ * File Transfer Protocol client declarations
+ *
+ * Transfer file to/from remote host
+ *
+ *
+ * (c) Copyright 2002
+ * Thomas Doerfler
+ * IMD Ingenieurbuero fuer Microcomputertechnik
+ * Herbststr. 8
+ * 82178 Puchheim, Germany
+ * <Thomas.Doerfler@imd-systems.de>
+ *
+ * This code has been created after closly inspecting
+ * "tftpdriver.c" from Eric Norum.
+ *
+ * $Id$
+ */
+
+#ifndef _FTP_DRIVER_H
+#define _FTP_DRIVER_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+ /* create mount point and mount ftp file system */
+ int rtems_bsdnet_initialize_ftp_filesystem () ;
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif