Monday, July 27, 2009

What is the code for implementing FTP server in C programming language?

For implementing a FTP server in C, you need to know about socket programming.





and if you already know socket programming then just make a program that follows FTP RFC 959


which can be found at ftp://ftp.rfc-editor.org/in-notes/std/st...





this standard says what you should support to have server/client.





I hope this helps


for any help send a mail to help@paijwar.com

What is the code for implementing FTP server in C programming language?
To summarize:





Listen for connections on the FTP port, for each connection spawn a thread, wait for and respond to commands when received.





I make it sound easy, but it actually gets much more complicated. See the above answer's links for a more detailed solution.


No comments:

Post a Comment