Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |||
2015-10-21 | checksrc: add crude // detection | Daniel Stenberg | |
2015-10-21 | build: fix for MSDOS/djgpp | Gisle Vanem | |
- Add a VPATH-statement for the vtls/*.c files. - Due to 'vtls/*.c', remove that subdir part from $(OBJECTS). | |||
2015-10-20 | copyrights: update Gisle Vanem's email | Daniel Stenberg | |
2015-10-20 | vtls: fix compiler warning for TLS backends without sha256 | Daniel Stenberg | |
... noticed with mbedTLS. | |||
2015-10-20 | vtls: added support for mbedTLS | Jonas Minnberg | |
closes #496 | |||
2015-10-19 | cmake: Fix for add_subdirectory(curl) use-case | Javier G. Sogo | |
- Use CURL_BINARY_DIR instead of CMAKE_BINARY_DIR. When including CURL using add_subdirectory the variables CMAKE_BINARY_DIR and CURL_BINARY_DIR hold different paths. Closes https://github.com/bagder/curl/pull/488 Closes https://github.com/bagder/curl/pull/498 | |||
2015-10-18 | RELEASE-NOTES: synced with 4c773bcb474e | Daniel Stenberg | |
2015-10-18 | tests/FILEFORMAT: mention PSL as a valid feture to check for | Daniel Stenberg | |
For example in test 1136 | |||
2015-10-18 | teste1136: only run when PSL is enabled | Daniel Stenberg | |
2015-10-18 | curl: slist_wc: remove curl_memory.h inclusion | Daniel Stenberg | |
... that's for the library only. | |||
2015-10-18 | configure: add PSL to the list of features | Daniel Stenberg | |
... to make test 1014 work again after e77b5b7453. | |||
2015-10-18 | tool: Generate easysrc with last cache linked-list | Daniel Hwang | |
Using a last cache linked-list improves the performance of easysrc generation. Bug: https://github.com/bagder/curl/issues/444 Ref: https://github.com/bagder/curl/issues/429 Closes #452 | |||
2015-10-17 | cookies: Add support for Mozilla's Publix Suffix List | Tim Rühsen | |
Use libpsl to check the domain value of Set-Cookie headers (and cookie jar entries) for not being a Publix Suffix. The configure script checks for "libpsl" by default. Disable the check with --without-libpsl. Ref: https://publicsuffix.org/ Ref: https://github.com/publicsuffix/list Ref: https://github.com/rockdaboot/libpsl | |||
2015-10-16 | curlbuild.h: Fix non-configure compiling to mips and sh4 targets | Richard Hosking | |
2015-10-16 | http2: Don't pass unitialized name+len pairs to nghttp2_submit_request | Anders Bakken | |
bug introduced by 18691642931e5c7ac8af83ac3a84fbcb36000f96. Closes #493 | |||
2015-10-16 | test1601: fix compilation with --enable-debug and --disable-crypto-auth | Dan Fandrich | |
2015-10-16 | multi: fix off-by-one finit[] array size | Daniel Stenberg | |
introduced in c6aedf680f6. It needs to be CURLM_STATE_LAST big since it must hande the range 0 .. CURLM_STATE_MSGSENT (18) and CURLM_STATE_LAST is 19 right now. Reported-by: Dan Fandrich Bug: http://curl.haxx.se/mail/lib-2015-10/0069.html | |||
2015-10-15 | fread_func: move callback pointer from set to state struct | Daniel Stenberg | |
... and assign it from the set.fread_func_set pointer in the Curl_init_CONNECT function. This A) avoids that we have code that assigns fields in the 'set' struct (which we always knew was bad) and more importantly B) it makes it impossibly to accidentally leave the wrong value for when the handle is re-used etc. Introducing a state-init functionality in multi.c, so that we can set a specific function to get called when we enter a state. The Curl_init_CONNECT is thus called when switching to the CONNECT state. Bug: https://github.com/bagder/curl/issues/346 Closes #346 | |||
2015-10-14 | test1531: case the size to fix the test on non-largefile builds | Dan Fandrich | |
2015-10-13 | acinclude: remove PKGCONFIG override | Daniel Stenberg | |
... and allow it to get set by a caller easier. Reported-by: Rainer Jung Bug: http://curl.haxx.se/mail/lib-2015-10/0035.html | |||
2015-10-12 | docs/INSTALL: Updated example minimal binary sizes | Dan Fandrich | |
2015-10-11 | openssl: Fix set up of pkcs12 certificate verification chain | Erik Johansson | |
sk_X509_pop will decrease the size of the stack which means that the loop would end after having added only half of the certificates. Also make sure that the X509 certificate is freed in case SSL_CTX_add_extra_chain_cert fails. | |||
2015-10-09 | ntlm: error out without 64bit support as the code needs it | Daniel Stenberg | |
It makes it a clearer message for developers reaching that point without the necessary support. Thanks-by: Jay Satiro Closes #78 | |||
2015-10-09 | curl_global_init: set the memory function pointers correct | Daniel Stenberg | |
follow-up from 6f8ecea0 | |||
2015-10-09 | curl_global_init_mem: set function pointers before doing init | Daniel Stenberg | |
... as in the polarssl TLS backend for example it uses memory functions. | |||
2015-10-09 | http2: Fix http2_recv to return -1 if recv returned -1 | Jay Satiro | |
If the underlying recv called by http2_recv returns -1 then that is the value http2_recv returns to the caller. | |||
2015-10-08 | curl_easy_recv.3: CURLINFO_LASTSOCKET => CURLINFO_ACTIVESOCKET | Svyatoslav Mishyn | |
Closes #479 | |||
2015-10-08 | curl_easy_send.3: CURLINFO_LASTSOCKET => CURLINFO_ACTIVESOCKET | Svyatoslav Mishyn | |
2015-10-08 | CURLOPT_CONNECT_ONLY.3: CURLINFO_LASTSOCKET => CURLINFO_ACTIVESOCKET | Svyatoslav Mishyn | |
2015-10-08 | CURLOPT_CERTINFO.3: fix reference to CURLINFO_CERTINFO | Daniel Stenberg | |
2015-10-08 | ntlm: get rid of unconditional use of long long | Daniel Stenberg | |
... since some compilers don't have it and instead use other types, such as __int64. Reported by: gkinseyhpw Closes #478 | |||
2015-10-08 | des: Fix header conditional for Curl_des_set_odd_parity | Anders Bakken | |
Follow up to 613e502. | |||
2015-10-07 | configure: build silently by default | Daniel Stenberg | |
'make V=1' will make the build verbose like before | |||
2015-10-07 | bump: start climbing toward 7.46.0 | Daniel Stenberg | |
2015-10-07 | RELEASE-PROCEDURE: add the github HTTPS download step | Daniel Stenberg | |
2015-10-07 | THANKS: 19 new contributors from the 7.45.0 announcement | Daniel Stenberg | |
2015-10-05 | RELEASE-NOTES: synced with 69ea57970080 | Daniel Stenberg | |
2015-10-04 | getinfo: Fix return code for unknown CURLINFO options | Jay Satiro | |
- If a CURLINFO option is unknown return CURLE_UNKNOWN_OPTION. Prior to this change CURLE_BAD_FUNCTION_ARGUMENT was returned on unknown. That return value is contradicted by the CURLINFO option documentation which specifies a return of CURLE_UNKNOWN_OPTION on unknown. | |||
2015-10-04 | hiperfifo: fix the pointer passed to WRITEDATA | rouzier | |
Closes https://github.com/bagder/curl/pull/471 | |||
2015-10-02 | tool_setopt: fix c_escape truncated octal | Maksim Stsepanenka | |
Closes https://github.com/bagder/curl/pull/469 | |||
2015-10-01 | gopher: don't send NUL byte | Orange Tsai | |
Closes #466 |