summaryrefslogtreecommitdiff
path: root/include/rtems/tftp.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/rtems/tftp.h')
-rw-r--r--include/rtems/tftp.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/include/rtems/tftp.h b/include/rtems/tftp.h
new file mode 100644
index 0000000000..ed3ebd7865
--- /dev/null
+++ b/include/rtems/tftp.h
@@ -0,0 +1,44 @@
+/*
+ * Trivial File Transfer Protocol (TFTP)
+ *
+ * Transfer file to/from remote host
+ *
+ * W. Eric Norum
+ * Saskatchewan Accelerator Laboratory
+ * University of Saskatchewan
+ * Saskatoon, Saskatchewan, CANADA
+ * eric@skatter.usask.ca
+ */
+
+/*
+ * Usage:
+ *
+ * To open `/bootfiles/image' on `hostname' for reading:
+ * fd = open ("/TFTP/hostname/bootfiles/image", O_RDONLY);
+ *
+ * The 'TFTP' is the mount path and the `hostname' must be four dot-separated
+ * decimal values.
+ */
+
+#ifndef _RTEMS_TFTP_H
+#define _RTEMS_TFTP_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include <rtems/fs.h>
+
+/*
+ * Filesystem Mount table entry.
+ */
+int rtems_tftpfs_initialize(
+ rtems_filesystem_mount_table_entry_t *mt_entry,
+ const void *data
+);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif