summaryrefslogtreecommitdiff
path: root/lib/tftp.c
Commit message (Expand)AuthorAgeFilesLines
* Removed unneeded includes of signal.h and setjmp.hDan Fandrich2008-09-291-1/+0
* Removed some redundant type castsDan Fandrich2008-09-021-1/+1
* Undo using the sreadfrom() wrapper to replace recvfrom() in our code.Yang Tse2008-07-301-5/+8
* fix compiler warning: comparison between signed and unsignedYang Tse2008-07-211-1/+1
* Use the sreadfrom() wrapper to replace recvfrom() in our code.Yang Tse2008-07-211-7/+7
* Yang Tse pointed out a few remaining quirks from my timeout refactoring fromDaniel Stenberg2008-02-111-7/+19
* Fixed unused variable warning.Dan Fandrich2008-02-111-3/+2
* - Refactored a lot of timeout code into a few functions in an attempt to makeDaniel Stenberg2008-02-071-6/+11
* Calls to Curl_failf() are not supposed to provide a trailing newline as theDaniel Stenberg2008-01-151-15/+15
* fix compiler warningYang Tse2008-01-091-2/+3
* All static functions that were previously name Curl_* something no longerDaniel Stenberg2007-12-081-17/+17
* reqdata doesn't exist anymore and the path moved to the UrlState structDaniel Stenberg2007-11-241-4/+0
* struct HandleData is now called struct SingleRequest, and is only for data thatDaniel Stenberg2007-11-241-10/+10
* Rearranged code and changed Curl_readwrite_init() and Curl_pre_readwrite() intoDaniel Stenberg2007-11-151-4/+0
* use the existing variable insteadDaniel Stenberg2007-11-141-5/+6
* Fix how TFTP connections are treated when re-used, if the SessionHandle hasDaniel Stenberg2007-11-141-4/+5
* if () => if()Daniel Stenberg2007-11-071-9/+9
* fix the checkDaniel Stenberg2007-10-251-4/+6
* Fixed a TFTP memory leak. Enabled test 2003 to verify this.Daniel Stenberg2007-10-251-1/+5
* We use this ZERO_NULL to avoid picky compiler warnings,Yang Tse2007-10-171-6/+6
* Added per-protocol callback static tables, replacing callback ptr storagePatrick Monnerat2007-10-121-4/+68
* Kim Rinnewitz reported that --local-port didn't work with TFTP transfers.Daniel Stenberg2007-10-041-3/+4
* TFTP now reports the "not defined" TFTP error code 0 as an error,Dan Fandrich2007-09-071-1/+6
* Renamed several libcurl error codes and options to make them more generalDan Fandrich2007-08-301-3/+3
* Added lots of constsDan Fandrich2007-08-291-5/+4
* remove unused field in the state structDaniel Stenberg2007-06-121-1/+0
* Song Ma filed bug report #1724016Daniel Stenberg2007-05-241-0/+4
* better fix for the dl/ul countersDaniel Stenberg2007-05-181-5/+9
* Feng Tu reported that curl -w did wrong on TFTP transfers inDaniel Stenberg2007-05-181-3/+6
* bail out with error codes on failuresDaniel Stenberg2007-05-181-2/+6
* Feng Tu pointed out a division by zero error in the TFTP connect timeoutDaniel Stenberg2007-05-171-0/+4
* Fixed some out of memory handling issues.Dan Fandrich2007-04-111-3/+8
* Internal function Curl_select() renamed to Curl_socket_ready()Yang Tse2007-03-261-1/+1
* Removed inclusion of <sys/types.h> and <sys/stat.h> in .c-filesGisle Vanem2007-02-261-8/+1
* use macros ERRNO, SET_ERRNO(), SOCKERRNO and SET_SOCKERRNO() for errno handlingYang Tse2007-02-161-8/+8
* fix for millisecond resolution timeoutsYang Tse2007-02-061-2/+4
* - Michael Wallner provided a patch that adds support for CURLOPT_TIMEOUT_MSDaniel Stenberg2007-02-051-1/+1
* compiler warning fixYang Tse2007-02-051-1/+1
* - Armel Asselin improved libcurl to behave a lot better when an easy handleDaniel Stenberg2007-01-161-3/+7
* Fixed a small memory leak in tftp uploads discovered by curl's memory leakDan Fandrich2007-01-161-5/+5
* Ciprian Badescu found a SIGSEGV when doing multiple TFTP transfers using theDaniel Stenberg2006-11-091-21/+43
* Major overhaul introducing http pipelining support and shared connectionDaniel Stenberg2006-09-071-7/+7
* Removed "#ifndef__WATCOMC__". Use "#ifdef HAVE_SYS_TIME_H" instead.Gisle Vanem2006-08-301-1/+1
* Watcom lacks <sys/time.h>.Gisle Vanem2006-08-291-0/+2
* Based on a patch by Armel Asselin, the FTP code no longer re-issues the TYPEDaniel Stenberg2006-08-191-2/+2
* Winsock and Cygwin need address family specification before bind(), this shou...Yang Tse2006-07-291-6/+1
* Fix compiler warningsYang Tse2006-07-191-7/+7
* oops, could return an uninitialized variableDaniel Stenberg2006-05-091-1/+1
* check more return codes and skip the initial slash in given file namesDaniel Stenberg2006-05-081-26/+42
* no longer uses errno but Curl_sockerrno() and now acknowledges return codesDaniel Stenberg2006-05-081-46/+48