source: rtems/c/src/exec/libnetworking/rtems/tftp.h @ e0c6f43

4.104.114.84.95
Last change on this file since e0c6f43 was e0c6f43, checked in by Joel Sherrill <joel.sherrill@…>, on 08/26/99 at 20:52:40

Comment cleanup from Eric Norum <eric@…>.

  • Property mode set to 100644
File size: 695 bytes
Line 
1/*
2 *  $Id$
3 */
4
5/*
6 * Trivial File Transfer Protocol (TFTP)
7 *
8 * Transfer file to/from remote host
9 *
10 * W. Eric Norum
11 * Saskatchewan Accelerator Laboratory
12 * University of Saskatchewan
13 * Saskatoon, Saskatchewan, CANADA
14 * eric@skatter.usask.ca
15 */
16
17/*
18 * Usage:
19 *
20 * To open `/bootfiles/image' on `hostname' for reading:
21 *         fd = open ("/TFTP/hostname/bootfiles/image", O_RDONLY);
22 *
23 * The `hostname' must be four dot-separated decimal values.
24 */
25
26#ifndef _TFTP_FILESYSTEM_h
27#define _TFTP_FILESYSTEM_h
28
29#ifdef __cplusplus
30extern "C" {
31#endif
32
33/*
34 * Filesystem initialization routine
35 */
36
37int rtems_bsdnet_initialize_tftp_filesystem( void );
38
39#ifdef __cplusplus
40}
41#endif
42
43#endif
Note: See TracBrowser for help on using the repository browser.