I'm writing my own FTP server and I've got a problem. Far manager can't receive file list, but filezilla can (image below). That's what I do:
1) receive PORT command with address and port
2) send code 200 via command stream
3) receive LIST command
4) connecting to received address
5) send code 150 via command stream
6) send data via data transfer stream
7) send code 226 via command stream
data is
str_test db "-rwxr--r-- 1 owner group 640 1970 01 01 test", 0Dh, 0Ah, 0
What is wrong?
