Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-01-29 | John McGowan found a problem where the DEBUGFUNCTION was called with bad | Daniel Stenberg | |
data on uploads. | |||
2003-01-29 | reset conn->size to -1 on the ftp-do function to make it not go on to | Daniel Stenberg | |
ftp_done() with the previous transfer's value, as Dave Halbakken found out. He also verified this fixed corrected the problem. | |||
2003-01-29 | removed the local variables for emacs and vim, use the new sample.emacs | Daniel Stenberg | |
way for emacs, and vim users should provide a similar non-polluting style | |||
2003-01-29 | removed weirdo {{{ and }}} comments | Daniel Stenberg | |
removed emacs local-variables stuff | |||
2003-01-27 | Removed the long-living compiler warnings on the des_pcbc_encrypt() function | Daniel Stenberg | |
calls! | |||
2003-01-24 | Bertrand Demiddelaer found and fixed this memory leak. | Daniel Stenberg | |
2003-01-23 | Duncan Wilcox reported a crash with --interface on FreeBSD when ipv6-enabled | Daniel Stenberg | |
and this has been verified to correct the problem. | |||
2003-01-21 | when a chunked error is noticed, store the error number in the error string | Daniel Stenberg | |
to enable better error-tracking | |||
2003-01-20 | Markus F.X.J. Oberhumer's patch that reduces memory usage quite a bit by | Daniel Stenberg | |
only allocating the scratch memory buffer once it is needed and not always in the handle. | |||
2003-01-20 | given passwords in netrc must be respected accordingly | Daniel Stenberg | |
2003-01-16 | reverted bad header replacement | Daniel Stenberg | |
2003-01-16 | copyright year update in the source header | Daniel Stenberg | |
2003-01-16 | Allow CURLINFO_PRIVATE to be NULL, patch by Markus Oberhumer | Daniel Stenberg | |
2003-01-15 | no TABs in source code | Daniel Stenberg | |
2003-01-15 | removed a TAB | Daniel Stenberg | |
2003-01-10 | Steve Oliphant pointed out that test case 105 did not work anymore and this | Daniel Stenberg | |
was due to a missing fix for the password prompting | |||
2003-01-09 | if userpwd is "username:", this now implies a blank password while only | Daniel Stenberg | |
"username" will cause libcurl to prompt for password. Bryan Kemp noticed. test case 136 is added for this | |||
2003-01-09 | This fixed yet another connect problem with the multi interface and ipv4 | Daniel Stenberg | |
stack. Kjetil Jacobsen reported and verified the fix. | |||
2003-01-09 | removed unused code | Daniel Stenberg | |
2003-01-09 | proper indent | Daniel Stenberg | |
2003-01-09 | share.h is now a used header file | Daniel Stenberg | |
2003-01-09 | Updated more and now looks and and the API possibly works almost like the | Daniel Stenberg | |
design document specifies. There is still no code inside that uses this. | |||
2003-01-08 | updated to use the modified share-types | Daniel Stenberg | |
2003-01-08 | fixed a very, very rare and very, very little memory leak | Jean-Philippe Barette-LaPierre | |
2003-01-07 | Philippe Raoult's fix to handle wildcard certificate name checks | Daniel Stenberg | |
2003-01-07 | Simon Liu's HTTP200ALIASES-patch! | Daniel Stenberg | |
2003-01-07 | Only output valid filetime. | Daniel Stenberg | |
Return file-error if 550 is returned when trying MDTM | |||
2003-01-07 | when sending an error message to the debugfunction, we append a newline so | Daniel Stenberg | |
that the output looks better | |||
2003-01-07 | Matthew Blain's improvements for debug builds | Daniel Stenberg | |
2003-01-06 | indent fix | Daniel Stenberg | |
2003-01-06 | fix bug (?) :-) | Sterling Hughes | |
previously, if you called curl_easy_perform and then set the global dns cache, the global cache wouldn't be used. I don't see this really happening in practice, but this code allows you to do it. | |||
2002-12-29 | return -1 even if SSL_pending() doesn't return non-zero, as we don't really | Daniel Stenberg | |
care how many bytes that is readable NOW. Philippe Raoult reported the bug in 7.10.3-pre3. | |||
2002-12-19 | Curl_base64_decode() fixed by Matthew B | Daniel Stenberg | |
2002-12-19 | Fixed the usage of SSL_read() to properly return -1 if the EWOULDBLOCK | Daniel Stenberg | |
situation occurs, which it previously didn't! This was reptoed by Evan Jordan in bug report #653022. Also, if ERROR_SYSCALL is returned from SSL_write(), include the errno number in the error string for easier error detection. | |||
2002-12-18 | CURLE_HTTP_NOT_FOUND => CURLE_HTTP_RETURNED_ERROR | Daniel Stenberg | |
2002-12-17 | Removed weird special multi interface condition that caused bug report | Daniel Stenberg | |
#651464. | |||
2002-12-16 | EAGAIN on older (correct) glibc versions indicate a problem and not the need | Daniel Stenberg | |
for a bigger buffer and this is indeed badness for us. Making this work on both old and new glibc versions require an ugly loop that in its worse form cause 45 bad loops when using the correct glibc and a non-resolving host name... :-/ We want a better fix. Badly. | |||
2002-12-13 | conn->bits.tcpconnect now keeps track of if this connection is connected | Daniel Stenberg | |
or not | |||
2002-12-13 | Evan Jordan's fix for a memory leak. Bug report 650989. | Daniel Stenberg | |
2002-12-13 | make a little work-around for file:// in _is_connected() and voila, now the | Daniel Stenberg | |
multi interface works with file:// URLs fine (previously it crashed). This won't make it work on Windows though... | |||
2002-12-10 | The initial HTTP request can now be sent in multiple parts, as part of the | Daniel Stenberg | |
regular transfer process. This required some new tweaks, like for example we need to be able to tell the tranfer loop to not chunky-encode uploads while we're transferring the rest of the request... | |||
2002-12-10 | send_buffer is no more here | Daniel Stenberg | |
2002-12-09 | A normal POST now provides data to the main transfer loop via the usual | Daniel Stenberg | |
read callback, and thus won't put a lot of stress on the request sending code (which currently does an ugly loop). | |||
2002-12-09 | The fread() callback pointer and associated pointer is now stored in the | Daniel Stenberg | |
connectdata struct instead, and is no longer modified within the 'set' struct as previously (which was a really BAAAD thing). | |||
2002-12-05 | read and write as much as possible until end of data or EWOULDBLOCK before | Daniel Stenberg | |
returning back to the select() loop. Consider this a test so far. | |||
2002-12-05 | changed proto for Curl_krb_kauth() | Daniel Stenberg | |
2002-12-04 | make WIN32 defined for Borland properly, as told by Alexander J. Oss | Daniel Stenberg | |
2002-12-04 | The waiting for the 226 or 250 line expected to come after a transfer is | Daniel Stenberg | |
complete is now only made for 60 seconds and if no data was received during those 60 seconds, we store a special error message (preparing to make this a special error code) as this most likely means that the control connection has died while we were transferring data. | |||
2002-12-03 | Curl_GetFTPResponse() takes a different set of parameters and now return a | Daniel Stenberg | |
proper CURLcode. The default timeout for reading one response is now also possible to change while running. | |||
2002-12-03 | updated to reality | Daniel Stenberg | |