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?

link|improve this question
I don't get what you are exactly asking for, but everything what has to do with a ftp server implementation could be looked up in the source of pyftpdlib. code.google.com/p/pyftpdlib – ba__friend Jun 25 '11 at 15:36
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.