History log of /curl/ (Results 2076 – 2100 of 33757)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
8438002931-Jan-2024 Boris Verkhovskiy

form-string.md: correct the example

Closes #12822

5ce164e031-Jan-2024 Daniel Stenberg

RELEASE-NOTES: synced

curl 8.6.0

4196191331-Jan-2024 Daniel Stenberg

THANKS: new contributors from 8.5.0

f1041adf29-Jan-2024 Jay Satiro

cd2nroff: use perl 'strict' and 'warnings'

- Use strict and warnings pragmas.

- If open() fails then show the reason.

- Set STDIN io layer :crlf so that input is properly r

cd2nroff: use perl 'strict' and 'warnings'

- Use strict and warnings pragmas.

- If open() fails then show the reason.

- Set STDIN io layer :crlf so that input is properly read on Windows.

- When STDIN is used as input, the filename $f is now set to "STDIN".

Various error messages in single() use $f for the filename and this way
it is not undefined when STDIN.

Closes https://github.com/curl/curl/pull/12819

show more ...

3e57bc2a29-Jan-2024 Daniel Stenberg

cd2nroff: fix duplicate output issue

Assisted-by: Jay Satiro
Fixes https://github.com/curl/curl-www/issues/321
Closes #12818

011325ff26-Jan-2024 Daniel Stenberg

lib: error out on multissl + http3

Since the QUIC/h3 code has no knowledge or handling of multissl it might
bring unintended consequences if we allow it.

configure, cmake and cu

lib: error out on multissl + http3

Since the QUIC/h3 code has no knowledge or handling of multissl it might
bring unintended consequences if we allow it.

configure, cmake and curl_setup.h all now reject this combination.

Assisted-by: Viktor Szakats
Assisted-by: Gisle Vanem
Ref: #12806
Closes #12807

show more ...

2bfbb53829-Jan-2024 Patrick Monnerat

OS400: sync ILE/RPG binding

Also do not force git CRLF line endings on *.cmd files for OS400.

Closes #12815

cb34318228-Jan-2024 Viktor Szakats

build: delete/replace 3 more clang warning pragmas

- tool_msgs: delete redundant `-Wformat-nonliteral` suppression pragma.

- whitespace formatting in `mprintf.h`, lib518, lib537.

build: delete/replace 3 more clang warning pragmas

- tool_msgs: delete redundant `-Wformat-nonliteral` suppression pragma.

- whitespace formatting in `mprintf.h`, lib518, lib537.

- lib518: fix wrong variable in `sizeof()`.

- lib518: bump variables to `rlim_t`.
Follow-up to e2b394106d543c4615a60795b7fdce04bd4e5090 #1469

- lib518: sync error message with lib537
Follow-up to 365322b8bcf9efb6a361473d227b70f2032212ce

- lib518, lib537: replace `-Wformat-nonliteral` suppression pragmas
by reworking test code.

Follow-up to 5b286c250829e06a135a6ba998e80beb7f43a734 #12812
Follow-up to aee4ebe59161d0a5281743f96e7738ad97fe1cd4 #12803
Follow-up to 09230127589eccc7e01c1a7217787ef8e64f3328 #12540
Follow-up to 3829759bd042c03225ae862062560f568ba1a231 #12489

Reviewed-by: Daniel Stenberg
Closes #12814

show more ...

0f4c19b624-Jan-2024 Richard Levitte

cmake: freshen up docs/INSTALL.cmake

- Turn docs/INSTALL.cmake into a proper markdown file,
docs/INSTALL-CMAKE.md
- Move things around to divide the description into configuration,

cmake: freshen up docs/INSTALL.cmake

- Turn docs/INSTALL.cmake into a proper markdown file,
docs/INSTALL-CMAKE.md
- Move things around to divide the description into configuration,
building and installing sections
- Mention the more modern cmake options to configure, build and install,
but also retain the older variants as fallbacks

Closes #12772

show more ...

5b286c2527-Jan-2024 Viktor Szakats

build: delete/replace clang warning pragmas

- delete redundant warning suppressions for `-Wformat-nonliteral`.
This now relies on `CURL_PRINTF()` and it's theoratically possible

build: delete/replace clang warning pragmas

- delete redundant warning suppressions for `-Wformat-nonliteral`.
This now relies on `CURL_PRINTF()` and it's theoratically possible
that this macro isn't active but the warning is. We're ignoring this
as a corner-case here.

- replace two pragmas with code changes to avoid the warnings.

Follow-up to aee4ebe59161d0a5281743f96e7738ad97fe1cd4 #12803
Follow-up to 09230127589eccc7e01c1a7217787ef8e64f3328 #12540
Follow-up to 3829759bd042c03225ae862062560f568ba1a231 #12489

Reviewed-by: Daniel Stenberg
Closes #12812

show more ...

ecb5d6be27-Jan-2024 Daniel Stenberg

RELEASE-NOTES: synced

066ed4e527-Jan-2024 Daniel Stenberg

http: only act on 101 responses when they are HTTP/1.1

For 101 responses claiming to be any other protocol, bail out. This
would previously trigger an assert.

Add test 1704 to v

http: only act on 101 responses when they are HTTP/1.1

For 101 responses claiming to be any other protocol, bail out. This
would previously trigger an assert.

Add test 1704 to verify.

Bug: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=66184
Closes #12811

show more ...

6422ab6727-Jan-2024 Scarlett McAllister

_VARIABLES.md: add missing 'be' into the sentence

Closes #12809

bdae275926-Jan-2024 Stefan Eissing

mqtt, remove remaining use of data->state.buffer

Closes #12799

623c3a8f26-Jan-2024 Daniel Stenberg

x509asn1: switch from malloc to dynbuf

Closes #12808

cd48e8f826-Jan-2024 Daniel Stenberg

x509asn1: make utf8asn1str() use dynbuf instead of malloc + memcpy

Closes #12808

98b41dd426-Jan-2024 Daniel Stenberg

x509asn1: reduce malloc in Curl_extract_certinfo

Using dynbuf

Closes #12808

81d2b87127-Jan-2024 Jay Satiro

THANKS: add Alexander Bartel and Brennan Kinney

They reported and investigated #10259 which was fixed by 7b2d98df.

Ref: https://github.com/curl/curl/issues/10259

aee4ebe526-Jan-2024 Daniel Stenberg

krb5: add prototype to silence clang warnings on mvsnprintf()

"error: format string is not a string literal"

Follow-up to 09230127589eccc7 which made the warning appear

Ass

krb5: add prototype to silence clang warnings on mvsnprintf()

"error: format string is not a string literal"

Follow-up to 09230127589eccc7 which made the warning appear

Assisted-by: Viktor Szakats
Closes #12803

show more ...

641257ea26-Jan-2024 Daniel Stenberg

x509asn1: remove code for WANT_VERIFYHOST

No code ever sets this anymore since we dropped gskit

Follow-up to 78d6232f1f326b9ab4d

Closes #12804

a3a9407026-Jan-2024 Daniel Stenberg

socks: reduce the buffer size to 600 (from 8K)

This is malloc'ed memory and it does not more. Test 742 helps us verify
this.

Closes #12789

a6c9a33b25-Jan-2024 Stefan Eissing

file+ftp: use stack buffers instead of data->state.buffer

Closes #12789

9a90c9dd26-Jan-2024 Stefan Eissing

vtls: receive max buffer

- do not only receive one TLS record, but try to fill
the passed buffer
- consider <4K remaning space is "filled".

Closes #12801

440bc97e26-Jan-2024 Daniel Stenberg

docs: do not start lines/sentences with So, But nor And

Closes #12802

92f8a16826-Jan-2024 Daniel Stenberg

docs: remove spurious ampersands from markdown

They were leftovers from the nroff conversion.

Follow-up to eefcc1bda4bccd800f5a5

Closes #12800

1...<<81828384858687888990>>...1351