Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-10-25 | RELEASE-NOTES: synced with 4464583a6ed | Daniel Stenberg | |
5 more bug fixes, 4 additional contributors | |||
2011-10-18 | RELEASE-NOTES: synced with ecbb08cea3cd6 | Daniel Stenberg | |
2011-10-17 | nss: select client certificates by DER | Kamil Dudka | |
... instead of nicknames, which are not unique. | |||
2011-10-08 | RELEASE-NOTES: Fixed a couple of typos | Dan Fandrich | |
2011-09-29 | RELEASE-NOTES: synced with 5898a6a09b211fc7e2 | Daniel Stenberg | |
Bumped next release version to become 7.23.0 for the changes | |||
2011-09-25 | RELEASE-NOTES: synced with d2a47021c0a6 | Daniel Stenberg | |
2011-09-13 | Curl_add_custom_headers: support headers with no data | warp kawada | |
A custom HTTP header ending in a semicolon instead of a colon will be treated as a header to be added without any data portion. | |||
2011-09-13 | 7.22.1: start working | Daniel Stenberg | |
2011-09-13 | RELEASE-NOTES: ready for 7.22.0 | Daniel Stenberg | |
2011-09-12 | Mention that BSD-style lwIP TCP/IP stack support on Windows is experimental. | Yang Tse | |
2011-09-10 | ssh.c: revert needless commit 7b7c45879e | Yang Tse | |
2011-09-09 | RELEASE-NOTES: synced with 303c90074d4c | Daniel Stenberg | |
Five more bugfixes, one more contributor | |||
2011-08-29 | RELEASE-NOTES: synced with 3445fa2e3f | Daniel Stenberg | |
2011-08-27 | NTLM single-sign on adjustments (XI) | Yang Tse | |
Feature string literal NTLM_SSO renamed to NTLM_WB. Preprocessor symbol USE_NTLM_SSO renamed to WINBIND_NTLM_AUTH_ENABLED. curl's 'long' option 'ntlm-sso' renamed to 'ntlm-wb'. Fix some comments to make clear that this is actually a NTLM delegation. | |||
2011-08-15 | nss: start with no database if the selected database is broken | Kamil Dudka | |
Bug: https://bugzilla.redhat.com/728562 | |||
2011-08-13 | RELEASE-NOTES: synced with a30ede868ab64 | Daniel Stenberg | |
Three more bugs fixed, three more contributors mentioned | |||
2011-08-12 | docs: --delegation | Daniel Stenberg | |
2011-08-09 | RELEASE-NOTES: recounted and updated some numbers | Daniel Stenberg | |
2011-08-08 | RELEASE-NOTES: synced with 45d883d88df7 | Daniel Stenberg | |
Mention 5 bugixes and 1 change more | |||
2011-08-08 | version bump: next release is 7.22.0 | Daniel Stenberg | |
2011-08-05 | BSD-style lwIP TCP/IP stack support - docs/INSTALL blurb | Yang Tse | |
2011-08-05 | RELEASE-NOTES: synced with afe88d85f40e1 | Daniel Stenberg | |
2011-08-03 | Add new CURLOPT_GSSAPI_DELEGATION option. | Adam Tkac | |
Curl_gss_init_sec_context got new parameter - SessionHandle. Signed-off-by: Adam Tkac <atkac@redhat.com> | |||
2011-07-20 | RELEASE-NOTES: HTTP error handling on request body send | Daniel Stenberg | |
2011-06-23 | bump release: start working towards 7.21.8 | Daniel Stenberg | |
2011-06-22 | RELEASE-NOTES: mention security issue 20110623 | Daniel Stenberg | |
libcurl inappropriate GSSAPI delegation. Full details at http://curl.haxx.se/docs/adv_20110623.html | |||
2011-06-22 | RELEASE-NOTES: synced with 9016958aa8989 | Daniel Stenberg | |
2011-06-14 | RELEASE-NOTES: add more contributors for this release | Daniel Stenberg | |
2011-06-14 | RELEASE-NOTES: synced with 0aedccc18a33a778535 | Daniel Stenberg | |
2011-06-08 | disconnect: wipe out the keeps_speed time stamp | Kamil Dudka | |
When closing a connection, the speedchecker's timestamp is now deleted so that it cannot accidentally be used by a fresh connection on the same handle when examining the transfer speed. Bug: https://bugzilla.redhat.com/679709 | |||
2011-06-07 | RELEASE-NOTES: synced with b772f3a32146d7d | Daniel Stenberg | |
2011-05-06 | RELEASE-NOTES: synced with 32001ac4149b206 | Daniel Stenberg | |
2011-04-28 | RELEASE-NOTES: synced with c4bc1d473f324 | Daniel Stenberg | |
2011-04-22 | bump version: work towards 7.21.7 | Daniel Stenberg | |
2011-04-22 | RELEASE-NOTES: two more contributors | Daniel Stenberg | |
2011-04-20 | RELEASE-NOTES: synced with 3242abd87a1262 | Daniel Stenberg | |
2011-04-19 | RELEASE-NOTES: synced with 5aae3c13e2 | Daniel Stenberg | |
2011-04-17 | RELEASE-NOTES: updated contributor amount | Daniel Stenberg | |
2011-04-17 | 7.21.6: next planned release number | Daniel Stenberg | |
2011-04-16 | RELEASE-NOTES: synced with c246f63a71 | Daniel Stenberg | |
2011-04-11 | RELEASE-NOTES: synced with f01df197981 | Daniel Stenberg | |
2011-04-08 | nss: allow to use multiple client certificates for a single host | Kamil Dudka | |
In case a client certificate is used, invalidate SSL session cache at the end of a session. This forces NSS to ask for a new client certificate when connecting second time to the same host. Bug: https://bugzilla.redhat.com/689031 | |||
2011-04-05 | RELEASE-NOTES: synced with db59b6202d8 | Daniel Stenberg | |
2011-03-25 | RELEASE-NOTES: synced with 11c2db2aa2a | Daniel Stenberg | |
2011-03-18 | RELEASE-NOTES: synced with 0c05ee3a33d4d7 | Daniel Stenberg | |
2011-03-15 | nss: do not ignore value of CURLOPT_SSL_VERIFYPEER | Kamil Dudka | |
When NSS-powered libcurl connected to a SSL server with CURLOPT_SSL_VERIFYPEER equal to zero, NSS remembered that the peer certificate was accepted by libcurl and did not ask the second time when connecting to the same server with CURLOPT_SSL_VERIFYPEER equal to one. This patch turns off the SSL session cache for the particular SSL socket if peer verification is disabled. In order to avoid any performance impact, the peer verification is completely skipped in that case, which makes it even faster than before. Bug: https://bugzilla.redhat.com/678580 | |||
2011-03-13 | RELEASE-NOTES: synced with e649a7baae2 | Daniel Stenberg | |
2011-02-23 | RELEASE-NOTES: synced with 2345c1dd661c | Daniel Stenberg | |
2011-02-22 | nss: do not ignore failure of SSL handshake | Kamil Dudka | |
Flaw introduced in fc77790 and present in curl-7.21.4. Bug: https://bugzilla.redhat.com/669702#c16 | |||
2011-02-17 | SOCKOPTFUNCTION: callback can say already-connected | Daniel Stenberg | |
Introducing a few CURL_SOCKOPT* defines for conveniance. The new CURL_SOCKOPT_ALREADY_CONNECTED signals to libcurl that the socket is to be treated as already connected and thus it will skip the connect() call. |