aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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
2015-08-04generate.bat: More use of lower-case for commands and reserved keywordsSteve Holme
2015-08-03libcurl.3: fix a single typoDaniel Stenberg
Closes #361
2015-08-03RELEASE-NOTES: synced with c4eb10e2f06fDaniel Stenberg
2015-08-02SSH: three state machine fixupsDaniel 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-02curl_gssapi: remove 'const' to fix compiler warningsDaniel Stenberg
initialization discards 'const' qualifier from pointer target type
2015-08-02docs: formpost needs the full size at start of uploadDaniel Stenberg
Closes #360
2015-08-01sspi: Fix typo from left over from old code which referenced NTLMSteve Holme
References to NTLM in the identity generation should have been removed in commit c469941293 but not all were.
2015-08-01win32: Fix compilation warnings from commit 40c921f8b8Steve Holme
connect.c:953:5: warning: initializer element is not computable at load time connect.c:953:5: warning: missing initializer for field 'dwMinorVersion' of 'OSVERSIONINFOEX' curl_sspi.c:97:5: warning: initializer element is not computable at load time curl_sspi.c:97:5: warning: missing initializer for field 'szCSDVersion' of 'OSVERSIONINFOEX'
2015-08-01schannel: Fix compilation warning from commit 7a8e861a56Steve Holme
schannel.c:1125:5: warning: missing initializer for field 'dwMinorVersion' of 'OSVERSIONINFOEX' [-Wmissing-field-initializers
2015-07-31libcurl-thread.3: minor reformattingDaniel Stenberg
2015-07-31curl_global_init_mem.3: Warn threaded resolver needs thread safe funcsJay Satiro
Bug: http://curl.haxx.se/mail/lib-2015-07/0149.html Reported-by: Eric Ridge
2015-07-31libcurl-thread.3: Warn memory functions must be thread safeJay Satiro
Bug: http://curl.haxx.se/mail/lib-2015-07/0149.html Reported-by: Eric Ridge
2015-07-31RELEASE-NOTES: Synced with 8b1d00ac1aSteve Holme
2015-07-30INSTALL: Minor formatting correction in 'Legacy Windows and SSL' sectionSteve Holme
...as well as some rewording.
2015-07-30http: move HTTP/2 cleanup code off http_disconnect()Kamil Dudka
Otherwise it would never be called for an HTTP/2 connection, which has its own disconnect handler. I spotted this while debugging <https://bugzilla.redhat.com/1248389> where the http_disconnect() handler was called on an FTP session handle causing 'dnf' to crash. conn->data->req.protop of type (struct FTP *) was reinterpreted as type (struct HTTP *) which resulted in SIGSEGV in Curl_add_buffer_free() after printing the "Connection cache is full, closing the oldest one." message. A previously working version of libcurl started to crash after it was recompiled with the HTTP/2 support despite the HTTP/2 protocol was not actually used. This commit makes it work again although I suspect the root cause (reinterpreting session handle data of incompatible protocol) still has to be fixed. Otherwise the same will happen when mixing FTP and HTTP/2 connections and exceeding the connection cache limit. Reported-by: Tomas Tomecek Bug: https://bugzilla.redhat.com/1248389
2015-07-30ABI doc: use secure URLViktor Szakats
2015-07-30ABI: remove the ascii logoDaniel Stenberg
and made the indent level to 1
2015-07-30libcurl-multi.3: mention curl_multi_waitDaniel Stenberg
... and some general rewordings to improve this docs. Reported-by: Tim Stack Closes #356
2015-07-30maketgz: Fixed some VC makefiles missing from the release tarballSteve Holme
VC7, VC11, VC12 and VC14 makefiles were missing from the release tarball.
2015-07-29RELEASE-NOTES: Synced with 2d7e165761Steve Holme
2015-07-29build: Added VC14 project files to Makefile.amSteve Holme
2015-07-29build: Added VC14 project filesSteve Holme
Updates to Makefile.am for the generation of the project files in the tarball to follow.
2015-07-29libcurl-thread.3: Clarify CURLOPT_NOSIGNAL takes long value 1LJay Satiro
2015-07-28generate.bat: Use lower-case for commands and reserved keywordsSteve Holme
Whilst there are no coding standards for the batch files used in curl, most tend to use lower-case for keywords and upper-case for variables.
2015-07-28build: Added initial VC14 support to generate.batSteve Holme
Visual Studio project files and updates to makefile.am to follow.