Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-02-20 | Nico Baggus' VMS tweaks | Daniel Stenberg | |
2002-01-18 | #if [undefined] => #ifdef [undefined] | Daniel Stenberg | |
2002-01-18 | made gcc -Wcast-align happy | Daniel Stenberg | |
2002-01-16 | Somewhat ugly fix to deal with non-blocking sockets. We just loop and try | Daniel Stenberg | |
again. THIS IS NOT A NICE FIX. We should/must make a select() then and only retry when we can write to the socket again. | |||
2002-01-14 | Curl_read() now returns a negative return code if EWOULDBLOCK or similar | Daniel Stenberg | |
2002-01-04 | #include the local "inet_ntoa_r.h" file if no proto was found in the global | Daniel Stenberg | |
header directory but the function *is* present! | |||
2002-01-04 | The buffer in ftp_pasv_verbose(), used for gethostbyaddr_r(), is now defined | Daniel Stenberg | |
to become properly 8-byte aligned on 64-bit archs. Philip Gladstone reported. | |||
2002-01-04 | The FTP response lines are now passed to the function callback registered for | Daniel Stenberg | |
headers. | |||
2002-01-03 | Sterling Hughes' provided initial DNS cache source code. | Daniel Stenberg | |
2002-01-03 | pass an 'int' as the third argument to bind() | Daniel Stenberg | |
2002-01-02 | Philip Gladstone's 64-bit sparc native compiler compatibility issues fixed. | Daniel Stenberg | |
2001-12-20 | If nobody is set we won't download any FTP file. If include_header is set, | Daniel Stenberg | |
we return a set of headers not more. This enables FTP operations that don't transfer any data, only perform FTP commands. | |||
2001-12-11 | failf() calls should not have newlines in the message string! | Daniel Stenberg | |
2001-12-03 | As Eric Lavigne pointed out, the ftp response reader MUST cache data that | Daniel Stenberg | |
is not dealt with when we find an end-of-response line, as there might be important stuff even after the correct line. So on subsequent invokes, the cached data must be used! | |||
2001-11-28 | CURLOPT_FTP_USE_EPSV can now be set to FALSE to prevent libcurl from | Daniel Stenberg | |
attempting to use EPSV before the standard PASV. | |||
2001-11-28 | Added EPSV which is now unconditionally always tried before PASV, which | Daniel Stenberg | |
makes it work reaaaaly nicely on IPv6-enabled hosts! Added SIZE before RETR is made, always done on downloads. It makes us know the size prior to download much more frequently. Unfortunately, this breaks all the FTP test cases. *fixfixfix* | |||
2001-11-28 | use in_addr_t for inet_addr() return code. Now, now portable is this *REALLY*? | Daniel Stenberg | |
We should add some configure tests for this! | |||
2001-11-27 | commented out the EPSV support | Daniel Stenberg | |
2001-11-27 | initial code added to support EPSV (IPv6-style PASV) | Daniel Stenberg | |
2001-11-22 | Eric fixed a wild write | Daniel Stenberg | |
2001-11-15 | looks better on one line (testing the cvs diffing via mail, but I also think | Sterling Hughes | |
this looks a bit better ;) | |||
2001-11-13 | corrected the ftp_getsize() usage, as the HPUX compiler warned on them | Daniel Stenberg | |
2001-11-13 | uninitialized variable | Daniel Stenberg | |
2001-11-12 | make sure to "read out" the server reply even if we didn't get any data from | Daniel Stenberg | |
the server when that's the only error | |||
2001-11-01 | added comments and function headers | Daniel Stenberg | |
2001-11-01 | Use Curl_tvdiff to compare times | Daniel Stenberg | |
2001-10-31 | fixed FTPSENDF for ipv6 compiles | Daniel Stenberg | |
2001-10-31 | major commit, now we check the return code on every invoke of Curl_ftpsendf | Daniel Stenberg | |
- which now is made using a macro named FTPSENDF. I turned it all caps just to make it more visible that it is in fact a macro. | |||
2001-10-11 | looks nicer and is better compatible with older vim versions | Sterling Hughes | |
2001-10-04 | getaddrinfo() cleanups | Daniel Stenberg | |
2001-10-02 | major connecting updates | Daniel Stenberg | |
2001-10-01 | sessionhandle->hp => hostaddr | Daniel Stenberg | |
2001-10-01 | removed obsoletetd myalarm() calls | Daniel Stenberg | |
2001-09-28 | removed the socket argument from some functions that always passed in the | Daniel Stenberg | |
same socket and it was available from the passed-in struct anyway! | |||
2001-09-28 | now compiles warning-free when IPv6-enabled | Daniel Stenberg | |
2001-09-28 | moved the PORT and PASV code into separate smaller functions for readability | Daniel Stenberg | |
renamed all static ^_ftp_* functions to ^ftp_, prefixing with underscore is not nice | |||
2001-09-28 | more ipv6 cleanups to make smaller functions that are easier to read | Daniel Stenberg | |
2001-09-28 | more transparant support for IPv6 name resolving | Daniel Stenberg | |
2001-09-23 | test 119 proved a memory leak in the FTP parts when IPv6 is enabled and the | Daniel Stenberg | |
RETR fails, this corrects it. | |||
2001-09-14 | modified error message when PWD fails | Daniel Stenberg | |
2001-09-13 | minor informatinal output changes | Daniel Stenberg | |
2001-09-07 | fix for emacs | Sterling Hughes | |
2001-09-05 | Fix formatting when tabs and spaces got mixed up (if tabstop was not set to | Sterling Hughes | |
8 this looked quite funny :) Added a small formatting section for vim at the bottom, it also contains an emacs portion (copied it from another project I'm working on), I don't know if this is correct, but its a step (the vim part is correct :) | |||
2001-08-30 | a few more struct fixes | Daniel Stenberg | |
2001-08-30 | Major rename and redesign of the internal "backbone" structs. Details will | Daniel Stenberg | |
be posted in a minute to the libcurl list. | |||
2001-08-23 | I want Sterling to be my friend, so I wasted some time on splitting up the | Daniel Stenberg | |
huge monster function _ftp() into more little functions. There are still more that can be done, but this is at least improving readability and maintainability... :-) | |||
2001-08-18 | <couldn't resist> | Sterling Hughes | |
Use a more appropriate variable name </couldn't resist> | |||
2001-08-17 | modified to use the renamed kerberos functions with Curl_ prefix | Daniel Stenberg | |
2001-08-15 | const fixes | Daniel Stenberg | |
2001-08-15 | removed one compiler error and two "unused variable" warnings | Daniel Stenberg | |