History log of /curl/ (Results 7601 – 7625 of 33765)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
d1d3105304-Sep-2020 ihsinme <61293369+ihsinme@users.noreply.github.com>

connect.c: remove superfluous 'else' in Curl_getconnectinfo

Closes #5912

d541f83d21-May-2020 Samuel Marks <807580+SamuelMarks@users.noreply.github.com>

CMake: remove explicit `CMAKE_ANSI_CFLAGS`

This variable was removed from cmake in commit
https://gitlab.kitware.com/cmake/cmake/commit/5a834b0bb0bc288. A later
CMake commit removes

CMake: remove explicit `CMAKE_ANSI_CFLAGS`

This variable was removed from cmake in commit
https://gitlab.kitware.com/cmake/cmake/commit/5a834b0bb0bc288. A later
CMake commit removes the variable from the tests, claiming that it was
removed in CMake 2.6

Reviewed-By: Peter Wu
Closes #5439

show more ...

a27af8b503-Sep-2020 cbe

libssh2: pass on the error from ssh_force_knownhost_key_type

Closes #5909

b4d86d3403-Sep-2020 Daniel Stenberg

scripts/delta: add diffstat summary

... and make output more table-like

3eff1c5027-Aug-2020 Martin Bašti

http_proxy: do not crash with HTTPS_PROXY and NO_PROXY set

... in case NO_PROXY takes an effect

Without this patch, the following command crashes:

$ GIT_CURL_VERBOSE=1

http_proxy: do not crash with HTTPS_PROXY and NO_PROXY set

... in case NO_PROXY takes an effect

Without this patch, the following command crashes:

$ GIT_CURL_VERBOSE=1 NO_PROXY=github.com HTTPS_PROXY=https://example.com \
git clone https://github.com/curl/curl.git

Minimal libcurl-based reproducer:

#include <curl/curl.h>

int main() {
CURL *curl = curl_easy_init();
if(curl) {
CURLcode ret;
curl_easy_setopt(curl, CURLOPT_URL, "https://github.com/");
curl_easy_setopt(curl, CURLOPT_PROXY, "example.com");
/* set the proxy type */
curl_easy_setopt(curl, CURLOPT_PROXYTYPE, CURLPROXY_HTTPS);
curl_easy_setopt(curl, CURLOPT_NOPROXY, "github.com");
curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
ret = curl_easy_perform(curl);
curl_easy_cleanup(curl);
return ret;
}
return -1;
}

Assisted-by: Kamil Dudka
Bug: https://bugzilla.redhat.com/1873327
Closes #5902

show more ...

63a111a202-Sep-2020 Daniel Stenberg

travis: add a CI job with openssl3 (from git master)

Closes #5908

b3fbb2fb02-Sep-2020 Daniel Stenberg

openssl: avoid error conditions when importing native CA

The code section that is OpenSSL 3+ specific now uses the same logic as
is used in the version < 3 section. It caused a compiler

openssl: avoid error conditions when importing native CA

The code section that is OpenSSL 3+ specific now uses the same logic as
is used in the version < 3 section. It caused a compiler error without
it.

Closes #5907

show more ...

dd51f04b02-Sep-2020 Daniel Stenberg

setopt: avoid curl_ on local variable

Closes #5906

5507a6ae02-Sep-2020 Daniel Stenberg

mqtt.c: avoid curl_ prefix on local variable

Closes #5906

c26446ff02-Sep-2020 Daniel Stenberg

wildcard: strip "curl_" prefix from private symbols

Closes #5906

3acb2abd02-Sep-2020 Daniel Stenberg

vtls: make it 'struct Curl_ssl_session'

Use uppercase C for internal symbols.

Closes #5906

221a584d02-Sep-2020 Daniel Stenberg

curl_threads: make it 'struct Curl_actual_call'

Internal names should not be prefixed "curl_"

Closes #5906

add7022602-Sep-2020 Daniel Stenberg

schannel: make it 'struct Curl_schannel*'

As internal global names should use captical C.

Closes #5906

9e90ff0802-Sep-2020 Daniel Stenberg

hash: make it 'struct Curl_hash'

As internal global names should use captical C.

Closes #5906

9b3f888a02-Sep-2020 Daniel Stenberg

llist: make it "struct Curl_llist"

As internal global names should use captical C.

Closes #5906

8bdc4f8a28-Aug-2020 Marc Hoersken

telnet.c: depend on static requirement of WinSock version 2

Drop dynamic loading of ws2_32.dll and instead rely on the
imported version which is now required to be at least 2.2.

telnet.c: depend on static requirement of WinSock version 2

Drop dynamic loading of ws2_32.dll and instead rely on the
imported version which is now required to be at least 2.2.

Reviewed-by: Marcel Raad
Reviewed-by: Jay Satiro
Reviewed-by: Daniel Stenberg
Reviewed-by: Viktor Szakats

Closes #5854

show more ...

3e4b32a330-Aug-2020 Marc Hoersken

win32: drop support for WinSock version 1, require version 2

IPv6, telnet and now also the multi API require WinSock
version 2 which is available starting with Windows 95.

There

win32: drop support for WinSock version 1, require version 2

IPv6, telnet and now also the multi API require WinSock
version 2 which is available starting with Windows 95.

Therefore we think it is time to drop support for version 1.

Reviewed-by: Marcel Raad
Reviewed-by: Jay Satiro
Reviewed-by: Daniel Stenberg
Reviewed-by: Viktor Szakats

Follow up to #5634
Closes #5854

show more ...

20d74b7331-Aug-2020 Marc Hoersken

select: align poll emulation to return all relevant events

The poll emulation via select already consumes POLLRDNORM,
POLLWRNORM and POLLRDBAND as input events. Therefore it
should a

select: align poll emulation to return all relevant events

The poll emulation via select already consumes POLLRDNORM,
POLLWRNORM and POLLRDBAND as input events. Therefore it
should also return them as output events if signaled.

Also fix indentation in input event handling block.

Assisted-by: Jay Satiro
Reviewed-by: Daniel Stenberg

Replaces #5852
Closes #5883

show more ...

ce56cc8b01-Sep-2020 Marc Hoersken

CI/azure: MQTT is now enabled by default

Reviewed-by: Daniel Stenberg

Follow up to #5858
Closes #5903

e3181d0202-Sep-2020 Daniel Stenberg

copyright.pl: ignore buildconf

e22682b902-Sep-2020 Daniel Stenberg

test971: show test mismatches "inline"

64586af901-Sep-2020 Daniel Stenberg

lib/Makefile.am: bump VERSIONINFO due to new functions

... we're generally bad at this, but we are adding new functions for
this release.

Closes #5899

e250b56801-Sep-2020 Daniel Stenberg

optiontable: use DEBUGBUILD

Follow-up to commit 6e18568ba38 (#5877)

401d237b01-Sep-2020 Daniel Stenberg

cmdline-opts/gen.pl: generate nicer "See Also" in curl.1

If there are more than two items in the list, use commas for all but the
last separator which is set to 'and'. Reads better.

cmdline-opts/gen.pl: generate nicer "See Also" in curl.1

If there are more than two items in the list, use commas for all but the
last separator which is set to 'and'. Reads better.

Closes #5898

show more ...

82149e7001-Sep-2020 Daniel Stenberg

curl.1: add see also no-progress-meter on two spots

Ref: #5894

Closes #5897

1...<<301302303304305306307308309310>>...1351