Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-12-17 | s/_write/write/g | Gisle Vanem | |
2004-12-17 | Fix calling convention of wlap32.dll function. Watcom | Gisle Vanem | |
uses fastcall by default, so force cdecl. | |||
2004-12-17 | Watcom has 'struct timeval'. | Gisle Vanem | |
2004-12-17 | Add libidn.a and iconv libraries if USE_IDNA=1. | Gisle Vanem | |
2004-12-17 | Added option for using C-ares and libidn. | Gisle Vanem | |
Dependencies generated from $(CSOURCES). | |||
2004-12-17 | getdate.c is gone. | Gisle Vanem | |
2004-12-17 | Print true netrc name (.netrc/_netrc). | Gisle Vanem | |
2004-12-17 | avoid an extra malloc | Daniel Stenberg | |
2004-12-17 | duplicate ! typo | Daniel Stenberg | |
2004-12-17 | fixed minor memory leak when running out of memory | Daniel Stenberg | |
2004-12-17 | oops, add missing return keyword | Daniel Stenberg | |
2004-12-16 | fix skip-reason | Daniel Stenberg | |
2004-12-16 | several windows large-file fixes | Daniel Stenberg | |
2004-12-16 | two more ftp directory re-use tests added | Daniel Stenberg | |
2004-12-16 | Based on Gisle Vanem's patch: make sure the directory re-use works even when | Daniel Stenberg | |
a URL-encoded path is used. | |||
2004-12-16 | Must include <io.h> and <sys/stat.h> before redefining | Gisle Vanem | |
stat(), fstat() and lseek(). | |||
2004-12-16 | Renamed a struct member to avoid conflict with a C++ reserved word. | Dan Fandrich | |
2004-12-16 | reduced the number of sub-blocks | Daniel Stenberg | |
2004-12-16 | moved the lseek() and stat() magic defines to setup.h and now take advantage | Daniel Stenberg | |
of struct_stat in formdata.c as well, to support formpost uploads of large files on Windows too | |||
2004-12-16 | Support uploading and resuming of >2GB files. | Gisle Vanem | |
Ref. lib/file.c. | |||
2004-12-16 | Provide better reasons for why test cases are skipped. Also, don't show the | Daniel Stenberg | |
SKIPPED stuff in the short output. Some platforms get quite a lot of SKIPPED and they don't add much value and only clutter screen space. | |||
2004-12-16 | NULL the fp pointer after it has been fclosed() | Daniel Stenberg | |
2004-12-16 | Dinar in bug report #1086121, found a file handle leak when a multipart | Daniel Stenberg | |
formpost (including a file upload part) was aborted before the whole file was sent. | |||
2004-12-15 | Fix the --enable-debug compiler warning options for older versions of gcc. | Dan Fandrich | |
2004-12-15 | yet another mirror! | Daniel Stenberg | |
2004-12-15 | precaution to prevent double typedefs of the bool | Daniel Stenberg | |
2004-12-15 | moved the bool typedef to setup.h | Daniel Stenberg | |
2004-12-15 | fixed how backslashes are treated in glob strings | Daniel Stenberg | |
2004-12-15 | Make some arrays of pointers const, too. | Dan Fandrich | |
2004-12-15 | Make some arrays of pointers const, too. | Dan Fandrich | |
2004-12-15 | Add 'const' to immutable arrays. | Dan Fandrich | |
2004-12-14 | clarify that the app must free the engine list | Daniel Stenberg | |
2004-12-14 | prevent compiler warning when built without engine support | Daniel Stenberg | |
2004-12-14 | make sure the ipv6 http server gets its pid stored in a separate file | Daniel Stenberg | |
2004-12-14 | use the correct variables, not fixed values | Daniel Stenberg | |
2004-12-14 | Harshal Pradhan fixed changing username/password on a persitent HTTP | Daniel Stenberg | |
connection. | |||
2004-12-14 | mistake | Daniel Stenberg | |
2004-12-14 | Only declare static variables if they're needed. Fixed some compile warnings. | Dan Fandrich | |
2004-12-14 | Header files are in openssl/ only if USE_OPENSSL is set. | Dan Fandrich | |
2004-12-14 | Removed fputc() prototype since it's already in stdio.h | Dan Fandrich | |
2004-12-14 | Caller must free 'engines' list. | Gisle Vanem | |
2004-12-14 | urldata.h: Removed engine_list. | Gisle Vanem | |
ssluse.*: Added SSL_strerror(). Curl_SSL_engines_list() now returns a slist which must be freed by caller. | |||
2004-12-14 | Moved the CURLE_SSL_ENGINE_INITFAILED error code last in the list so that | Daniel Stenberg | |
the others remain at previous values. | |||
2004-12-14 | Moved the engine stuff from the root-level of the SessionHandle struct to the | Daniel Stenberg | |
UrlState sub-struct. Also made the engine_list exist for non-ssl builds to make curl build. | |||
2004-12-13 | Document CURLINFO_SSL_ENGINES and "--engine". | Gisle Vanem | |
2004-12-13 | Set 'data->state.os_errno = error' in some places. | Gisle Vanem | |
Needed elsewhere too? | |||
2004-12-13 | Support for "--engine list" option. | Gisle Vanem | |
Moved CURLOPT_SSLENGINE* options to after verbose mode is set. Added a goto. Eek! | |||
2004-12-13 | Added handling of CURLINFO_SSL_ENGINES; | Gisle Vanem | |
Added Curl_SSL_engines_list(), cleanup SSL in url.c (no HAVE_OPENSSL_x etc.). | |||
2004-12-13 | Handle new type CURLINFO_SLIST. | Gisle Vanem | |
Handle new info list CURLINFO_SSL_ENGINES. | |||
2004-12-13 | Added CURLcode CURLE_SSL_ENGINE_INITFAILED, | Gisle Vanem | |
Added CURLINFO_SLIST type for returing a 'struct slist' in curl_easy_getinfo(). Added CURLINFO_SSL_ENGINES. |