I'm currently making an embedded FTP server. I've gotten to the stage where the client issues a PASV command so I respond with the server's IP and a random port number (encoded as a 6 octet group.) The client connects to the port and then issues a LIST command.
I send '150 Here comes the directory listing.' on the command (port 21) channel. I then send the name of every file on the data channel like so: /SD/a /SD/b /SD/c I then close the data channel and send '226 Listing completed.' on the command channel.
There isn't very much information out there about the protocol for managing data channels. Does anyone have any tips on this or any idea what to do when I come to sending/receiving binary files?
Thanks,
Joe
EDIT: Thanks for the comment but I don't know python and it's a pretty big project. I've noticed that the network stack that I'm using seems to limit packets to 128 bytes but when I get a directory listing from ftp.debian.org it all comes in one big packet. Could that be causing it?