aboutsummaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2002-08-26don't attempt to ftp_cwd() on a NULL pathDaniel Stenberg
2002-08-26Andrew Francis removed the need for/use of MSVC pragmasDaniel Stenberg
2002-08-22Markus F.X.J. Oberhumer's added commentDaniel Stenberg
2002-08-22Markus Oberhumer improved an out-of-memory checkDaniel Stenberg
I reformatted some functions using a different indent than the rest of the file.
2002-08-22allow undefined symbols!Daniel Stenberg
2002-08-20Added three more pragmas for MSVC++ compiles.Daniel Stenberg
We *really* need these sorted out. I'd prefer to have them all removed and the actual code corrected instead of just diabling the warnings and pretending that they don't exist.
2002-08-20prevent compiler warningsDaniel Stenberg
2002-08-20windows has stdlib.hDaniel Stenberg
2002-08-13Sterling Hughes brings the share interfaceDaniel Stenberg
2002-08-12fixed a Curl_connecthost() bug, we should default to set connected to falseDaniel Stenberg
2002-08-12Initial fix to make the multi interface return control while waiting forDaniel Stenberg
the initial connect to "come through". This should work fine for connect and for FTP-PASV connects. Needs massive testing.
2002-08-08ignore generated filesDaniel Stenberg
2002-08-08Markus F.X.J. Oberhumer's CURLOPT_NOSIGNAL patchDaniel Stenberg
2002-08-08attempted hpux fix for resolvesDaniel Stenberg
2002-08-08ignore all .in filesDaniel Stenberg
2002-08-05Make SessionHandle keep record if it is used with the multi interface orDaniel Stenberg
the easy interface, it CANNOT be used by a mixture.
2002-08-05re-added the RFC2732-parser that was lost for some reason during the flowDaniel Stenberg
of time!
2002-08-03Added multi interface functions to DLL definitions.Joern Hartroth
2002-08-01corrected some warningsDaniel Stenberg
2002-08-01Changed 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-29Removed checks for if set.fpasswd is NULL, as we prevent users from settingDaniel Stenberg
it to NULL and then use the internal default instead. It will always be a function to call.
2002-07-29fixed the Curl_cookie_add() invoke to not assume a space after the colonDaniel Stenberg
2002-07-29properly skip white spaces on Set-Cookie: header linesDaniel Stenberg
2002-07-29link with winmm.lib tooDaniel Stenberg
2002-07-29use stderr to present the prompt to, make sure to close the fopen()edDaniel Stenberg
file handle
2002-07-29Added multi.[co] to the buildDaniel Stenberg
2002-06-26Glen Nakamura made his fix look even better!Daniel Stenberg
2002-06-26Glen Nakamura's patch for Curl_getaddrinfo().Daniel Stenberg
2002-06-26ignore '+' in URLs, generate only %-codesDaniel Stenberg
2002-06-26T. Bharath fixed his mm lib timer resolution fixDaniel Stenberg
2002-06-15CURLOPT_BUFFERSIZE allows an application to set a prefered buffer sizeDaniel 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 lotDaniel Stenberg
faster on Windows when removing the 1 microsecond timeout.
2002-06-14Hanno L. Kranzhoff fixed themDaniel Stenberg
2002-06-14Remade the FTP not-check status line and not-attempt-to-read-status-lineDaniel Stenberg
variables, conditions and things.
2002-06-13Tom Mattison's report found out, and this is the fix that should preventDaniel Stenberg
FTP from closing the connections a little too often!
2002-06-13Added 'dont_check' to be set during an FTP operation if the final statusDaniel Stenberg
message is supposed to be ignored.
2002-06-12when no FTP transfer was done, don't attempt to read the download transferDaniel Stenberg
thing. The 'resumed' flag is also causing confusions. I'll deal with that tomorrow.
2002-06-12Moved the secondarysocket cleanup. The 'conn' struct may have been clearedDaniel Stenberg
already at that other place.
2002-06-12Chris Combes added CURLFORM_BUFFER, CURLFORM_BUFFERPTR, CURLFORM_BUFFERLENGTHDaniel Stenberg
2002-06-12HAVE_SIGSETJMPDaniel Stenberg
2002-06-12added a connect failure error message that might get empty otherwiseDaniel Stenberg
2002-06-12Jörn fixes for 7.9.8 buildDaniel Stenberg
2002-06-12kris@freebsd.org fixed a bad format stringDaniel Stenberg
2002-06-12kris@freebsd.org fixed a few bad format stringsDaniel Stenberg
2002-06-11put #ifdefs around the sigjmp_buf declaration too, as it should beDaniel Stenberg
2002-06-11corrected the signal handlerDaniel Stenberg
2002-06-11Now uses sigsetjmp() and siglongjmp() to bail out from slow name lookups inDaniel 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-11removed accidentally added debug-code!Daniel Stenberg
2002-06-11ftp range downloads make us ignore the final status message as the serverDaniel Stenberg
will most likely treat the download as failed as we might abort it pre-maturely
2002-06-11added disable-[protocol] support, largely provided by Miklos NemethDaniel Stenberg