RTEMS
5.1
Main Page
Related Pages
Modules
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Files
File List
+
Globals
+
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Variables
_
a
b
c
d
e
f
g
i
l
m
n
o
p
r
s
t
v
w
+
Typedefs
a
b
c
d
e
f
g
h
i
l
m
o
p
q
r
s
t
u
v
w
x
+
Enumerations
a
b
c
e
h
i
l
m
o
p
q
r
s
t
w
+
Enumerator
a
c
d
h
i
l
m
p
r
s
t
w
+
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
•
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Modules
Pages
cpukit
include
rtems
tftp.h
1
/*
2
* Trivial File Transfer Protocol (TFTP)
3
*
4
* Transfer file to/from remote host
5
*
6
* W. Eric Norum
7
* Saskatchewan Accelerator Laboratory
8
* University of Saskatchewan
9
* Saskatoon, Saskatchewan, CANADA
10
* eric@skatter.usask.ca
11
*/
12
13
/*
14
* Usage:
15
*
16
* To open `/bootfiles/image' on `hostname' for reading:
17
* fd = open ("/TFTP/hostname/bootfiles/image", O_RDONLY);
18
*
19
* The 'TFTP' is the mount path and the `hostname' must be four dot-separated
20
* decimal values.
21
*/
22
23
#ifndef _RTEMS_TFTP_H
24
#define _RTEMS_TFTP_H
25
26
#ifdef __cplusplus
27
extern
"C"
{
28
#endif
29
30
#include <
rtems/fs.h
>
31
32
/*
33
* Filesystem Mount table entry.
34
*/
35
int
rtems_tftpfs_initialize(
36
rtems_filesystem_mount_table_entry_t
*mt_entry,
37
const
void
*data
38
);
39
40
#ifdef __cplusplus
41
}
42
#endif
43
44
#endif
rtems_filesystem_mount_table_entry_tt
Mount table entry.
Definition:
libio.h:1604
fs.h
Basic Filesystem Types.
Generated by
1.8.15