source: rtems/testsuites/libtests/ftp01/ftp01.scn @ b63c8f9

4.115
Last change on this file since b63c8f9 was b63c8f9, checked in by Sebastian Huber <sebastian.huber@…>, on 01/28/13 at 09:23:28

ftpfs: Fix SIZE command handling

It is invalid to issue a SIZE command once a data transfer is
in progress. For reads we issue the SIZE command before the RETR
command and get a snapshot of the file size. For writes the file size
is initialized to zero and incremented for each write chunk.

  • Property mode set to 100644
File size: 1.4 KB
Line 
1*** TEST FTP 1 ***
2syslog: ftpd: FTP daemon started (2 sessions max)
3220 RTEMS FTP server (Version 1.1-JWJ) ready.
4USER anonymous
5230 User logged in.
6TYPE I
7200 Type set to I.
8PASV
9227 Entering passive mode (127,0,0,1,4,1).
10STOR a.txt
11150 Opening BINARY mode data connection.
12226 Transfer complete.
13QUIT
14221 Goodbye.
15220 RTEMS FTP server (Version 1.1-JWJ) ready.
16USER anonymous
17230 User logged in.
18TYPE I
19200 Type set to I.
20SIZE a.txt
21213 1102
22PASV
23227 Entering passive mode (127,0,0,1,4,4).
24RETR a.txt
25150 Opening BINARY mode data connection.
26220 RTEMS FTP server (Version 1.1-JWJ) ready.
27USER anonymous
28230 User logged in.
29TYPE I
30200 Type set to I.
31PASV
32227 Entering passive mode (127,0,0,1,4,7).
33STOR b.txt
34150 Opening BINARY mode data connection.
35226 Transfer complete.
36226 Transfer complete.
37QUIT
38221 Goodbye.
39QUIT
40221 Goodbye.
41220 RTEMS FTP server (Version 1.1-JWJ) ready.
42USER anonymous
43230 User logged in.
44TYPE I
45200 Type set to I.
46SIZE b.txt
47213 1102
48PASV
49227 Entering passive mode (127,0,0,1,4,10).
50RETR b.txt
51150 Opening BINARY mode data connection.
52226 Transfer complete.
53QUIT
54221 Goodbye.
55220 RTEMS FTP server (Version 1.1-JWJ) ready.
56USER anonymous
57230 User logged in.
58TYPE I
59200 Type set to I.
60SIZE a.txt
61213 1102
62QUIT
63221 Goodbye.
64220 RTEMS FTP server (Version 1.1-JWJ) ready.
65USER anonymous
66230 User logged in.
67TYPE I
68200 Type set to I.
69SIZE b.txt
70213 1102
71QUIT
72221 Goodbye.
73*** END OF TEST FTP 1 ***
Note: See TracBrowser for help on using the repository browser.