summaryrefslogtreecommitdiffstats
path: root/cpukit/libnetworking/rtems/tftp.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libnetworking/rtems/tftp.h')
-rw-r--r--cpukit/libnetworking/rtems/tftp.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/cpukit/libnetworking/rtems/tftp.h b/cpukit/libnetworking/rtems/tftp.h
deleted file mode 100644
index ed3ebd7865..0000000000
--- a/cpukit/libnetworking/rtems/tftp.h
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- * 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