summaryrefslogtreecommitdiffstats
path: root/c/src/exec/libnetworking/rtems/tftp.h
blob: 618f5408da4e15abd4f465bbfe9835c8cf2c11a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
 *  $Id$
 */

/*
 * 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 `hostname' must be four dot-separated decimal values.
 *
 * To open a file on the host which supplied the BOOTP
 * information just leave the `hostname' part empty:
 *         fd = open ("/TFTP//bootfiles/image", O_RDONLY);
 *
 */

#ifndef _TFTP_FILESYSTEM_h
#define _TFTP_FILESYSTEM_h

#ifdef __cplusplus
extern "C" {
#endif

/*
 * Filesystem initialization routine
 */

int rtems_bsdnet_initialize_tftp_filesystem( void );

#ifdef __cplusplus
}
#endif

#endif