ftp
ftp copied to clipboard
Lightweight FTP server written in C
I'm learning ftp protocol find some bugs and just make a mark don't mind ^ ^ ## ftp_pwd result size 大小没控制好造成stackoverflow ```c void ftp_pwd(Command *cmd, State *state) { if(state->logged_in){ char...
There is a small bug in server.c:173 ```c void ftp_mkd(Command *cmd, State *state) { char res[2*BSIZE+32]; ... state->message = res; ... state->message = "550 Failed to create directory. Check path...
Hello. I got your code, and I fixed the part that I think were not correct. I would be very happy if you can update the code with that. Correction:...