Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-08-05 | Make SessionHandle keep record if it is used with the multi interface or | Daniel Stenberg | |
the easy interface, it CANNOT be used by a mixture. | |||
2002-08-05 | re-added the RFC2732-parser that was lost for some reason during the flow | Daniel Stenberg | |
of time! | |||
2002-08-03 | Added multi interface functions to DLL definitions. | Joern Hartroth | |
2002-08-01 | corrected some warnings | Daniel Stenberg | |
2002-08-01 | Changed the PORT command to pick a better default IP address if "-" is used. | Daniel Stenberg | |
It now uses the local IP adress of the control connection. | |||
2002-07-29 | Removed checks for if set.fpasswd is NULL, as we prevent users from setting | Daniel Stenberg | |
it to NULL and then use the internal default instead. It will always be a function to call. | |||
2002-07-29 | fixed the Curl_cookie_add() invoke to not assume a space after the colon | Daniel Stenberg | |
2002-07-29 | properly skip white spaces on Set-Cookie: header lines | Daniel Stenberg | |
2002-07-29 | link with winmm.lib too | Daniel Stenberg | |
2002-07-29 | use stderr to present the prompt to, make sure to close the fopen()ed | Daniel Stenberg | |
file handle | |||
2002-07-29 | Added multi.[co] to the build | Daniel Stenberg | |
2002-06-26 | Glen Nakamura made his fix look even better! | Daniel Stenberg | |
2002-06-26 | Glen Nakamura's patch for Curl_getaddrinfo(). | Daniel Stenberg | |
2002-06-26 | ignore '+' in URLs, generate only %-codes | Daniel Stenberg | |
2002-06-26 | T. Bharath fixed his mm lib timer resolution fix | Daniel Stenberg | |
2002-06-15 | CURLOPT_BUFFERSIZE allows an application to set a prefered buffer size | Daniel Stenberg | |
for receiving data from the network. It is meant as a hint, not as a forced limit. | |||
2002-06-14 | - Yarram Sunil found out that the SocketIsDead() function performed a lot | Daniel Stenberg | |
faster on Windows when removing the 1 microsecond timeout. | |||
2002-06-14 | Hanno L. Kranzhoff fixed them | Daniel Stenberg | |
2002-06-14 | Remade the FTP not-check status line and not-attempt-to-read-status-line | Daniel Stenberg | |
variables, conditions and things. | |||
2002-06-13 | Tom Mattison's report found out, and this is the fix that should prevent | Daniel Stenberg | |
FTP from closing the connections a little too often! | |||
2002-06-13 | Added 'dont_check' to be set during an FTP operation if the final status | Daniel Stenberg | |
message is supposed to be ignored. | |||
2002-06-12 | when no FTP transfer was done, don't attempt to read the download transfer | Daniel Stenberg | |
thing. The 'resumed' flag is also causing confusions. I'll deal with that tomorrow. | |||
2002-06-12 | Moved the secondarysocket cleanup. The 'conn' struct may have been cleared | Daniel Stenberg | |
already at that other place. | |||
2002-06-12 | Chris Combes added CURLFORM_BUFFER, CURLFORM_BUFFERPTR, CURLFORM_BUFFERLENGTH | Daniel Stenberg | |
2002-06-12 | HAVE_SIGSETJMP | Daniel Stenberg | |
2002-06-12 | added a connect failure error message that might get empty otherwise | Daniel Stenberg | |
2002-06-12 | Jörn fixes for 7.9.8 build | Daniel Stenberg | |
2002-06-12 | kris@freebsd.org fixed a bad format string | Daniel Stenberg | |
2002-06-12 | kris@freebsd.org fixed a few bad format strings | Daniel Stenberg | |
2002-06-11 | put #ifdefs around the sigjmp_buf declaration too, as it should be | Daniel Stenberg | |
2002-06-11 | corrected the signal handler | Daniel Stenberg | |
2002-06-11 | Now uses sigsetjmp() and siglongjmp() to bail out from slow name lookups in | Daniel Stenberg | |
case a timeout is set. This seems to work. God knows if it is good enough or what kind of side-effects we introduce here and now. I'll close my eyes and cross my fingers. Hard. | |||
2002-06-11 | removed accidentally added debug-code! | Daniel Stenberg | |
2002-06-11 | ftp range downloads make us ignore the final status message as the server | Daniel Stenberg | |
will most likely treat the download as failed as we might abort it pre-maturely | |||
2002-06-11 | added disable-[protocol] support, largely provided by Miklos Nemeth | Daniel Stenberg | |
2002-06-11 | added multi.obj | Daniel Stenberg | |
2002-06-11 | make sure data->set.postfields is non-NULL before doing strlen() on the | Daniel Stenberg | |
pointer. Bugs item #566835. | |||
2002-06-10 | getaddrinfo() failures now show port number too in informational output | Daniel Stenberg | |
2002-06-10 | added a missing failf() for certain connect failures | Daniel Stenberg | |
2002-06-10 | This fix MIGHT make us build nicely with OpenSSL 0.9.7. This fix is based | Daniel Stenberg | |
on a patch from Jacob Meuser, input from Götz Babin-Ebell and my own browsing of the latest include files. | |||
2002-06-10 | Gautam Mani found a socket descriptor leak that happened when FTP transfers | Daniel Stenberg | |
failed and you reinvoked curl_easy_perform(). | |||
2002-06-05 | Gustaf Hui fixed curl_multi_remove_handle() to prevent a potential crash | Daniel Stenberg | |
2002-06-05 | set HAVE_RAND_STATUS too | Daniel Stenberg | |
2002-06-05 | hostcache_fixoffset() is now corrected to work on 64bit architectures | Daniel Stenberg | |
Bug report #564585. | |||
2002-06-03 | T. Bharath's updates since curl now uses the winmm lib for higher resolution | Daniel Stenberg | |
timer | |||
2002-06-03 | T. Bharath made the request size add up as it is documented to do. | Daniel Stenberg | |
2002-06-03 | T. Bharath fixed higher resolution time for windows builds | Daniel Stenberg | |
2002-06-03 | T. Bharath fixed the TIMER_REDIRECT. | Daniel Stenberg | |
2002-05-28 | Getting an empty FTP file no longer makes us return error 19. An empty file | Daniel Stenberg | |
is fine to get. | |||
2002-05-28 | Gustaf Hui provided new code that changes how curl_multi_info_read() | Daniel Stenberg | |
messages are stored, so that they don't have to be kept around for the multi handle's entire life time. He also made it return failure codes properly which it didn't do before. I made the messages only get stored per easy-handle so that they can be independently killed easier without ruining the "master list". It makes the info_read() function slightly less beautiful as it has to scan for messages to return, but it makes removing individual handles a lot easier and less error prone. |