Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-08-11 | http2: discard frames with no SessionHandle | Anders Bakken | |
Return 0 instead of NGHTTP2_ERR_CALLBACK_FAILURE if we can't locate the SessionHandle. Apparently mod_h2 will sometimes send a frame for a stream_id we're finished with. Use nghttp2_session_get_stream_user_data and nghttp2_session_set_stream_user_data to identify SessionHandles instead of a hash. Closes #372 | |||
2015-08-11 | RELEASE-NOTES: synced with 9ee40ce2aba | Daniel Stenberg | |
2015-08-10 | build: refer to fixed libidn versions | Viktor Szakats | |
closes #371 | |||
2015-08-10 | Revert "configure: disable libidn by default" | Daniel Stenberg | |
This reverts commit e6749055d65398315fd77f5b5b8234c5552ac2d3. ... since libidn has since been fixed. | |||
2015-08-10 | CMake: s/HAVE_GSS_API/HAVE_GSSAPI/ to match header define | Jakub Zakrzewski | |
Otherwise the build only pretended to use GSS-API Closes #370 | |||
2015-08-10 | SFTP: fix range request off-by-one in size check | Daniel Stenberg | |
Reported-by: Tim Stack Closes #359 | |||
2015-08-10 | test46: update cookie expire time | Daniel Stenberg | |
... since it went old and thus was expired and caused the test to fail! | |||
2015-08-09 | generate.bat: Use buildconf.bat for prerequisite file generation | Steve Holme | |
2015-08-09 | buildconf.bat: Tidy up of comments after recent commits | Steve Holme | |
2015-08-09 | buildconf.bat: Added full generation of src\tool_hugehelp.c | Steve Holme | |
Added support for generating the full man page based on code from generate.bat. | |||
2015-08-09 | buildconf.bat: Added detection of groff, nroff, perl and gzip | Steve Holme | |
To allow for the full generation of tool_hugehelp.c added detection of the required programs - based on code from generate.bat. | |||
2015-08-09 | buildconf.bat: Move DOS variable clean-up code to separate function | Steve Holme | |
Rather than duplicate future variables, during clean-up of both success and error conditions, use a common function that can be called by both. | |||
2015-08-09 | RELEASE-NOTES: Synced with 39dcf352d2 | Steve Holme | |
2015-08-09 | buildconf.bat: Added error messages on failure | Steve Holme | |
2015-08-09 | buildconf.bat: Generate and clean files in the same order | Steve Holme | |
2015-08-09 | buildconf.bat: Maintain compatibility with DOS based systems | Steve Holme | |
Commit f08e30d7bc broke compatibility with DOS and non Windows NT based versions of Windows due to the use of the setlocal command. | |||
2015-08-09 | CURLOPT_RESOLVE.3: Note removal support was added in 7.42 | Jay Satiro | |
Bug: http://curl.haxx.se/mail/lib-2015-08/0019.html Reported-by: Inca R | |||
2015-08-08 | checksrc.bat: Fixed error when missing *.c and *.h files | Steve Holme | |
File Not Found | |||
2015-08-08 | checksrc.bat: Fixed incorrect 'lib\vtls' path check in commit 333c36b276 | Steve Holme | |
2015-08-08 | checksrc.bat: Fixed error when [directory] isn't a curl source directory | Steve Holme | |
The system cannot find the file specified. | |||
2015-08-08 | checksrc.bat: Added check for unknown arguments | Steve Holme | |
2015-08-08 | scripts: Added missing comments | Steve Holme | |
2015-08-08 | scripts: Always perform setlocal and endlocal calls in pairs | Steve Holme | |
Ensure that there isn't a mismatch between setlocal and endlocal calls, which could have happened due to setlocal being called after certain error conditions were checked for. | |||
2015-08-08 | scripts: Allow -help to be specified in any argument | Steve Holme | |
Allow the -help command line argument to be specified in any argument and not just as the first. | |||
2015-08-06 | curl_multi_remove_handle.3: fix formatting | juef | |
closes #366 | |||
2015-08-06 | README: Added notes about 'Running DLL based configurations' | Steve Holme | |
...as well as a TODO for a future enhancement to the project files. Thanks-to: Jay Satiro | |||
2015-08-06 | RELEASE-NOTES: Synced with cf8975387f | Steve Holme | |
2015-08-06 | buildconf.bat: Synchronise no repository error with generate.bat | Steve Holme | |
2015-08-06 | generate.bat: Added a check for the presence of a git repository | Steve Holme | |
2015-08-06 | build: Added wolfSSL configurations to VC10+ project files | Jay Satiro | |
URL: https://github.com/bagder/curl/pull/174 | |||
2015-08-06 | build: Added wolfSSL build script for Visual Studio projects | Jay Satiro | |
Added the wolfSSL build script, based on build-openssl.bat, as well as the property sheet and header file required for the upcoming additions to the Visual Studio project files. | |||
2015-08-06 | CHANGES: refer to the online changelog | Daniel Stenberg | |
Suggested-by: mc0e | |||
2015-08-06 | NTLM: handle auth for only a single request | Isaac Boukris | |
Currently when the server responds with 401 on NTLM authenticated connection (re-used) we consider it to have failed. However this is legitimate and may happen when for example IIS is set configured to 'authPersistSingleRequest' or when the request goes thru a proxy (with 'via' header). Implemented by imploying an additional state once a connection is re-used to indicate that if we receive 401 we need to restart authentication. Closes #363 | |||
2015-08-05 | RELEASE-NOTES: Synced with 473807b95f | Steve Holme | |
2015-08-05 | generate.bat: Use buildconf.bat for prerequisite file clean-up | Steve Holme | |
2015-08-05 | buildconf.bat: Added support for file clean-up via -clean | Steve Holme | |
2015-08-05 | buildconf.bat: Added progress output | Steve Holme | |
2015-08-05 | buildconf.bat: Avoid using goto for file not in repository | Steve Holme | |
2015-08-05 | curl_slist_append.3: add error checking to the example | Daniel Stenberg | |
2015-08-05 | buildconf.bat: Added display of usage text with -help | Steve Holme | |
2015-08-05 | buildconf.bat: Added exit codes for error handling | Steve Holme | |
2015-08-05 | buildconf.bat: Added our standard copyright header | Steve Holme | |
2015-08-05 | buildconf.bat: Use lower-case for commands and reserved keywords | Steve Holme | |
2015-08-04 | generate.bat: Only clean prerequisite files when in ALL mode | Steve Holme | |
2015-08-04 | generate.bat: Moved error messages out of sub-routines | Steve Holme | |
2015-08-04 | generate.bat: More use of lower-case for commands and reserved keywords | Steve Holme | |
2015-08-03 | libcurl.3: fix a single typo | Daniel Stenberg | |
Closes #361 | |||
2015-08-03 | RELEASE-NOTES: synced with c4eb10e2f06f | Daniel Stenberg | |
2015-08-02 | SSH: three state machine fixups | Daniel Stenberg | |
The SSH state machine didn't clear the 'rc' variable appropriately in a two places which prevented it from looping the way it should. And it lacked an 'else' statement that made it possible to erroneously get stuck in the SSH_AUTH_AGENT state. Reported-by: Tim Stack Closes #357 | |||
2015-08-02 | curl_gssapi: remove 'const' to fix compiler warnings | Daniel Stenberg | |
initialization discards 'const' qualifier from pointer target type |