This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Need Compiler which has FTP lib

Hello, As we known RL ARM doesnt support FTP server. It only supports tftp. But for our application i need to implement FTP server. I am using Keil micro 3 version. I need to know any GCC compilers available which supports my LPC2388 and comes with ftp library's.

Parents
  • Note that ftp doesn't have any encryption either. sftp (sometimes also called SSH File Transfer Protocol) does have encryption but doesn't have much similarities with ftp. It is not ftp run over an SSH tunnel

    For tftp, you could add some form of faked authentication by requiring the tftp client to access a file with a magic name instead of requiring the client to supply a username and password.

    If you have enough RAM to port openssl, then you could use just about any TCP protocol that you run through an encrypted tunnel.

Reply
  • Note that ftp doesn't have any encryption either. sftp (sometimes also called SSH File Transfer Protocol) does have encryption but doesn't have much similarities with ftp. It is not ftp run over an SSH tunnel

    For tftp, you could add some form of faked authentication by requiring the tftp client to access a file with a magic name instead of requiring the client to supply a username and password.

    If you have enough RAM to port openssl, then you could use just about any TCP protocol that you run through an encrypted tunnel.

Children
No data