Age | Commit message (Collapse) | Author | |
---|---|---|---|
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. | |||
2006-01-09 | Made the copyright year match the latest modification's year. | Daniel Stenberg | |
2006-01-07 | Mike Jean fixed so that the second CONNECT when doing FTP over a HTTP proxy | Daniel Stenberg | |
actually used a new connection and not sent the second request on the first socket! | |||
2006-01-02 | Include <sys/ioctl.h> before redefining ioctl(). | Gisle Vanem | |
2005-12-30 | fix questionable compare | Marty Kuhrt | |
2005-12-30 | fix questionable compare compiler error (unsigned can't be < 0) | Marty Kuhrt | |
2005-12-30 | putting back into dist | Marty Kuhrt | |
2005-12-23 | Kirill Vasiliev fixed the 'release-ssl-dll' target to properly build a | Daniel Stenberg | |
static libcurl using openssl as dll. | |||
2005-12-20 | explain tld_check_name() | Daniel Stenberg | |
2005-12-20 | Changes for PellesC compiler under Win32. A bit limited, but | Gisle Vanem | |
we just love swedish products... | |||
2005-12-19 | Fixed lcc compiler warnings. | Dan Fandrich | |
2005-12-18 | Fix spacing. When defining, define to 1. | Yang Tse | |
2005-12-18 | Cleanup windows header includes. Where aplicable, inclusion of | Yang Tse | |
windows.h winsock.h winsock2.h ws2tcpip.h is done in setup.h | |||
2005-12-17 | Cleanup | Yang Tse | |
2005-12-17 | Windows related cleanup | Yang Tse | |
2005-12-17 | Change multiple header inclusion prevention definition to __LIB_CURL_SETUP_H | Yang Tse | |
2005-12-16 | 'Fix' windows builds | Yang Tse | |
2005-12-16 | Jean Jacques Drouin pointed out that you could only have a user name or | Daniel Stenberg | |
password of 127 bytes or less embedded in a URL, where actually the code uses a 255 byte buffer for it! Modified now to use the full buffer size. | |||
2005-12-13 | Fixed some compiler warnings on lcc. | Dan Fandrich | |
2005-12-13 | Undo last 'fix', since it was not the proper one. | Yang Tse | |
2005-12-12 | Fix compiler warning | Yang Tse | |
2005-12-11 | Undo last changes | Yang Tse | |
2005-12-11 | Dov Murik made defining HTTP_ONLY also disable TFTP | Daniel Stenberg | |
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-09 | Unset HAVE_STRUCT_SOCKADDR_STORAGE when using msvc 6.0 with no PSDK | Yang Tse | |
2005-12-08 | Replaced nonstandard u_char and u_int types | Dan Fandrich | |
2005-12-08 | Fix compiler warning | Yang Tse | |
2005-12-08 | Fix compiler warning | Yang Tse | |
2005-12-08 | Fixed a lingering omission of gzip support. | Dan Fandrich | |
2005-12-06 | 7.15.1 with the now to be announced security flaw fixed | Daniel Stenberg | |
2005-12-05 | Added a run-time check to warn if TFTP is going to fail due to portability | Dan Fandrich | |
issues in the code. | |||
2005-12-05 | Yang Tse fixed: Openssl 0.9.9 makes 'const' the SSL_METHOD parameter in | Daniel Stenberg | |
SSL_CTX_new and others, and also makes functions SSLv23_client_method, TLSv1_client_method, etc return a 'const' SSL_METHOD pointer. Previous versions do not use the 'const' qualifier. | |||
2005-12-05 | Another Yang Tse warning cleanup raid! | Daniel Stenberg | |
2005-12-04 | Recent OpenSSL returns a 'const' in '*_client_method()'. So avoid | Gisle Vanem | |
'assignment discards qualifiers from pointer target type' warning. | |||
2005-12-02 | Yang Tse's fix to only provide the proto if there is such a function and | Daniel Stenberg | |
we didn't find any proto | |||
2005-12-02 | Yang Tse fixed the 4th argument in the sendto() calls | Daniel Stenberg | |
2005-12-01 | Jamie Newton pointed out that libcurl's file:// code would close() a zero | Daniel Stenberg | |
file descriptor if given a non-existing file. | |||
2005-11-30 | cast the va_arg() assignment to ftp_filemethod properly | Daniel Stenberg | |
2005-11-28 | new experimental "ftp method" code | Daniel Stenberg | |
2005-11-28 | Yang Tse's changes to provide an inet_pton() proto for the platforms who | Daniel Stenberg | |
don't have one in order to fix a remaining warning on IRIX 6.2. | |||
2005-11-25 | Yang Tse: fixes the use of Curl_inet_ntop and Curl_inet_pton with no | Daniel Stenberg | |
prototypes on some platforms, ie IRIX 6.2 MIPS C 6.2 | |||
2005-11-24 | Yang Tse: use static on file-private functions | Daniel Stenberg | |
2005-11-24 | Yang Tse: fix compilation errors when SSL is not disabled and HTTP is | Daniel Stenberg | |
disabled | |||
2005-11-24 | Yang Tse: removes GOPHER protocol when HTTP is disabled | Daniel Stenberg | |
2005-11-24 | Changes for OpenWatcom 1.4. | Gisle Vanem | |
2005-11-24 | Doug Kaufman's set of patches to make curl build fine on DJGPP again using | Daniel Stenberg | |
configure. | |||
2005-11-23 | Yang Tse's patch to silence MSVC warnings | Daniel Stenberg | |
2005-11-23 | only enable NTLM if HTTP and NTLM is not disabled, and if NTLM is disabled | Daniel Stenberg | |
we define an empty macro for the ntlm cleanup function | |||
2005-11-23 | Yang Tse fixed MSVC 6.0 warnings | Daniel Stenberg | |