Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-11-30 | transfer: Fixed existing scratch buffer being checked for NULL twice | Steve Holme | |
If the scratch buffer already existed when the CRLF conversion was performed then the buffer pointer would be checked twice for NULL. This second check is only necessary if the call to malloc() was performed by the first check. | |||
2014-11-30 | smtp: Fixed dot stuffing being performed when no new data read | Steve Holme | |
Whilst I had moved the dot stuffing code from being performed before CRLF conversion takes place to after it, in commit 4bd860a001, I had moved it outside the 'when something read' block of code when meant it could perform the dot stuffing twice on partial send if nread happened to contain the right values. It also meant the function could potentially read past the end of buffer. This was highlighted by the following warning: warning: `nread' might be used uninitialized in this function | |||
2014-11-29 | smb.h: fixed picky compiler warning | Daniel Stenberg | |
smb.h:30:16: error: comma at end of enumerator list [-Werror=pedantic] | |||
2014-11-29 | tests: Disable test 1013 until SMB is fully added | Steve Holme | |
2014-11-29 | smb: Added SMB protocol and port definitions | Bill Nagel | |
Added the necessary protocol and port definitions in order to support SMB/CIFS. | |||
2014-11-29 | smb: Added internal SMB definitions and structures | Bill Nagel | |
Added the internal definitions and structures necessary for SMB/CIFS support. | |||
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 | |