heinrich5991
|
8049d64964
|
Add @Learath2's suggestion about buffer size handling
|
2022-05-13 13:57:35 +02:00 |
|
heinrich5991
|
15e3a0193f
|
Fix version number for curl bug workaround
0x076800 corresponds to version 0x7.0x68.0x0 = 7.104.0, not 7.68.0 =
0x7.0x44.0x0, so we need 0x074400 instead.
|
2022-05-13 09:16:15 +02:00 |
|
heinrich5991
|
c9136121f2
|
Add HTTP header and plain HTTP post feature
|
2022-05-13 09:16:15 +02:00 |
|
heinrich5991
|
40bd85b552
|
Refactor HTTP code to no longer use inheritance
This gives us the same API interface for all different request types
(HEAD, GET, POST).
|
2022-05-13 09:16:15 +02:00 |
|
heinrich5991
|
1b233ab95c
|
Add the HTTP client methods to the server
|
2022-05-13 09:04:39 +02:00 |
|
Dennis Felsing
|
5c18d6c481
|
Remove /modhelp (fixes #1401)
|
2018-12-12 10:05:44 +01:00 |
|
Learath
|
189a2939b0
|
Try closing the file earlier. Fix #1250
|
2018-10-04 16:10:27 +02:00 |
|
heinrich5991
|
8d04e7e5e1
|
Share libcurl resources across requests
Use the libcurl-share interface to share DNS cache and connections
between different requests.
If compiled with OpenSSL, libcurl can only be safely used from multiple
threads for OpenSSL >= 1.1.0, but this problem is not newly introduced
by this commit: According to libcurl-thread(3):
>OpenSSL <= 1.0.2 the user must set callbacks.
>
>https://www.openssl.org/docs/man1.0.2/crypto/threads.html#DESCRIPTION
>
>https://curl.haxx.se/libcurl/c/opensslthreadlock.html
|
2018-07-11 20:17:21 +02:00 |
|