Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-07-29 | curl-functions.m4 serial # bump | Yang Tse | |
2011-07-29 | Revert "configure: additional flag checks for fcntl() socket() and socketpair()" | Yang Tse | |
This reverts commit bc6e6a465ad0b9f9757c4385698fe5f255dd125b. | |||
2011-07-29 | configure: additional flag checks for fcntl() socket() and socketpair() | Yang Tse | |
2011-07-29 | NTLM single-sign on adjustments (VII) | Yang Tse | |
Initialize variables when connectdata object is created. | |||
2011-07-29 | socketpair() usage tracking to allow fd leak detection | Yang Tse | |
2011-07-29 | fix compiler warning | Yang Tse | |
2011-07-28 | Avoid a "shadows global declaration" warning on old MIT Kerberos | Dan Fandrich | |
Defining NCOMPAT eliminates the backwards-compatibility macros that are the source of the problem and which we don't need, anyway. | |||
2011-07-28 | NTLM single-sign on adjustments (VI) | Yang Tse | |
Fix compiler warning | |||
2011-07-28 | Give the NTLM SSO helper a moment to cleanly shut down if needed | Dan Fandrich | |
2011-07-28 | Removed an extraneous \n that violated the SSO daemon protocol | Dan Fandrich | |
This caused fake_ntlm to abort due to an invalid command causing sporadic test 2005 failures. | |||
2011-07-28 | NTLM single-sign on adjustments (V) | Yang Tse | |
Enhance test harness fake_ntlm logging upon invalid input. | |||
2011-07-27 | Fixed a couple of memory leaks in NTLM SSO support | Dan Fandrich | |
2011-07-27 | NTLM single-sign on adjustments (IV) | Yang Tse | |
Fix compiler warning | |||
2011-07-27 | NTLM single-sign on adjustments (III) | Yang Tse | |
Provide some error tracing and fix execl() calling. | |||
2011-07-27 | NTLM single-sign on adjustments (II) | Yang Tse | |
Ensure test harness fake_ntlm main function can properly handle arguments. | |||
2011-07-27 | NTLM single-sign on adjustments (I) | Yang Tse | |
Use fake_ntlm absolute filename in NTLM_AUTH environment variable for test 2005 definition. | |||
2011-07-26 | Fixed test 2005 to work in out-of-tree builds | Dan Fandrich | |
Also, set the test number in the test data file so fake_ntlm can be reused in future tests. | |||
2011-07-26 | fix compiler warning | Yang Tse | |
2011-07-26 | fix compiler warning | Yang Tse | |
2011-07-26 | stdio.h, stdlib.h, string.h, stdarg.h and ctype.h inclusion done in setup_once.h | Yang Tse | |
2011-07-25 | WIN32 io.h and fcntl.h inclusion done in setup_once.h | Yang Tse | |
2011-07-25 | time.h and sys/time.h inclusion conditionally done in setup_once.h | Yang Tse | |
2011-07-25 | errno.h inclusion conditionally done in setup_once.h - followup | Yang Tse | |
2011-07-24 | errno.h inclusion conditionally done in setup_once.h | Yang Tse | |
2011-07-22 | progress: reset flags at transfer start | Ben Winslow | |
When an easy handle is used to download an URI which has no Content-Length header (or equivalent) after downloading an URI which does, the value from the previous transfer is reused and returned by CURLINFO_CONTENT_LENGTH_DOWNLOAD. This is because the progress flags (used to determine whether such a header was received) are not reset between transfers. Bug: http://curl.haxx.se/bug/view.cgi?id=3370895 | |||
2011-07-20 | RELEASE-NOTES: HTTP error handling on request body send | Daniel Stenberg | |
2011-07-20 | http error response: stop sending when error is received | Daniel Stenberg | |
When libcurl has said to the server that there's a POST or PUT coming (with a content-length and all) it has to either deliver that amount of data or it needs to close the connection before trying a second request. Adds test case 1129, 1130 and 1131 The bug report is about when used with 100-continue, but the change is more generic. Bug: http://curl.haxx.se/mail/lib-2011-06/0191.html Reported by: Steven Parkes | |||
2011-07-19 | sso_ntlm_initiate: unassigned variable | Michael Mueller | |
Bug: http://curl.haxx.se/mail/lib-2011-07/0109.html | |||
2011-07-19 | test2005: require a debug build | Daniel Stenberg | |
2011-07-19 | runtests: add 'debug' as a feature a test can require | Daniel Stenberg | |
2011-07-19 | configure: avoid "test -e" | Daniel Stenberg | |
"test -e" is POSIX but clearly was not supported by the SunOS sh version, -f is supported and should be a decent equivalent Bug: http://curl.haxx.se/bug/view.cgi?id=3371574 | |||
2011-07-19 | symbols-in-versions: add NTLM_SSO symbols | Daniel Stenberg | |
2011-07-18 | gitignore: ignore fake_ntlm | Daniel Stenberg | |
2011-07-18 | test2005: verify ntlm single-signon | Mandy Wu | |
2011-07-18 | NTLM single-sign on supported | Mandy Wu | |
With the use of the 'ntlm_auth' tool from the Samba project | |||
2011-07-17 | sws: don't enable pipelining for requests with content-length | Daniel Stenberg | |
Log texts also modified and some white space edits | |||
2011-07-14 | Fix OS400 scripts to make it compilable again. | Patrick Monnerat | |
Upgrade ILE/RPG binding to 7.21.7. Update OS400 documentation accordingly. | |||
2011-07-14 | runtests: ignore the 'all_proxy' environment variable as well | Daniel Stenberg | |
We should probably also make sure that [protocol]_proxy for all possible protocols libcurl supports are unset. | |||
2011-07-13 | curl_gssapi: Guard files with HAVE_GSSAPI. | Julien Chaffraix | |
Bug: http://curl.haxx.se/mail/lib-2011-07/0074.html Reported and fix suggested by: Ben Greear | |||
2011-07-13 | gssapi: rename our files to avoid conflicts | Daniel Stenberg | |
gssapi.h is used as a header name by Heimdal-style GSSAPI so it would conflict with a private header using that name, and while renaming the header I figured we should name the .c file accordingly as well. Bug: http://curl.haxx.se/mail/lib-2011-07/0071.html Reported by: Ben Greear | |||
2011-07-12 | silence picky compilers: mark unused parameters | Daniel Stenberg | |
Modern gcc versions (4.6.X) get more picky by default and have started to warn for unused parameters, but luckily gcc also allows us to mark them as unused so that we can avoid the warnings. | |||
2011-07-12 | gssapi.c: Simplified the function. | Julien Chaffraix | |
Removed the parameters that were common to all our invocation. | |||
2011-07-12 | Added Curl_gss_init_sec_context. | Julien Chaffraix | |
This function wraps our calls to gss_init_sec_context so that we have a unified way to talk to GSSAPI. | |||
2011-07-12 | http_negociate: Be consistent in gss_init_sec_context attributes. | Julien Chaffraix | |
This change makes this callsite match the rest of the code. | |||
2011-07-04 | code style: space between close paren and open brace | Daniel Stenberg | |
2011-07-04 | checksrc: detect open brace without space | Daniel Stenberg | |
We use "if(condition) {" with a space between the close paren and the open brace. | |||
2011-07-04 | polarssl.h: remove CVS leftover | Daniel Stenberg | |
2011-07-03 | help output: more gnu like output | Daniel Stenberg | |
First, the -J/--remote-header-name was wrongly sorted in the --help output as pointed out in bug report #3349271. Then, I changed the format of the texts to follow the man page better in that it now uses "-A, --long" intead of "-A/--long". I also made all additional arguments get written as in "-A, --long FILENAME" instead of the previous "<filename>" style. Reported by: Herve Amblard Bug: http://curl.haxx.se/bug/view.cgi?id=3349271 | |||
2011-07-03 | sws: allow multiple commands in <servercmd> | Daniel Stenberg | |
2011-07-01 | Curl_http_readwrite_headers: minor indent fix | Daniel Stenberg | |