summaryrefslogtreecommitdiff
path: root/com32/libupload
Commit message (Collapse)AuthorAgeFilesLines
* libupload: use %zx to print a size_t argumentH. Peter Anvin2011-06-201-1/+1
| | | | | | | To print an argument of type size_t we should use the %z size modifier. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
* Merge remote-tracking branch 'mfleming/for-hpa/makefile-cleanup'H. Peter Anvin2011-04-261-1/+2
| | | | | | | | Resolved Conflicts: com32/hdt/Makefile com32/sysdump/Makefile Signed-off-by: H. Peter Anvin <hpa@zytor.com>
* libupload: Adding tftp.h missing fileErwan Velu2011-04-201-0/+22
| | | | Oups, this while wasn't commited :/
* libupload: Fixing tftp return valueErwan Velu2011-04-201-2/+2
| | | | | The default return value for the tftp mode. This made the tftp to return error even if the upload was succesful.
* libupload: Implementing error code on tftpErwan Velu2011-04-183-17/+45
| | | | | When using the tftp backend, let's return the errors we got on the server.
* libupload: Fixing memset callErwan Velu2011-04-181-2/+2
| | | | We have to use the size of the element, not the size of the pointer.
* libupload: New library to manage uploadsErwan Velu2011-03-1514-0/+3097
This commit creates a library to upload content via 3 backends (srec/ymodem/tftp). Code came from sysdump and got librarized for being used more easily by more other com32 modules.