Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-11-29 | smb: Added SMB connection structure | Bill Nagel | |
Added the connection structure that will be required in urldata.h for SMB/CIFS based connections. | |||
2014-11-29 | smb: Added initial source files for SMB | Bill Nagel | |
Added the initial source files and updated the relevant project files in order to support SMB/CIFS. | |||
2014-11-29 | smb: Added configuration options for SMB | Bill Nagel | |
Added --enable-smb and --disable-smb configuration options for the upcoming SMB/CIFS protocol support. | |||
2014-11-28 | runtests.pl: fix startup of IPv6 servers | Peter Wu | |
Commit curl-7_23_1-143-g8218064 changed the parameter of responsive_http_server to accept types other than IPv6 (converting from a boolean to a string), but only considered the lower-case "ipv6" and not the "IPv6" variant. This caused all servers to start in IPv4 mode instead. This patch converts the remaining cases to "ipv6". While not strictly necessary for the run*server variants, these got also converted for consistency and to prevent future errors. Signed-off-by: Peter Wu <peter@lekensteyn.nl> | |||
2014-11-28 | runtests.pl: fix warning message, remove duplicate value | Peter Wu | |
Signed-off-by: Peter Wu <peter@lekensteyn.nl> | |||
2014-11-27 | http.c: Fixed compilation warnings from features being disabled | Steve Holme | |
warning: unused variable 'data' warning: variable 'addcookies' set but not used ...and some very minor coding style policing. | |||
2014-11-27 | RELEASE-NOTES: Synced with c5399c827d | Steve Holme | |
2014-11-26 | tests: Added SMTP with --crlf test case | Steve Holme | |
2014-11-26 | docs: Updated for commit 4bd860a001 and SMTP Unix line ending conversion | Steve Holme | |
2014-11-26 | smtp: Fixed const'ness of nread parameter in Curl_smtp_escape_eob() | Steve Holme | |
...and some comment typos! | |||
2014-11-26 | smtp: Added support for the conversion of Unix newlines during mail send | Steve Holme | |
Added support for the automatic conversion of Unix newlines to CRLF during mail uploads. Feature: http://curl.haxx.se/bug/view.cgi?id=1456 | |||
2014-11-25 | CURLOPT_CRLF.3: Fixed inclusion of SMTP in listed protocols | Steve Holme | |
2014-11-25 | curl*3: added small examples | Daniel Stenberg | |
and some minor edits | |||
2014-11-25 | libcurl.3: fix formatting | Daniel Stenberg | |
refer to functions with the man page section properly | |||
2014-11-25 | man pages: SEE ALSO curl_multi_wait | Daniel Stenberg | |
2014-11-25 | curl_multi_wait.3: clarify numfds being used if not NULL | Daniel Stenberg | |
2014-11-25 | multi-single.c: switch to use curl_multi_wait | Daniel Stenberg | |
Makes the example much easier and straight-forward! | |||
2014-11-25 | testcurl: bump the version of this script! | Daniel Stenberg | |
2014-11-25 | testcurl: skip reading the setup file if given enough cmdline info | Daniel Stenberg | |
This makes it much easier to run multiple tests in the same directory, just altering the command lines used. | |||
2014-11-25 | select.c: fix compilation for VxWorks | Daniel Stenberg | |
Reported-by: Brian Bug: http://curl.haxx.se/bug/view.cgi?id=1455 | |||
2014-11-24 | SSL: Add PEM format support for public key pinning | moparisthebest | |
2014-11-24 | Revert "repository: ignore patch files generated by git" | Kamil Dudka | |
This reverts commit 217024a687ce86eb6d2317822ed81c7e5abc4b61. Bug: https://github.com/bagder/curl/commit/217024a6#commitcomment-8693738 | |||
2014-11-23 | multi.c: Fixed compilation warnings when no verbose string support | Steve Holme | |
warning: variable 'connection_id' set but not used warning: unused parameter 'lineno' | |||
2014-11-23 | RELEASE-NOTES: Synced with 1450712e76 | Steve Holme | |
2014-11-23 | sasl: Tidied up some parameter comments | Steve Holme | |
2014-11-23 | sasl: Reduced the need for two sets of NTLM functions | Steve Holme | |
2014-11-23 | ntlm: Moved NSS initialisation to base decode function | Steve Holme | |
2014-11-23 | http_ntlm: Fixed additional NSS initialisation call when decoding type-2 | Steve Holme | |
After commit 48d19acb7c the HTTP code would call Curl_nss_force_init() twice when decoding a NTLM type-2 message, once directly and the other through the call to Curl_sasl_decode_ntlm_type2_message(). | |||
2014-11-23 | ntlm: Fixed static'ness of local decode function | Steve Holme | |
2014-11-23 | ntlm: Corrected some parameter names and comments | Steve Holme | |
2014-11-22 | runtests.pl: Re-aligned feature support comments | Steve Holme | |
2014-11-22 | runtests.pl: Use Kerberos and SPNEGO as proxies for the crypto feature | Steve Holme | |
In addition to NTLM, use Kerberos and SPNEGO as proxies to the crypto feature. ...and converted tab characters, from commit 4b4e8a5853, to spaces. | |||
2014-11-22 | runtests.pl: Added support for SPNEGO | Steve Holme | |
2014-11-22 | runtests.pl: Added Kerberos detection | Steve Holme | |
2014-11-22 | runtests.pl: Added GSS-API detection | Steve Holme | |
2014-11-21 | FILEFORMAT: Added SSPI, GSS-API and Kerberos to the features list | Steve Holme | |
2014-11-21 | FILEFORMAT: Added test requires feature not present information | Steve Holme | |
Such as !SSPI as we do for the NTLM and Digest tests. | |||
2014-11-20 | http.c: log if it notices HTTP 1.1 after a upgrade to http2 | Daniel Stenberg | |
2014-11-20 | test1801: first real http2 test case | Daniel Stenberg | |
2014-11-20 | sws: initial tiny steps toward http2 support | Daniel Stenberg | |
2014-11-20 | FILEFORMAT: mention the new upgrade support | Daniel Stenberg | |
2014-11-20 | test1800: first plain-text http2 test case | Daniel Stenberg | |
Verifies the upgrade request, but gets a plain 1.1 response | |||
2014-11-20 | http: Disable pipelining for HTTP/2 and upgraded connections | Tatsuhiro Tsujikawa | |
This commit disables pipelining for HTTP/2 or upgraded connections. For HTTP/2, we do not support multiplexing. In general, requests cannot be pipelined in an upgraded connection, since it is now different protocol. | |||
2014-11-20 | CURLOPT_POSTFIELDS.3: mention the COPYPOSTFIELDS option | Brad Harder | |
2014-11-19 | multi-uv.c: Updated for curl coding standards | Steve Holme | |
2014-11-19 | conncache: Fixed specifiers in infof() for long and size_t variables | Steve Holme | |
2014-11-19 | cmake: add Kerberos to the supported features | Peter Wu | |
Updated following commit eda919f and a4b7f71. Acked-by: Brad King <brad.king@kitware.com> Signed-off-by: Peter Wu <peter@lekensteyn.nl> | |||
2014-11-19 | cmake: fix NTLM detection when CURL_DISABLE_HTTP defined | Peter Wu | |
Updated following changes in commit f0d860d. Acked-by: Brad King <brad.king@kitware.com> Signed-off-by: Peter Wu <peter@lekensteyn.nl> | |||
2014-11-19 | RELEASE-NOTES: synced with cb13fad733e | Daniel Stenberg | |
2014-11-19 | examples: Wait recommended 100ms when no file descriptors are ready | Jay Satiro | |
Prior to this change when no file descriptors were ready on platforms other than Windows the multi examples would sleep whatever was in timeout, which may or may not have been less than the minimum recommended value [1] of 100ms. [1]: http://curl.haxx.se/libcurl/c/curl_multi_fdset.html |