Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-08-19 | My first CVS commit just to see if this works. | Gisle Vanem | |
BTW. Used eclipse IDE fo this, which really kicks ass. | |||
2004-08-19 | simplified expression | Daniel Stenberg | |
2004-08-19 | Ling Thio pointed out that getaddrinfo() reverse-lookups ip-only names, and | Daniel Stenberg | |
this is an attempt to prevent it from doing that. affects ipv6-enabled only. | |||
2004-08-19 | the autobuilds failed all over on AIX, attempt to fix the strerror_r() problem | Daniel Stenberg | |
by setting _THREAD_SAFE (and -qthreaded) before strerror_r() is checked for. | |||
2004-08-19 | reuse handles in PHP/CURL works - Kirk Hedden told us | Daniel Stenberg | |
2004-08-18 | PHP FAQ | Daniel Stenberg | |
2004-08-18 | indented the code curl-style | Daniel Stenberg | |
2004-08-17 | removed trailing whitespace | Daniel Stenberg | |
2004-08-17 | see also the reset function | Daniel Stenberg | |
2004-08-17 | mention the reset function | Daniel Stenberg | |
2004-08-17 | Kjetil Jacobsen reported an open file leak in file:// transfers of empty | Daniel Stenberg | |
files. | |||
2004-08-17 | added a check for the xlc compiler on AIX, and if that is detect we use | Daniel Stenberg | |
the -qthreaded compiler option | |||
2004-08-17 | define _THREAD_SAFE on (recent) AIX systems to build thread-safe code | Daniel Stenberg | |
2004-08-17 | recent fixes | Daniel Stenberg | |
2004-08-16 | allow a custom "Accept-Encoding:" header override the internally set one | Daniel Stenberg | |
that gets set with CURLOPT_ENCODING | |||
2004-08-16 | strip trailing whitespace | Daniel Stenberg | |
2004-08-16 | syncronized with libcurl.def. | Gunter Knauf | |
2004-08-16 | cosmetic fix. | Gunter Knauf | |
2004-08-16 | summary edit: mention that some options take a curl_off_t | Daniel Stenberg | |
2004-08-16 | Roland Krikava's cookies over proxy fix. | Daniel Stenberg | |
2004-08-14 | fixed linkage dll targets. (submitted by Casey O'Donnell) | Gunter Knauf | |
2004-08-13 | added two good ideas | Daniel Stenberg | |
2004-08-13 | mention Harshal Pradhan's windows fix | Daniel Stenberg | |
2004-08-13 | Harshal Pradhan made minor syntax change to make this build with MSVC 7.1 | Daniel Stenberg | |
2004-08-13 | removed the ispell-added local word, compressed the final links into a | Daniel Stenberg | |
short section | |||
2004-08-13 | strip trailing whitespace | Daniel Stenberg | |
2004-08-13 | spell | Daniel Stenberg | |
2004-08-12 | Added "5.9 How does libcurl resolve host names?" since I wrote the text in | Daniel Stenberg | |
a mail anyway the other day. | |||
2004-08-12 | updated with recent changes | Daniel Stenberg | |
2004-08-12 | hm | Daniel Stenberg | |
2004-08-12 | 3.16 What certificates do I need with I use SSL? | Daniel Stenberg | |
my first attempt at a basic description of the certs involvede | |||
2004-08-12 | removed trailing whitespace, indented to curl-style levels | Daniel Stenberg | |
2004-08-12 | Removed the _XOPEN_SOURCE defining again since it caused major havoc in IRIX | Daniel Stenberg | |
land with many warnings and even compiler errors due to missing structs etc | |||
2004-08-11 | --disable-[protocol] doesn't disable tests of the specific protocol | Daniel Stenberg | |
2004-08-11 | clarify that CURLE_FTP_USER_PASSWORD_INCORRECT might in fact get returned | Daniel Stenberg | |
even if user and password are correct | |||
2004-08-11 | include the server response in the error message when an FTP server gives | Daniel Stenberg | |
back a 530 after the password is provided, as it isn't necessary because of a bad user name or password. | |||
2004-08-11 | define the _XOPEN_SOURCE define in the config.h file instead, and also added a | Daniel Stenberg | |
decent quote about the define, taken from http://www.opengroup.org/onlinepubs/007908799/xsh/compilation.html | |||
2004-08-11 | fixed the default result for xopen and mimpure to work better | Daniel Stenberg | |
2004-08-11 | experimental code to detect mips-sgi-irix systems that build without gcc | Daniel Stenberg | |
and if so, define _XOPEN_SOURCE to 500 in an attempt to build with less warnings (on the 64bit versions) | |||
2004-08-11 | added several recent bindings | Daniel Stenberg | |
2004-08-10 | updated the CURLOPT_POST description after input from Alan Pinstein | Daniel Stenberg | |
2004-08-10 | Ok, setting CURLOPT_POST to 0 will now convert the request to a GET (this | Daniel Stenberg | |
remains undocumented as this is not the way we recommend) | |||
2004-08-10 | minor reformat to suit the new FAQ parser | Daniel Stenberg | |
2004-08-10 | ignore curllib.dsp | Daniel Stenberg | |
2004-08-10 | ignore more files | Daniel Stenberg | |
2004-08-10 | 7.12.2 work in progress | Daniel Stenberg | |
2004-08-10 | and we're back on a clean notes sheet again | Daniel Stenberg | |
2004-08-10 | 7.12.1 notes | Daniel Stenberg | |
2004-08-10 | added "5.8 libcurl.so.3: open failed: No such file or directory" and made | Daniel Stenberg | |
some general cleanups | |||
2004-08-10 | In OpenSSL 0.9.7d and earlier, ASN1_STRING_to_UTF8 fails if the input is | Daniel Stenberg | |
already UTF-8 encoded. We check for this case and copy the raw string manually to avoid the problem. This code can be made conditional in the future when OpenSSL has been fixed. Work-around brought by Alexis S. L. Carvalho. |