- Jan 29, 2017
-
-
railsnewbie257 authored
Closes #1231
-
- Jan 28, 2017
-
-
Daniel Stenberg authored
-
Michael Kaufmann authored
SSL session reuse with TLS session tickets is not supported yet. Use SSL session IDs instead. See https://github.com/curl/curl/issues/1109
-
Michael Kaufmann authored
SSL session reuse with TLS session tickets is not supported yet. Use SSL session IDs instead. Fixes https://github.com/curl/curl/issues/1109
-
Michael Kaufmann authored
This bugfix is similar to commit c111178b.
-
- Jan 27, 2017
-
-
Daniel Stenberg authored
This repairs cookies for localhost. Non-PSL builds will now only accept "localhost" without dots, while PSL builds okeys everything not listed as PSL. Added test 1258 to verify. This was a regression brought in a76825a5
-
Daniel Stenberg authored
Support is trickling in already.
-
- Jan 24, 2017
-
-
railsnewbie257 authored
Closes #1226
-
Daniel Stenberg authored
Thumbs-up-by: Jay Satiro Closes #1225
-
- Jan 23, 2017
-
-
Daniel Stenberg authored
The winbuild/ build files is now the single MSVC makefile build choice. Closes #1215
-
Jay Satiro authored
On Windows it's possible to have input files with CRLF line endings and a perl that defaults to LF line endings (eg msysgit). Currently that results in generator output of mixed line endings of CR, LF and CRLF. This change fixes that issue in the most succinct way by opening the files in :crlf text mode even when the perl being used does not default to that mode. (On operating systems that don't have a separate text mode it's essentially a no-op.) The output continues to be in the perl's native line ending.
-
Daniel Stenberg authored
-
- Jan 22, 2017
-
-
Daniel Stenberg authored
-
- Jan 20, 2017
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
A regression brought in cb4e2be7 Reported-by: Michael Kaufmann Bug: https://github.com/curl/curl/issues/1174#issuecomment-274018791
-
Antoine Aubert authored
When using multi, mbedtls handshake is in non blocking mode. vtls must set wait for read/write flags for the socket. Closes #1223
-
- Jan 19, 2017
-
-
Richy Kim authored
Replace use of fixed macro BUFSIZE to define the size of the receive buffer. Reappropriate CURLOPT_BUFFERSIZE to include enlarging receive buffer size. Upon setting, resize buffer if larger than the current default size up to a MAX_BUFSIZE (512KB). This can benefit protocols like SFTP. Closes #1222
-
Daniel Stenberg authored
Reported-by: Gisle Vanem
-
Michael Kaufmann authored
This has been implemented with commit 9ad034e5.
-
Viktor Szakats authored
Closes https://github.com/curl/curl/pull/1217
-
Kamil Dudka authored
Implemented since curl-7_36_0-130-g8868a22 Reported-by: Fahim Chandurwala
-
- Jan 18, 2017
-
-
Michael Kaufmann authored
Fix compile warnings that appeared only when curl has been configured with '--disable-verbose'.
-
Daniel Stenberg authored
-
- Jan 17, 2017
-
-
Daniel Stenberg authored
Regression since 1d4202ad, which moved the buffer into a more narrow scope, but the data in that buffer was used outside of that more narrow scope. Reported-by: Dan Fandrich Bug: https://curl.haxx.se/mail/lib-2017-01/0093.html
-
Jay Satiro authored
- Fix logic error in Curl_ossl_random. Broken a few days ago in 807698db.
-
Daniel Stenberg authored
By supporting this, subsequent connects would load a lot less data from disk. Closes #1110
-
- Jan 16, 2017
-
-
Daniel Stenberg authored
-
- Jan 15, 2017
-
-
Kamil Dudka authored
-
Alessandro Ghedini authored
Ref: https://github.com/curl/curl/pull/1160
-
- Jan 14, 2017
-
-
railsnewbie257 authored
Closes #1211
-
Alessandro Ghedini authored
Before: ``` % src/curl https://sigsegv.ninja/ -v --http2 ... > GET / HTTP/1.1 > Host: sigsegv.ninja > User-Agent: curl/7.52.2-DEV > Accept: */* > ... ``` After: ``` % src/curl https://sigsegv.ninja/ -v --http2 ... > GET / HTTP/2 > Host: sigsegv.ninja > User-Agent: curl/7.52.2-DEV > Accept: */* > ```
-
Daniel Stenberg authored
Closes #1200
-
Daniel Stenberg authored
Even though it is called --fail-early
-
Daniel Stenberg authored
Closes #1139
-
Daniel Stenberg authored
-
- Jan 13, 2017
-
-
Daniel Stenberg authored
curl_addrinfo.c:519:20: error: conversion to ‘curl_socklen_t {aka unsigned int}’ from ‘long unsigned int’ may alter its value [-Werror=conversion] Follow-up to 1d786fae
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Isaac Boukris authored
In addition to unix domain sockets, Linux also supports an abstract namespace which is independent of the filesystem. In order to support it, add new CURLOPT_ABSTRACT_UNIX_SOCKET option which uses the same storage as CURLOPT_UNIX_SOCKET_PATH internally, along with a flag to specify abstract socket. On non-supporting platforms, the abstract address will be interpreted as an empty string and fail gracefully. Also add new --abstract-unix-socket tool parameter. Signed-off-by: Isaac Boukris <iboukris@gmail.com> Reported-by: Chungtsun Li (typeless) Reviewed-by: Daniel Stenberg Reviewed-by: Peter Wu Closes #1197 Fixes #1061
-