#
861b647e |
| 06-Sep-2008 |
Yang Tse |
remove unnecessary typecasting of realloc()
|
#
3dcd2b82 |
| 04-Sep-2008 |
Yang Tse |
fix print formatting string directives
|
#
934708d9 |
| 02-Sep-2008 |
Dan Fandrich |
Made some variables const which eliminated some casts
|
Revision tags: curl-7_19_0 |
|
#
ac18b471 |
| 17-Aug-2008 |
Yang Tse |
libcurl internal base64.h header file renamed to curl_base64.h
|
#
bbe2386b |
| 17-Aug-2008 |
Yang Tse |
libcurl internal md5.h header file renamed to curl_md5.h
|
Revision tags: curl-7_18_2, curl-7_18_1, curl-7_18_0 |
|
#
0ce484ee |
| 10-Jan-2008 |
Daniel Stenberg |
Nikitinskit Dmitriy filed bug report #1868255 (http://curl.haxx.se/bug/view.cgi?id=1868255) with a patch. It identifies and fixes a problem with parsing WWW-Authenticate: headers with additio
Nikitinskit Dmitriy filed bug report #1868255 (http://curl.haxx.se/bug/view.cgi?id=1868255) with a patch. It identifies and fixes a problem with parsing WWW-Authenticate: headers with additional spaces in the line that the parser wasn't written to deal with.
show more ...
|
#
45a2240e |
| 29-Nov-2007 |
Daniel Stenberg |
A bug report on the curl-library list showed a HTTP Digest session going on with a 700+ letter nonce. Previously libcurl only support 127 letter ones and now I bumped it to 1023.
|
#
cbd1a77e |
| 07-Nov-2007 |
Daniel Stenberg |
if () => if() while () => while() and some other minor re-indentings
|
Revision tags: curl-7_17_1, curl-7_17_0 |
|
#
8cf0814a |
| 27-Aug-2007 |
Dan Fandrich |
Fixed some minor type mismatches and missing consts mainly found by splint.
|
Revision tags: curl-7_17_0-preldapfix |
|
#
9af807a5 |
| 22-Jul-2007 |
Daniel Stenberg |
HTTP Digest auth fix on a re-used connection
|
Revision tags: curl-7_16_4, curl-7_16_3, curl-7_16_2 |
|
#
74443426 |
| 26-Feb-2007 |
Daniel Stenberg |
Jose Kahan pointed out a Digest server that provided the algorith last in the header line without quotes and with a CRLF immediately following...
|
Revision tags: curl-7_16_1 |
|
#
0fb5a65a |
| 14-Jan-2007 |
Daniel Stenberg |
- David McCreedy provided libcurl changes for doing HTTP communication on non-ASCII platforms. It does add some complexity, most notably with more #ifdefs, but I want to see this supporte
- David McCreedy provided libcurl changes for doing HTTP communication on non-ASCII platforms. It does add some complexity, most notably with more #ifdefs, but I want to see this supported added and I can't see how we can add it without the extra stuff added.
show more ...
|
#
359d5009 |
| 03-Jan-2007 |
Daniel Stenberg |
- David McCreedy made changes to allow base64 encoding/decoding to work on non-ASCII platforms.
|
Revision tags: curl-7_16_0 |
|
#
44d84ac1 |
| 17-Oct-2006 |
Daniel Stenberg |
Avoid typecasting a signed char to an int when using is*() functions, as that could very well cause a negate number get passed in and thus cause reading outside of the array usually used for
Avoid typecasting a signed char to an int when using is*() functions, as that could very well cause a negate number get passed in and thus cause reading outside of the array usually used for this purpose. We avoid this by using the uppercase macro versions introduced just now that does some extra crazy typecasts to avoid byte codes > 127 to cause negative int values.
show more ...
|
Revision tags: curl-7_15_6-prepipeline, curl-7_15_5, curl-7_15_4 |
|
#
752acedc |
| 25-May-2006 |
Daniel Stenberg |
Olaf St�ben fixed a bug that caused Digest authentication with md5-sess to fail. When using the md5-sess, the result was not Md5 encoded and Base64 transformed.
|
Revision tags: curl-7_15_3, curl-7_15_2, curl-7_15_1, curl-7_15_0, curl-7_14_1, c-ares-1_3_0, curl-7_14_0, curl-7_13_2, curl-7_13_1, before_ftp_statemachine, curl-7_13_0, curl-7_12_3 |
|
#
94043b11 |
| 12-Nov-2004 |
Daniel Stenberg |
Dan Fandrich added the --disable-crypto-auth option to configure to allow libcurl to build without Digest support. (I figure it should also explicitly disable Negotiate and NTLM.)
|
Revision tags: curl-7_12_2 |
|
#
39af394a |
| 06-Oct-2004 |
Daniel Stenberg |
removed tabs and trailing whitespace from source
|
Revision tags: curl-7_12_1 |
|
#
81c48aa4 |
| 31-Jul-2004 |
Daniel Stenberg |
Joel Chen reported that we assumed content within quotes a bit too much in the digest code. This fixes it.
|
#
feb2dd28 |
| 24-Jun-2004 |
Daniel Stenberg |
Replaced all uses of sprintf() with the safer snprintf(). It is just a precaution to prevent mistakes to lead to buffer overflows.
|
Revision tags: pre-aifix |
|
#
70f08b5b |
| 03-Jun-2004 |
Daniel Stenberg |
Vincent Bronner made the code use the correct user name + password when doing proxy authentication.
|
Revision tags: curl-7_12_0 |
|
#
78aba6e4 |
| 13-May-2004 |
Daniel Stenberg |
return CURLDIGEST_NOMEM when a memory function fails to deliver
|
#
fd775454 |
| 12-May-2004 |
Daniel Stenberg |
Check that memory functions return non-NULL or return error.
|
#
bbafb2eb |
| 11-May-2004 |
Daniel Stenberg |
curl_global_init_mem() allows the memory functions to be replaced. memory.h is included everywhere for this.
|
#
fff01f24 |
| 10-May-2004 |
Daniel Stenberg |
Luca fixed the nc= in the digest line since it apparantly should not have quotes...
|
#
1354671c |
| 06-May-2004 |
Daniel Stenberg |
use %ld to printf now.tv_sec
|