History log of /curl/ (Results 7351 – 7375 of 33763)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
0362944a12-Nov-2020 Daniel Stenberg

curl: only warn not fail, if not finding the home dir

... as there's no good reason to error out completely.

Reported-by: Andreas Fischer
Fixes #6200
Closes #6201

71ec4e7d09-Nov-2020 Daniel Stenberg

httpput-postfields.c: new example doing PUT with POSTFIELDS

Proposed-by: Jeroen Ooms
Ref: #6186
Closes #6188

760e854310-Nov-2020 Tobias Hieta

cmake: correctly handle linker flags for static libs

curl CMake was setting the the EXE flags for static libraries which made
the /manifest:no flag ended up when linking the static libra

cmake: correctly handle linker flags for static libs

curl CMake was setting the the EXE flags for static libraries which made
the /manifest:no flag ended up when linking the static library, which is
not a valid flag for lib.exe or llvm-lib.exe and caused llvm-lib to exit
with an error.

The better way to handle this is to make sure that we pass the correct
linker flags to CMAKE_STATIC_LINKER_FLAGS instead.

Reviewed-by: Jakub Zakrzewski
Closes #6195

show more ...

fd5f35ef10-Nov-2020 Tobias Hieta

cmake: don't pass -fvisibility=hidden to clang-cl on Windows

When using clang-cl on windows -fvisibility=hidden is not an known
argument. Instead it behaves exactly like MSVC in this cas

cmake: don't pass -fvisibility=hidden to clang-cl on Windows

When using clang-cl on windows -fvisibility=hidden is not an known
argument. Instead it behaves exactly like MSVC in this case. So let's
make sure we take that path.

In CMake clang-cl sets both CMAKE_C_COMPILER_ID=clang and MSVC get's
defined since clang-cl is basically a MSVC emulator. So guarding like we
do in this patch seems logical.

Reviewed-by: Jakub Zakrzewski
Closes #6194

show more ...

c49d205a09-Nov-2020 Daniel Stenberg

http_proxy: use enum with state names for 'keepon'

To make the code clearer, change the 'keepon' from an int to an enum
with better state names.

Reported-by: Niranjan Hasabnis

http_proxy: use enum with state names for 'keepon'

To make the code clearer, change the 'keepon' from an int to an enum
with better state names.

Reported-by: Niranjan Hasabnis
Bug: https://curl.se/mail/lib-2020-11/0026.html
Closes #6193

show more ...

7ae5983809-Nov-2020 Daniel Stenberg

curl_easy_escape: limit output string length to 3 * max input

... instead of the limiting it to just the max input size. As every
input byte can be expanded to 3 output bytes, this could

curl_easy_escape: limit output string length to 3 * max input

... instead of the limiting it to just the max input size. As every
input byte can be expanded to 3 output bytes, this could limit the input
string to 2.66 MB instead of the intended 8 MB.

Reported-by: Marc Schlatter
Closes #6192

show more ...

8b151cb909-Nov-2020 Daniel Stenberg

docs: document the 8MB input string limit

for curl_easy_escape and curl_easy_setopt()

The limit is there to catch mistakes and abuse. It is meant to be large
enough to allow vir

docs: document the 8MB input string limit

for curl_easy_escape and curl_easy_setopt()

The limit is there to catch mistakes and abuse. It is meant to be large
enough to allow virtually all "fine" use cases.

Reported-by: Marc Schlatter
Fixes #6190
Closes #6191

show more ...

3c5c6e7409-Nov-2020 Daniel Stenberg

mqttd: fclose test file when done

Reported-by: Marc Hörsken
Reviewed-by: Jay Satiro
Bug: #6058
Closes #6189

ec48bee309-Nov-2020 Daniel Stenberg

RELEASE-NOTES: synced

5ee4456609-Nov-2020 Daniel Stenberg

THANKS-filter: ignore autobuild links

259c70a907-Nov-2020 Daniel Stenberg

Revert "libcurl.pc: make it relocatable"

This reverts commit 3862c37b6373a55ca704171d45ba5ee91dec2c9f.

That fix should either be done differently or with an option.

Reporte

Revert "libcurl.pc: make it relocatable"

This reverts commit 3862c37b6373a55ca704171d45ba5ee91dec2c9f.

That fix should either be done differently or with an option.

Reported-by: asavah on github
Fixes #6157
Closes #6183

show more ...

fa6bbbe109-Nov-2020 Daniel Stenberg

examples/httpput: remove use of CURLOPT_PUT

It is deprecated and unnecessary since it already sets CURLOPT_UPLOAD.

Reported-by: Jeroen Ooms
Fixes #6186
Closes #6187

a570f7cd07-Nov-2020 Daniel Stenberg

Curl_pgrsStartNow: init speed limit time stamps at start

By setting the speed limit time stamps unconditionally at transfer
start, we can start off a transfer without speed limits and ye

Curl_pgrsStartNow: init speed limit time stamps at start

By setting the speed limit time stamps unconditionally at transfer
start, we can start off a transfer without speed limits and yet allow
them to get set during transfer and have an effect.

Reported-by: Kael1117 on github
Fixes #6162
Closes #6184

show more ...

5d57a79908-Nov-2020 Daniel Stenberg

ngtcp2: adapt to recent nghttp3 updates

'reset_stream' was added to the nghttp3_conn_callbacks struct

Closes #6185

374329d706-Nov-2020 Daniel Stenberg

configure: pass -pthread to Libs.private for pkg-config

Reported-by: Cristian Morales Vega
Fixes #6168
Closes #6181

5d903ce307-Nov-2020 Daniel Stenberg

altsvc: minimize variable scope and avoid "DEAD_STORE"

Closes #6182

65bc682506-Nov-2020 Daniel Stenberg

FAQ: remove "Why is there a HTTP/1.1 in my HTTP/2 request?"

This hasn't been the case for a while now, remove.

3864ad3706-Nov-2020 Daniel Stenberg

FAQ: refresh "Why do I get "certificate verify failed"

Add more details, remove references to ancient curl version.

ee644bc805-Nov-2020 Daniel Stenberg

test493: verify --hsts upgrade and that %{url_effective} reflects that

Closes #6175

20558ff205-Nov-2020 Daniel Stenberg

url: make sure an HSTS upgrade updates URL and scheme correctly

Closes #6175

f7e72f4d05-Nov-2020 Daniel Stenberg

tool_operate: set HSTS with CURLOPT_HSTS to pass on filename

Closes #6175

6ee57c8b05-Nov-2020 Daniel Stenberg

hsts: remove debug code leftovers

Closes #6175

490879ea05-Nov-2020 Daniel Stenberg

FAQ: refreshed

- remove a few ancient questions
- add configure with static libs question
- updated wording in several places
- lowercased curl

Closes #6177

afddaa6d05-Nov-2020 Daniel Gustafsson

examples: fix comment syntax

Commit ac0a88fd2 accidentally added a stray character outside of the
comment which broke compilation. Fix by removing.

Reported-by: autobuild https

examples: fix comment syntax

Commit ac0a88fd2 accidentally added a stray character outside of the
comment which broke compilation. Fix by removing.

Reported-by: autobuild https://curl.se/dev/log.cgi?id=20201105084306-12742

show more ...

085f910305-Nov-2020 Daniel Gustafsson

hsts: Remove pointless call to free in errorpath

The line variable will always be NULL in the error path, so remove
the free call since it's pointless.

Closes #6170
Reviewed

hsts: Remove pointless call to free in errorpath

The line variable will always be NULL in the error path, so remove
the free call since it's pointless.

Closes #6170
Reviewed-by: Daniel Stenberg <daniel@haxx.se>

show more ...

1...<<291292293294295296297298299300>>...1351