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

regd: tcp send

Hi, I am using cortex-m3 device and keil RL-ARM libraries.If i want to send a file which is stored in sdcard,using TCP call(send) ,how to send it?what is the procedure.By defining array and giving number of bytes to send it is possble.But,direct file i need to send.I don't want to go for FTP.If anybody knows ,please reply back.Thank you.. --praveena

Parents
  • There are no magic "send file" that happens to take a file name. You need to write code that opens the file, reads the contents and sends it.

    And if you don't want to use an already existing protocol like FTP, then you need to efine your own protocol how to send the data.

    Time to start coding...

Reply
  • There are no magic "send file" that happens to take a file name. You need to write code that opens the file, reads the contents and sends it.

    And if you don't want to use an already existing protocol like FTP, then you need to efine your own protocol how to send the data.

    Time to start coding...

Children