Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-11-09 | oauth2: Don't use XAUTH2 in OAuth 2.0 function name | Steve Holme | |
2015-11-09 | oauth2: Don't use XOAUTH2 in OAuth 2.0 variables | Steve Holme | |
2015-11-09 | oauth2: Use OAuth 2.0 rather than XOAUTH2 in comments | Steve Holme | |
When referring to OAuth 2.0 we should use the official name rather the SASL mechanism name. | |||
2015-11-09 | imap: avoid freeing constant string | Daniel Stenberg | |
The fix in 1a614c6c3 was wrong and would leed to free() of a fixed string. Pointed-out-by: Kamil Dudka | |||
2015-11-09 | ROADMAP: remove two items already done | Daniel Stenberg | |
2015-11-09 | RELEASE-NOTES: synced with 2200bf62054 | Daniel Stenberg | |
2015-11-09 | acinclude: Remove check for 16-bit curl_off_t | Jay Satiro | |
Because it's illogical to check for a 16-bit curl_off_t. Ref: https://github.com/bagder/curl/issues/425#issuecomment-154964205 | |||
2015-11-08 | tool: Fixed a memory leak on OOM introduced in 19cb0c4a | Dan Fandrich | |
2015-11-08 | imap: Don't check for continuation when executing a CUSTOMREQUEST | Justin Ehlert | |
Bug: https://github.com/bagder/curl/issues/486 Closes https://github.com/bagder/curl/pull/487 | |||
2015-11-07 | imap: checksrc: remove space after while before paren | Daniel Stenberg | |
2015-11-07 | checksrc.whitelist: "missing space after close paren" | Daniel Stenberg | |
... when it was within a string! | |||
2015-11-07 | opts: Corrected TLS protocols list to include POP3S rather than POP3 | Steve Holme | |
2015-11-07 | imap: Quote other 'atom-specials' and not just the space character | Steve Holme | |
Closes #517 | |||
2015-11-07 | imap: Fixed double quote in LIST command when mailbox contains spaces | Steve Holme | |
2015-11-06 | imap: fix compiler warning | Daniel Stenberg | |
imap.c:657:13: error: assignment discards 'const' qualifier from pointer target type [-Werror=discarded-qualifiers] | |||
2015-11-06 | imap: Don't call imap_atom() when no mailbox specified in LIST command | Steve Holme | |
2015-11-06 | curl.1: remove the overlap --range example | Daniel Stenberg | |
... it is just weird to include by default even if it still works. | |||
2015-11-06 | tftp tests: verify sent options too | Daniel Stenberg | |
The tftpd test server now logs all received options and thus all TFTP test cases need to match them exactly. Extended test 283 to use and verify --tftp-blksize. | |||
2015-11-06 | getinfo: CURLINFO_ACTIVESOCKET: fix bad socket value | Jay Satiro | |
- Set user info param to the socket returned by Curl_getconnectinfo, regardless of if the socket is bad. Effectively this means the user info param now will receive CURL_SOCKET_BAD instead of -1 on bad socket. - Remove incorrect comments. CURLINFO_ACTIVESOCKET is documented to write CURL_SOCKET_BAD to user info param but prior to this change it wrote -1. Bug: https://github.com/bagder/curl/pull/518 Reported-by: Marcel Raad | |||
2015-11-05 | curl_ntlm_core: fix 2 curl_off_t constant overflows. | Patrick Monnerat | |
2015-11-05 | os400: adjust specific code to support new options. | Patrick Monnerat | |
2015-11-02 | rawstr: Speed up Curl_raw_toupper by 40% | Lauri Kasanen | |
Rationale: when starting up a curl-using app, all cookies from the jar are checked against each other. This was causing a startup delay in the Fifth browser. All tests pass. Signed-off-by: Lauri Kasanen <cand@gmx.com> | |||
2015-11-02 | http redirects: %-encode bytes outside of ascii range | Daniel Stenberg | |
Apparently there are sites out there that do redirects to URLs they provide in plain UTF-8 or similar. Browsers and wget %-encode such headers when doing a subsequent request. Now libcurl does too. Added test 1138 to verify. Closes #473 | |||
2015-11-02 | RELEASE-NOTES: synced with cba5bc585410 | Daniel Stenberg | |
2015-11-02 | symbols-in-version: add all CURL_HTTPPOST_* symbols | Daniel Stenberg | |
2015-11-02 | formadd: support >2GB files on windows | Daniel Stenberg | |
Closes #425 | |||
2015-10-31 | curl.h: s/HTTPPOST_/CURL_HTTPOST_ | Daniel Stenberg | |
Fixes a name space pollution at the cost of programs using one of these defines will no longer compile. However, the vast majority of libcurl programs that do multipart formposts use curl_formadd() to build this list. Closes #506 | |||
2015-10-29 | mbedtls: fix "Structurally dead code" | Daniel Stenberg | |
CID 1332129 | |||
2015-10-29 | mbedtls: fix "Logically dead code" | Daniel Stenberg | |
CID 1332128 | |||
2015-10-29 | Revert "openssl: engine: remove double-free" | Daniel Stenberg | |
This reverts commit 370ee919b37cc9a46c36428b2bb1527eae5db2bd. Issue #509 has all the details but it was confirmed that the crash was not due to this, so the previous commit was wrong. | |||
2015-10-28 | curl.1: -E: s/private certificate/client certificate | Daniel Stenberg | |
... as the certificate is strictly speaking not private. Reported-by: John Levon | |||
2015-10-27 | openssl: engine: remove double-free | Daniel Stenberg | |
After a successful call to SSL_CTX_use_PrivateKey(), we must not call EVP_PKEY_free() on the key. Reported-by: nased0 Closes #509 | |||
2015-10-27 | socks: Fix incorrect port numbers in failed connect messages | Jay Satiro | |
2015-10-26 | DISTRO-DILEMMA: removed | Daniel Stenberg | |
Out of date and not kept accurate. It was sort of a problem of the past anyway. | |||
2015-10-25 | MacOSX-Framework: sdk regex fix for sdk 10.10 and later | xiangbin li | |
closes #507 | |||
2015-10-24 | build: Fix support for PKG_CONFIG | Jay Satiro | |
- Allow the user to use PKG_CONFIG but not PKGCONFIG. Background: Last week in 14d5a86 a change was made to allow the user to set the PKGCONFIG variable. Today in 72d99f2 I supplemented that to allow the more common PKG_CONFIG as an alternative if PKGCONFIG is not set. Neither of those changes worked as expected because PKGCONFIG is occasionally reset in configure and by the CURL_CHECK_PKGCONFIG macro. Instead in this commit I take the approach that the user may set PKG_CONFIG only. | |||
2015-10-23 | build: Fix mingw ssl gdi32 order | Jay Satiro | |
- If mingw ssl make sure -lgdi32 comes after ssl libs - Allow PKG_CONFIG to set pkg-config location and options Bug: https://github.com/bagder/curl/pull/501 Reported-by: Kang Lin | |||
2015-10-23 | RELEASE-NOTES: synced with 03b6e078163f | Daniel Stenberg | |
2015-10-23 | polarssl/mbedtls: fix name space pollution | Daniel Stenberg | |
Global private symbols MUST start with Curl_! | |||
2015-10-23 | mbedTLS: THREADING_SUPPORT compilation fix | Dmitry S. Baikov | |
Closes #505 | |||
2015-10-23 | test1137: verify --ignore-content-length for FTP | Daniel Stenberg | |
2015-10-23 | curl.1: --ignore-content-length now works for FTP too | Daniel Stenberg | |
2015-10-23 | ftp: allow CURLOPT_IGNORE_CONTENT_LENGTH to ignore size | Kurt Fankhauser | |
This allows FTP transfers with growing (or shrinking) files without causing a transfer error. Closes #480 | |||
2015-10-23 | CURLOPT_STREAM_WEIGHT.3: call argument 'weight' too | Daniel Stenberg | |
... and add a little example of what the weight actually means. "Relative proportion of bandwidth". | |||
2015-10-23 | http2: add stream options to dist and curl_easy_setopt.3 | Daniel Stenberg | |
2015-10-23 | http2: s/priority/weight | Daniel Stenberg | |
2015-10-23 | http2: on_frame_recv: trust the conn/data input | Daniel Stenberg | |
Removed wrong assert()s The 'conn' passed in as userdata can be used and there can be other sessionhandles ('data') than the single one this checked for. | |||
2015-10-23 | http2: added three stream prio/deps options | Daniel Stenberg | |
CURLOPT_STREAM_DEPENDS CURLOPT_STREAM_DEPENDS_E CURLOPT_STREAM_PRIORITY | |||
2015-10-22 | RELEASE-NOTES: synced with ace68fdc0cfed83d | Daniel Stenberg | |
2015-10-22 | mbedtls:new profile with RSA min key len = 1024. | m-gardet | |
Closes #502 |