aboutsummaryrefslogtreecommitdiff
path: root/lib/tftp.c
AgeCommit message (Collapse)Author
2005-11-13Fix for WIN32. WIN32 does have 'struct sockaddr_storage', butGisle Vanem
that's in <winsock2.h>. Hence tftp.c wouldn't compile on WinCE.
2005-11-12Reversed the logic for sockaddr_storage and made our own Curl_sockaddr_storageDaniel Stenberg
struct instead to use.
2005-11-11Moved the sockaddr_storage definition to lib/sockaddr.h and only include thatDaniel Stenberg
in files that actually need the struct.
2005-11-10David Lang fixed IPv6 support for TFTP!Daniel Stenberg
2005-09-21stricter type usage for time variables to avoid picky compiler warningsDaniel Stenberg
2005-09-20typecasts added in an attempt to please the picky compilersDaniel Stenberg
2005-09-15minor changes, the biggest one being using Curl_select()Daniel Stenberg
2005-09-06Fix for bind() on Winsock; AF_UNSPEC (0) is illegal.Gisle Vanem
Should we do this for all targets?
2005-09-06sockets are curl_socket_t to build cleanerDaniel Stenberg
2005-09-04check that bind() returns successDaniel Stenberg
2005-09-02John Kelly added TFTP support to libcurl. A bunch of new error codes wasDaniel Stenberg
added. TODO: add them to docs. add TFTP server to test suite. add TFTP to list of protocols whereever those are mentioned.