summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-10-03Patches to rename libcurl to libgnurl by Christiangnurl-7_44_0Christian Grothoff
Updated for latest curl using git cherry-pick by Jeff Conflicts: Makefile.am configure.ac docs/gnurl.1 src/Makefile.am tests/libtest/Makefile.am
2015-08-11RELEASE-NOTES: synced with c75a1e775061curl-7_44_0Daniel Stenberg
2015-08-11curl_formget.3: correct return codeSvyatoslav Mishyn
Closes #375
2015-08-11libcurl-tutorial.3: fix formattingSvyatoslav Mishyn
Closes #374
2015-08-11curl_easy_recv.3: fix formattingSvyatoslav Mishyn
2015-08-11http2: discard frames with no SessionHandleAnders 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-11RELEASE-NOTES: synced with 9ee40ce2abaDaniel Stenberg
2015-08-10build: refer to fixed libidn versionsViktor Szakats
closes #371
2015-08-10Revert "configure: disable libidn by default"Daniel Stenberg
This reverts commit e6749055d65398315fd77f5b5b8234c5552ac2d3. ... since libidn has since been fixed.
2015-08-10CMake: s/HAVE_GSS_API/HAVE_GSSAPI/ to match header defineJakub Zakrzewski
Otherwise the build only pretended to use GSS-API Closes #370
2015-08-10SFTP: fix range request off-by-one in size checkDaniel Stenberg
Reported-by: Tim Stack Closes #359
2015-08-10test46: update cookie expire timeDaniel Stenberg
... since it went old and thus was expired and caused the test to fail!
2015-08-09generate.bat: Use buildconf.bat for prerequisite file generationSteve Holme
2015-08-09buildconf.bat: Tidy up of comments after recent commitsSteve Holme
2015-08-09buildconf.bat: Added full generation of src\tool_hugehelp.cSteve Holme
Added support for generating the full man page based on code from generate.bat.
2015-08-09buildconf.bat: Added detection of groff, nroff, perl and gzipSteve 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-09buildconf.bat: Move DOS variable clean-up code to separate functionSteve 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-09RELEASE-NOTES: Synced with 39dcf352d2Steve Holme
2015-08-09buildconf.bat: Added error messages on failureSteve Holme
2015-08-09buildconf.bat: Generate and clean files in the same orderSteve Holme
2015-08-09buildconf.bat: Maintain compatibility with DOS based systemsSteve 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-09CURLOPT_RESOLVE.3: Note removal support was added in 7.42Jay Satiro
Bug: http://curl.haxx.se/mail/lib-2015-08/0019.html Reported-by: Inca R
2015-08-08checksrc.bat: Fixed error when missing *.c and *.h filesSteve Holme
File Not Found
2015-08-08checksrc.bat: Fixed incorrect 'lib\vtls' path check in commit 333c36b276Steve Holme
2015-08-08checksrc.bat: Fixed error when [directory] isn't a curl source directorySteve Holme
The system cannot find the file specified.
2015-08-08checksrc.bat: Added check for unknown argumentsSteve Holme
2015-08-08scripts: Added missing commentsSteve Holme
2015-08-08scripts: Always perform setlocal and endlocal calls in pairsSteve 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-08scripts: Allow -help to be specified in any argumentSteve Holme
Allow the -help command line argument to be specified in any argument and not just as the first.
2015-08-06curl_multi_remove_handle.3: fix formattingjuef
closes #366
2015-08-06README: 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-06RELEASE-NOTES: Synced with cf8975387fSteve Holme
2015-08-06buildconf.bat: Synchronise no repository error with generate.batSteve Holme
2015-08-06generate.bat: Added a check for the presence of a git repositorySteve Holme
2015-08-06build: Added wolfSSL configurations to VC10+ project filesJay Satiro
URL: https://github.com/bagder/curl/pull/174
2015-08-06build: Added wolfSSL build script for Visual Studio projectsJay 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-06CHANGES: refer to the online changelogDaniel Stenberg
Suggested-by: mc0e
2015-08-06NTLM: handle auth for only a single requestIsaac 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-05RELEASE-NOTES: Synced with 473807b95fSteve Holme
2015-08-05generate.bat: Use buildconf.bat for prerequisite file clean-upSteve Holme
2015-08-05buildconf.bat: Added support for file clean-up via -cleanSteve Holme
2015-08-05buildconf.bat: Added progress outputSteve Holme
2015-08-05buildconf.bat: Avoid using goto for file not in repositorySteve Holme
2015-08-05curl_slist_append.3: add error checking to the exampleDaniel Stenberg
2015-08-05buildconf.bat: Added display of usage text with -helpSteve Holme
2015-08-05buildconf.bat: Added exit codes for error handlingSteve Holme
2015-08-05buildconf.bat: Added our standard copyright headerSteve Holme
2015-08-05buildconf.bat: Use lower-case for commands and reserved keywordsSteve Holme
2015-08-04generate.bat: Only clean prerequisite files when in ALL modeSteve Holme
2015-08-04generate.bat: Moved error messages out of sub-routinesSteve Holme