Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-04-18 | Robson Braga Araujo provided a patch that makes libcurl less eager to close | Daniel Stenberg | |
the control connection when using FTP, for example when you remove an easy handle from a multi stack. | |||
2006-04-10 | First curl_multi_socket() commit. Should primarily be considered as an internal | Daniel Stenberg | |
code rearrange to fit the future better. | |||
2006-04-07 | First commit of David McCreedy's EBCDIC and TPF changes. | Daniel Stenberg | |
2006-03-21 | David McCreedy added CURLINFO_FTP_ENTRY_PATH to export the FTP entry path | Daniel Stenberg | |
2006-03-20 | David McCreedy fixed libcurl to no longer ignore AUTH failures and now it | Daniel Stenberg | |
reacts properly according to the CURLOPT_FTP_SSL setting. | |||
2006-03-13 | David McCreedy found a missing return code assignment | Daniel Stenberg | |
2006-03-08 | Peter Heuchert's correction for the clear control connection case | Daniel Stenberg | |
2006-03-07 | Peter Heuchert made sure the CURLFTPSSL_CONTROL setting for CURLOPT_FTP_SSL | Daniel Stenberg | |
is used properly. | |||
2006-03-03 | Prevent uploading to a URL that has no file name part. | Daniel Stenberg | |
2006-02-11 | Karl M added the CURLOPT_CONNECT_ONLY and CURLINFO_LASTSOCKET options that | Daniel Stenberg | |
an app can use to let libcurl only connect to a remote host and then extract the socket from libcurl. libcurl will then not attempt to do any transfer at all after the connect is done. | |||
2006-01-24 | Michal Marek provided a patch for FTP that makes libcurl continue to try PASV | Daniel Stenberg | |
even after EPSV returned a positive response code, if libcurl failed to connect to the port number the EPSV response said. Obviously some people are going through protocol-sensitive firewalls (or similar) that don't understand EPSV and then they don't allow the second connection unless PASV was used. This also called for a minor fix of test case 238. | |||
2006-01-19 | Duane Cathey was one of our friends who reported that curl -P [IP] | Daniel Stenberg | |
(CURLOPT_FTPPORT) didn't work for ipv6-enabed curls if the IP wasn't a "native" IP while it works fine for ipv6-disabled builds! In the process of fixing this, I removed the support for LPRT since I can't think of many reasons to keep doing it and asking on the mailing list didn't reveal anyone else that could either. The code that sends EPRT and PORT is now also a lot simpler than before (IMHO). | |||
2006-01-19 | Jon Turner pointed out that doing -P [hostname] with curl (built ipv4-only) | Daniel Stenberg | |
didn't work. | |||
2006-01-12 | Fixed FTP_SKIP_PASV_IP and FTP_USE_EPSV to "do right" when used on FTP thru | Daniel Stenberg | |
HTTP proxy. | |||
2006-01-12 | Michael Jahn fixed ftp over CONNECT | Daniel Stenberg | |
2006-01-10 | When using a bad path over FTP, as in when libcurl couldn't CWD into all | Daniel Stenberg | |
given subdirs, libcurl would still "remember" the full path as if it is the current directory libcurl is in so that the next curl_easy_perform() would get really confused if it tried the same path again - as it would not issue any CWD commands at all, assuming it is already in the "proper" dir. Starting now, a failed CWD command sets a flag that prevents the path to be "remembered" after returning. | |||
2005-12-11 | Undo last changes | Yang Tse | |
2005-12-11 | Avoid generation of additional warnings | Yang Tse | |
2005-12-11 | Fix compiler warning and compatibility issue with the type of the parameter ↵ | Yang Tse | |
used in getnameinfo() to receive the length of the sockaddr struct. | |||
2005-12-05 | Another Yang Tse warning cleanup raid! | Daniel Stenberg | |
2005-11-28 | new experimental "ftp method" code | Daniel Stenberg | |
2005-11-14 | Jan Kunder's debian bug report | Daniel Stenberg | |
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=338680 identified a weird error message for when you try to upload a file and the requested directory doesn't exist on the target server. | |||
2005-11-12 | Reversed the logic for sockaddr_storage and made our own Curl_sockaddr_storage | Daniel Stenberg | |
struct instead to use. | |||
2005-11-11 | Moved the sockaddr_storage definition to lib/sockaddr.h and only include that | Daniel Stenberg | |
in files that actually need the struct. | |||
2005-11-10 | David Lang: if there is no sockaddr_storage, make up our own and use that | Daniel Stenberg | |
2005-10-05 | CURL_TIMECOND_IFMODSINCE actually requires that the remote document has been | Daniel Stenberg | |
modded since the given time, so we should compare <= and not just <. | |||
2005-09-27 | TJ Saunders of the proftpd project identified and pointed out problems with | Daniel Stenberg | |
the modified FTPS negotiation change of August 19 2005. Thus, we revert the change back to pre-7.14.1 status. | |||
2005-09-16 | keep 'socktype' in the connectdata struct and make sure we use that for all | Daniel Stenberg | |
protocol sockets even if the resolved address may say otherwise | |||
2005-09-14 | oops, return error if an error did occur! | Daniel Stenberg | |
2005-09-04 | Added FTP_SKIP_PASV_IP and --ftp-skip-pasv-ip | Daniel Stenberg | |
2005-08-19 | Norbert Novotny had problems with FTPS and he helped me work out a patch | Daniel Stenberg | |
that made curl run fine in his end. The key was to make sure we do the SSL/TLS negotiation immediately after the TCP connect is done and not after a few other commands have been sent like we did previously. I don't consider this change necessary to obey the standards, I think this server is pickier than what the specs allow it to be, but I can't see how this modified libcurl code can add any problems to those who are interpreting the standards more liberally. | |||
2005-07-21 | Fixed some typos in output messages. | Dan Fandrich | |
2005-07-03 | Andrew Bushnell provided enough info for me to tell that we badly needed to | Daniel Stenberg | |
fix the CONNECT authentication code with multi-pass auth methods (such as NTLM) as it didn't previously properly ignore response-bodies - in fact it stopped reading after all response headers had been received. This could lead to libcurl sending the next request and reading the body from the first request as response to the second request. (I also renamed the function, which wasn't strictly necessary but...) The best fix would to once and for all make the CONNECT code use the ordinary request sending/receiving code, treating it as any ordinary request instead of the special-purpose function we have now. It should make it better for multi-interface too. And possibly lead to less code... Added test case 265 for this. It doesn't work as a _really_ good test case since the test proxy is too stupid, but the test case helps when running the debugger to verify. | |||
2005-05-24 | Now allow TYPE responses to be any 2xx code, and log if it isn't 200. | Daniel Stenberg | |
2005-05-17 | check if getsockname() returns failure before using the address it provides | Daniel Stenberg | |
2005-05-17 | reduced typecasts, from two to one | Daniel Stenberg | |
2005-05-14 | Some patches for (a stricter/smarter) gcc 4.0 and | Gisle Vanem | |
warnings like: 'x' may be used uninitialized in this function. | |||
2005-05-08 | silence compiler warnings | Daniel Stenberg | |
2005-05-07 | fix warnings about unused variables for non-debug builds | Daniel Stenberg | |
2005-05-07 | fix | Daniel Stenberg | |
2005-05-07 | DEBUGF() is a new conveniant macro to add infof() calls (or similar) for | Daniel Stenberg | |
debug builds only. Made the ftp code use it on several places. | |||
2005-05-02 | improved failf() error messages | Daniel Stenberg | |
2005-05-02 | Now configure checks for struct sockaddr_storage and the ftp code tries | Daniel Stenberg | |
to survive without it if not found. AIX 4.3 targetted adjustment. | |||
2005-04-26 | Cory Nelson's work on nuking compiler warnings when building on x64 with | Daniel Stenberg | |
VS2005. | |||
2005-04-07 | GnuTLS support added. There's now a "generic" SSL layer that we use all over | Daniel Stenberg | |
internally, with code provided by sslgen.c. All SSL-layer-specific code is then written in ssluse.c (for OpenSSL) and gtls.c (for GnuTLS). As far as possible, internals should not need to know what SSL layer that is in use. Building with GnuTLS currently makes two test cases fail. TODO.gnutls contains a few known outstanding issues for the GnuTLS support. GnuTLS support is enabled with configure --with-gnutls | |||
2005-04-05 | too late hacking error | Daniel Stenberg | |
2005-04-05 | Christophe Legry's fix to grok time-conditoned uploads | Daniel Stenberg | |
2005-03-29 | When doing FTP-SSL, advance to the next state properly when the response to | Daniel Stenberg | |
AUTH has been received successfully. | |||
2005-03-29 | Fixed the FTP response reader function to properly deal with responses split | Daniel Stenberg | |
up in several chunks when read. | |||
2005-03-15 | Fixed ftp support with uClibc due to differing inet_ntoa_r() behaviour. | Dan Fandrich | |