dep-curl/lib
Stefan Eissing c8df3defd9
lib: new easy option string storage
Change the storage of easy handle option strings from an array sized for
all possible options to a hash set to reduce memory footprint.

Give the hash set initially room for 4 strings, with first allocation
happening when it goes beyond that. Measurements without test suite
and a forced fail on growing the set gives:

Size Result
2    1261 tests out of 1951 reported OK: 64%
4    1792 tests out of 1951 reported OK: 91%
8    1944 tests out of 1951 reported OK: 99%
16   1949 tests out of 1951 reported OK: 99%
32   single fail of 3211, unit test for u8_strset

Add u8_strset that keeps the tuples (uint8_t id, char *str)
and allows set/unset by `id`. Add that as data->set.strings.

Define MACROS
* CURL_EASY_STR(data, id) for access
* CURL_EASY_STR_SET(data, id, s) for setting, making a copy
* CURL_EASY_STR_SETN(data, id, s) for setting, no copy
* CURL_EASY_STR_CLEAR(data, id) for unsetting
* CURL_EASY_STR_CLEAR0(data, id) for unsetting and zero-ing value

Add `data->set.str_copypostfields` to handle former `STRING_COPYPOSTFIELDS`
string that was not always a string and could carry NUL bytes.

Add unit tests to test3211.

Closes #22628
2026-08-21 09:36:07 +02:00
..
curlx curlx_inet_pton: drop setting errno on error 2026-08-17 19:11:51 +02:00
vauth tidy-up: C and CI 2026-08-12 15:42:54 +02:00
vdns lib: new easy option string storage 2026-08-21 09:36:07 +02:00
vquic lib: new easy option string storage 2026-08-21 09:36:07 +02:00
vssh lib: new easy option string storage 2026-08-21 09:36:07 +02:00
vtls lib: new easy option string storage 2026-08-21 09:36:07 +02:00
.gitignore unit tests: extract "private" prototypes at build time 2025-06-30 23:16:40 +02:00
altsvc.c tidy-up: typos, comment nits 2026-07-11 13:55:45 +02:00
altsvc.h altsvc: use Curl_peer in processing 2026-06-26 14:12:53 +02:00
amigaos.c vdns: directory for all DNS related sources 2026-08-05 08:09:07 +02:00
amigaos.h lib: fix formatting nits (part 2) 2025-12-02 16:52:54 +01:00
api.c header api: add guards 2026-08-12 21:56:48 +02:00
api.h header api: add guards 2026-08-12 21:56:48 +02:00
arpa_telnet.h tidy-up: apply clang-format fixes 2026-05-28 00:05:47 +02:00
bufq.c tidy-up: miscellaneous 2025-12-26 22:06:09 +01:00
bufq.h tidy-up: miscellaneous 2026-05-20 00:50:43 +02:00
bufref.c build: tidy up and dedupe strdup functions 2026-02-03 14:02:30 +01:00
bufref.h bufref: add Curl_bufref_dup that returns a strdup()ed version 2025-12-04 19:04:19 +01:00
cf-h1-proxy.c tidy-up: use more static, sizeof(), char[], double-const 2026-07-28 13:53:11 +02:00
cf-h1-proxy.h HTTP/3: add proxy CONNECT and MASQUE CONNECT-UDP support (ngtcp2 QUIC) 2026-05-27 08:49:53 +02:00
cf-h2-proxy.c tidy-up: use more static, sizeof(), char[], double-const 2026-07-28 13:53:11 +02:00
cf-h2-proxy.h HTTP/3: add proxy CONNECT and MASQUE CONNECT-UDP support (ngtcp2 QUIC) 2026-05-27 08:49:53 +02:00
cf-haproxy.c lib: new easy option string storage 2026-08-21 09:36:07 +02:00
cf-haproxy.h tidy-up: miscellaneous 2025-12-26 22:06:09 +01:00
cf-https-connect.c filter: change time reporting 2026-08-17 23:35:57 +02:00
cf-https-connect.h urldata: cleanups 2026-08-17 14:03:14 +02:00
cf-ip-happy.c filter: change time reporting 2026-08-17 23:35:57 +02:00
cf-ip-happy.h lib: add "Curl_" prefix to two global functions 2026-07-02 12:36:07 +02:00
cf-recvbuf.c urldata: cleanups 2026-08-17 14:03:14 +02:00
cf-recvbuf.h urldata: cleanups 2026-08-17 14:03:14 +02:00
cf-setup.c urldata: cleanups 2026-08-17 14:03:14 +02:00
cf-setup.h urldata: cleanups 2026-08-17 14:03:14 +02:00
cf-socket.c lib: new easy option string storage 2026-08-21 09:36:07 +02:00
cf-socket.h urldata: cleanups 2026-08-17 14:03:14 +02:00
cfilters.c filter: change time reporting 2026-08-17 23:35:57 +02:00
cfilters.h filter: change time reporting 2026-08-17 23:35:57 +02:00
CMakeLists.txt cmake: drop logic for GNU/kFreeBSD systems 2026-06-26 10:17:00 +02:00
config-mac.h build: assume POSIX select() is available 2026-07-31 12:38:52 +02:00
config-os400.h build: assume POSIX select() is available 2026-07-31 12:38:52 +02:00
config-win32.h config-win32.h: drop UWP, c-ares, simplify more 2026-08-18 11:44:14 +02:00
conncache.c urldata: cleanups 2026-08-17 14:03:14 +02:00
conncache.h connections: use admin handles only for maintenance 2026-08-14 14:01:21 +02:00
connect.c filter: change time reporting 2026-08-17 23:35:57 +02:00
connect.h urldata: cleanups 2026-08-17 14:03:14 +02:00
content_encoding.c content_encoding: exact-match the identity transfer-coding token 2026-08-11 17:36:19 +02:00
content_encoding.h content_encoding: avoid strcpy 2025-12-22 14:17:21 +01:00
cookie.c lib: new easy option string storage 2026-08-21 09:36:07 +02:00
cookie.h cookie: refuse to load cookies set against a PSL domain 2026-08-06 17:03:02 +02:00
creds.c src: safely clear certain buffers 2026-07-29 14:38:48 +02:00
creds.h src: safely clear certain buffers 2026-07-29 14:38:48 +02:00
cshutdn.c multi: timeout improvements 2026-08-14 22:39:41 +02:00
cshutdn.h connections: use admin handles only for maintenance 2026-08-14 14:01:21 +02:00
curl_addrinfo.c dnscache: use Curl_peer in resolve and dnscache operations 2026-08-04 10:49:11 +02:00
curl_addrinfo.h dnscache: use Curl_peer in resolve and dnscache operations 2026-08-04 10:49:11 +02:00
curl_config-cmake.h.in build: assume POSIX select() is available 2026-07-31 12:38:52 +02:00
curl_ctype.h ctype: exclude control bytes from ISPRINT and ISGRAPH 2026-07-23 22:25:06 +02:00
curl_ed25519.c curl_ed25519: add GnuTLS support (via nettle, hogweed) 2026-08-03 16:48:08 +02:00
curl_ed25519.h httpsig: add RFC 9421 HTTP Message Signatures support 2026-07-25 16:25:37 +02:00
curl_endian.c tidy-up: miscellaneous 2026-06-14 20:10:28 +02:00
curl_endian.h copyright: update all copyright lines and remove year ranges 2023-01-03 09:19:21 +01:00
curl_fnmatch.c tidy-up: drop stray comparisons with literal zero 2026-06-10 15:15:54 +02:00
curl_fnmatch.h tidy-up: miscellaneous 2025-12-26 22:06:09 +01:00
curl_fopen.c tidy-up: fix comment indentation 2026-07-23 12:01:40 +02:00
curl_fopen.h tidy-up: miscellaneous 2025-12-26 22:06:09 +01:00
curl_get_line.c curl_get_line: error out on read errors 2026-03-17 16:14:08 +01:00
curl_get_line.h tidy-up: miscellaneous 2025-12-26 22:06:09 +01:00
curl_gethostname.c tidy-up: miscellaneous 2025-12-26 22:06:09 +01:00
curl_gethostname.h copyright: update all copyright lines and remove year ranges 2023-01-03 09:19:21 +01:00
curl_gssapi.c tidy-up: comments, messages, formatting 2026-07-30 11:26:22 +02:00
curl_gssapi.h spnego: block NTLM fallback in SPNEGO negotiation 2026-07-27 17:28:52 -04:00
curl_hmac.h httpsig: add RFC 9421 HTTP Message Signatures support 2026-07-25 16:25:37 +02:00
curl_ldap.h protocol source, all about protocols and uri schemes 2026-03-16 08:39:02 +01:00
curl_md4.h tidy-up: miscellaneous 2025-12-26 22:06:09 +01:00
curl_md5.h tidy-up: apply clang-format fixes 2026-05-28 00:05:47 +02:00
curl_memrchr.c tidy-up: miscellaneous 2025-12-26 22:06:09 +01:00
curl_memrchr.h tidy-up: miscellaneous 2025-12-26 22:06:09 +01:00
curl_ntlm_core.c tidy-up: fix comment indentation 2026-07-23 12:01:40 +02:00
curl_ntlm_core.h tidy-up: apply clang-format fixes 2026-05-28 00:05:47 +02:00
curl_printf.h tidy-up: miscellaneous 2026-02-25 14:44:56 +01:00
curl_range.c stop using the word 'just' 2026-03-03 15:30:22 +01:00
curl_range.h tidy-up: miscellaneous 2025-12-26 22:06:09 +01:00
curl_sasl.c sasl: fix zero-length response encoding 2026-06-30 08:58:33 +02:00
curl_sasl.h tidy-up: miscellaneous 2026-02-25 14:44:56 +01:00
curl_setup.h headers: name the arguments the way the definitions name them 2026-08-18 00:11:02 +02:00
curl_sha256.h httpsig: add RFC 9421 HTTP Message Signatures support 2026-07-25 16:25:37 +02:00
curl_sha512_256.c tidy-up: typos, comment nits 2026-07-11 13:55:45 +02:00
curl_sha512_256.h tidy-up: miscellaneous 2025-12-26 22:06:09 +01:00
curl_share.c connections: use admin handles only for maintenance 2026-08-14 14:01:21 +02:00
curl_share.h connections: use admin handles only for maintenance 2026-08-14 14:01:21 +02:00
curl_sspi.c src: safely clear certain buffers 2026-07-29 14:38:48 +02:00
curl_sspi.h spnego: block NTLM fallback in SPNEGO negotiation 2026-07-27 17:28:52 -04:00
curl_threads.c curl_threads: always use native threads/mutex on Windows 2026-08-16 12:16:57 +02:00
curl_threads.h curl_threads: always use native threads/mutex on Windows 2026-08-16 12:16:57 +02:00
curl_trc.c multi: shrink expire timer indices 2026-08-15 22:35:20 +02:00
curl_trc.h httpsrr: DoH with HTTPS, fix response handling 2026-07-24 22:58:51 +02:00
cw-out.c websocket: pause writing and meta data fix 2026-07-29 13:35:50 +02:00
cw-out.h lib: client writer tweaks 2026-07-21 00:07:03 +02:00
cw-pause.c websocket: pause writing and meta data fix 2026-07-29 13:35:50 +02:00
cw-pause.h ws: pause/unpause write handling 2026-07-12 18:06:21 +02:00
dict.c dict: avoid busy-loop in sendf() when the socket is not writable 2026-08-14 10:12:30 +02:00
dict.h protocol source, all about protocols and uri schemes 2026-03-16 08:39:02 +01:00
dllmain.c tidy-up: sort TLS backends, distros, alphabetically 2026-05-11 11:57:25 +02:00
dynhds.c unittests: cleanups 2026-04-15 23:32:38 +02:00
dynhds.h lib: move all UNITTEST prototypes to C files (cont.) 2026-03-21 13:14:46 +01:00
easy.c lib: new easy option string storage 2026-08-21 09:36:07 +02:00
easy_lock.h tidy-up: miscellaneous 2026-04-14 01:08:32 +02:00
easygetopt.c tidy-up: miscellaneous 2026-04-14 01:08:32 +02:00
easyif.h tidy-up: miscellaneous 2025-12-26 22:06:09 +01:00
easyoptions.c httpsig: add RFC 9421 HTTP Message Signatures support 2026-07-25 16:25:37 +02:00
easyoptions.h tidy-up: miscellaneous 2025-12-26 22:06:09 +01:00
escape.c tidy-up: comments, messages, formatting 2026-07-30 11:26:22 +02:00
escape.h tidy-up: miscellaneous 2026-02-25 14:44:56 +01:00
fake_addrinfo.c tidy-up: fix comment indentation 2026-07-23 12:01:40 +02:00
fake_addrinfo.h headers: name the arguments the way the definitions name them 2026-08-18 00:11:02 +02:00
file.c file: support directory listing on Windows 2026-08-15 11:56:25 +02:00
file.h protocol source, all about protocols and uri schemes 2026-03-16 08:39:02 +01:00
fileinfo.c tidy-up: miscellaneous 2025-12-26 22:06:09 +01:00
fileinfo.h tidy-up: miscellaneous 2025-12-26 22:06:09 +01:00
formdata.c formdata: replace stray camelcase local function names 2026-06-30 11:36:55 +02:00
formdata.h clang-tidy: add arg names to prototypes where missing 2026-02-23 01:00:47 +01:00
ftp-int.h tidy-up: miscellaneous 2026-05-20 00:50:43 +02:00
ftp.c lib: new easy option string storage 2026-08-21 09:36:07 +02:00
ftp.h lib: add "Curl_" prefix to two global functions 2026-07-02 12:36:07 +02:00
ftplistparser.c hardening: add API guards 2026-07-21 23:22:24 +02:00
ftplistparser.h clang-tidy: sync argument names in prototype and definition 2026-02-19 12:44:37 +01:00
functypes.h tidy-up: fix comment indentation 2026-07-23 12:01:40 +02:00
getenv.c tidy-up: miscellaneous 2025-12-26 22:06:09 +01:00
getinfo.c lib: new easy option string storage 2026-08-21 09:36:07 +02:00
getinfo.h lib: refactor the type of funcs which have useless return and checks 2025-11-07 13:01:39 +01:00
gopher.c connect: connection close tweaks 2026-07-24 22:59:46 +02:00
gopher.h protocol source, all about protocols and uri schemes 2026-03-16 08:39:02 +01:00
hash.c tidy-up: miscellaneous 2026-04-14 01:08:32 +02:00
hash.h tidy-up: fix comment indentation 2026-07-23 12:01:40 +02:00
headers.c header api: add guards 2026-08-12 21:56:48 +02:00
headers.h badwords: rework exceptions, fix many of them 2026-03-12 01:01:16 +01:00
hmac.c tidy-up: miscellaneous 2026-04-14 01:08:32 +02:00
hsts.c tidy-up: miscellaneous 2026-06-14 20:10:28 +02:00
hsts.h hsts: duplicate live HSTS data in curl_easy_duphandle 2026-06-09 16:51:47 +02:00
http.c lib: new easy option string storage 2026-08-21 09:36:07 +02:00
http.h tidy-up: fix comment indentation 2026-07-23 12:01:40 +02:00
http1.c http1: fix potential NULL dereference in Curl_h1_req_parse_read() 2026-03-02 13:45:14 +01:00
http1.h tidy-up: miscellaneous 2026-02-12 14:52:16 +01:00
http2.c lib: new easy option string storage 2026-08-21 09:36:07 +02:00
http2.h urldata: cleanups 2026-08-17 14:03:14 +02:00
http_aws_sigv4.c lib: new easy option string storage 2026-08-21 09:36:07 +02:00
http_aws_sigv4.h lib: move all UNITTEST prototypes to C files 2026-03-20 07:47:57 +01:00
http_chunks.c websocket: pause writing and meta data fix 2026-07-29 13:35:50 +02:00
http_chunks.h build: drop duplicate include curl/curl.h and others 2025-12-19 10:58:11 +01:00
http_digest.c tidy-up: use more static, sizeof(), char[], double-const 2026-07-28 13:53:11 +02:00
http_digest.h tidy-up: miscellaneous 2025-12-26 22:06:09 +01:00
http_httpsig.c lib: new easy option string storage 2026-08-21 09:36:07 +02:00
http_httpsig.h httpsig: add RFC 9421 HTTP Message Signatures support 2026-07-25 16:25:37 +02:00
http_negotiate.c tidy-up: use more static, sizeof(), char[], double-const 2026-07-28 13:53:11 +02:00
http_negotiate.h tidy-up: miscellaneous 2025-12-26 22:06:09 +01:00
http_ntlm.c tidy-up: use more static, sizeof(), char[], double-const 2026-07-28 13:53:11 +02:00
http_ntlm.h tidy-up: miscellaneous 2025-12-26 22:06:09 +01:00
http_proxy.c lib: new easy option string storage 2026-08-21 09:36:07 +02:00
http_proxy.h lib: transfer origin and proxy handling 2026-06-12 23:52:00 +02:00
idn.c idn: restore MultiByteToWideChar() MB_ERR_INVALID_CHARS flag 2026-07-15 17:14:08 +02:00
idn.h idn: replace header guards with forward declaration 2026-05-11 17:01:34 +02:00
if2ip.c curlx_inet_ntop: return CURLcode, drop setting errno 2026-08-17 18:41:31 +02:00
if2ip.h badwords: prefer 'workaround' (without hyphen) 2026-05-31 22:05:54 +02:00
imap.c lib: new easy option string storage 2026-08-21 09:36:07 +02:00
imap.h protocol source, all about protocols and uri schemes 2026-03-16 08:39:02 +01:00
ldap.c ldap: base64-encode LDIF values beginning with colon or less-than 2026-08-21 00:16:12 +02:00
libcurl.def multi: add notifications API 2025-10-07 10:55:31 +02:00
libcurl.rc build: merge TrackMemory (CURLDEBUG) into debug-enabled option 2026-01-19 18:43:17 +01:00
libcurl.vers.in build: tidy up and improve versioned-symbols options 2024-09-21 12:21:14 +02:00
llist.c tidy-up: fix comment indentation 2026-07-23 12:01:40 +02:00
llist.h llist: constify struct pointers 2026-05-13 17:40:42 +02:00
macos.c tidy-up: miscellaneous 2025-12-26 22:06:09 +01:00
macos.h tidy-up: miscellaneous 2025-12-26 22:06:09 +01:00
Makefile.am config-riscos.h: delete handcrafted RISC OS config header, in favor of autotools 2026-08-17 00:00:14 +02:00
Makefile.inc lib: new easy option string storage 2026-08-21 09:36:07 +02:00
Makefile.soname badwords: rework exceptions, fix many of them 2026-03-12 01:01:16 +01:00
md4.c gnutls: fix more nettle 4+ compatibility issues 2026-05-12 05:33:08 +02:00
md5.c md5: replace magic numbers with MD5_DIGEST_LEN 2026-07-23 12:56:18 +02:00
memdebug.c tidy-up: drop redundant != NULL syntax 2026-06-09 14:37:36 +02:00
mime.c mime.c: avoid integer overflow in base64 size calculation 2026-07-15 10:59:18 +02:00
mime.h tidy-up: macro parentheses 2026-02-24 16:30:05 +01:00
mprintf.c tidy-up: use CURL_CSTRLEN() macro on more static strings 2026-07-29 00:19:37 +02:00
mqtt.c src: safely clear certain buffers 2026-07-29 14:38:48 +02:00
mqtt.h protocol source, all about protocols and uri schemes 2026-03-16 08:39:02 +01:00
multi.c multi: initialisation order 2026-08-17 15:05:39 +02:00
multi_ev.c hardening: add API guards 2026-07-21 23:22:24 +02:00
multi_ev.h tidy-up: miscellaneous 2025-12-26 22:06:09 +01:00
multi_ntfy.c hardening: add API guards 2026-07-21 23:22:24 +02:00
multi_ntfy.h tidy-up: miscellaneous 2025-12-26 22:06:09 +01:00
multihandle.h multi: timeout improvements 2026-08-14 22:39:41 +02:00
multiif.h multi: shrink expire timer indices 2026-08-15 22:35:20 +02:00
netrc.c netrc: remember and check filename loaded 2026-06-08 13:53:02 +02:00
netrc.h netrc: scanner refactor 2026-05-18 15:18:09 +02:00
openldap.c ldap: base64-encode LDIF values beginning with colon or less-than 2026-08-21 00:16:12 +02:00
optiontable.pl tidy-up: add spaces around equal operators where missing 2026-06-11 19:52:01 +02:00
parsedate.c tidy-up: fix comment indentation 2026-07-23 12:01:40 +02:00
parsedate.h clang-tidy: sync argument names in prototype and definition 2026-02-19 12:44:37 +01:00
peer.c urlpieces: remove members that live in peers/creds 2026-06-26 14:39:40 +02:00
peer.h tidy-up: typos, comment nits 2026-07-11 13:55:45 +02:00
pingpong.c urldata: cleanups 2026-08-17 14:03:14 +02:00
pingpong.h urldata: cleanups 2026-08-17 14:03:14 +02:00
pop3.c lib: new easy option string storage 2026-08-21 09:36:07 +02:00
pop3.h protocol source, all about protocols and uri schemes 2026-03-16 08:39:02 +01:00
progress.c progress: fix progress meter update to run every second again 2026-08-12 21:54:42 +02:00
progress.h progress: cleanup, less memory 2026-08-12 14:51:06 +02:00
protocol.c websockets: auto-tunnel through http proxy 2026-05-20 11:50:35 +02:00
protocol.h tidy-up: fix comment indentation 2026-07-23 12:01:40 +02:00
proxy.c lib: new easy option string storage 2026-08-21 09:36:07 +02:00
proxy.h tidy-up: miscellaneous 2026-06-14 20:10:28 +02:00
psl.c psl: update a comment to understandable English 2026-08-06 14:48:27 +02:00
psl.h tidy-up: miscellaneous 2025-12-26 22:06:09 +01:00
rand.c tidy-up: use CURL_CSTRLEN() macro on more static strings 2026-07-29 00:19:37 +02:00
rand.h tool_doswin: add stdin relay auth 2026-07-22 00:45:12 +02:00
ratelimit.c lib: ratelimit timestamps 2026-07-13 11:53:00 +02:00
ratelimit.h lib: ratelimit timestamps 2026-07-13 11:53:00 +02:00
request.c vdns: directory for all DNS related sources 2026-08-05 08:09:07 +02:00
request.h lib: optimize struct layouts for reduced memory usage 2026-08-14 16:14:24 +02:00
rtsp.c lib: new easy option string storage 2026-08-21 09:36:07 +02:00
rtsp.h rtsp: refactor method handling and improve error checks 2026-08-06 14:51:32 +02:00
select.c build: assume POSIX select() is available 2026-07-31 12:38:52 +02:00
select.h tidy-up: fix comment indentation 2026-07-23 12:01:40 +02:00
sendf.c tidy-up: comments, messages, formatting 2026-07-30 11:26:22 +02:00
sendf.h websocket: pause writing and meta data fix 2026-07-29 13:35:50 +02:00
setopt.c lib: new easy option string storage 2026-08-21 09:36:07 +02:00
setopt.h lib: new easy option string storage 2026-08-21 09:36:07 +02:00
setup-os400.h tidy-up: miscellaneous 2026-04-14 01:08:32 +02:00
setup-vms.h stop using the word 'just' 2026-03-03 15:30:22 +01:00
setup-win32.h stop using the word 'just' 2026-03-03 15:30:22 +01:00
sha256.c tidy-up: fix comment indentation 2026-07-23 12:01:40 +02:00
sigpipe.h clang-tidy: check bugprone-macro-parentheses, fix fallouts 2026-02-22 00:58:04 +01:00
slist.c tidy-up: rename Curl_safefree()/tool_safefree() to curlx_safefree() 2026-04-01 19:53:53 +02:00
slist.h slist: constify Curl_slist_append_nodup() string argument 2025-11-25 11:05:48 +01:00
smb.c tidy-up: use more static, sizeof(), char[], double-const 2026-07-28 13:53:11 +02:00
smb.h lib: make SMB support opt-in 2026-03-22 11:55:39 +01:00
smtp.c lib: new easy option string storage 2026-08-21 09:36:07 +02:00
smtp.h protocol source, all about protocols and uri schemes 2026-03-16 08:39:02 +01:00
sockaddr.h cf-socket: make Curl_addr2string static 2026-06-11 08:15:31 +02:00
socketpair.c socket: use name sockerr for socket error variables 2026-06-14 14:17:07 +02:00
socketpair.h tidy-up: prefer "initialize" with a 'z' 2026-05-15 11:49:06 +02:00
socks.c lib: optimize struct layouts for reduced memory usage 2026-08-14 16:14:24 +02:00
socks.h creds: add sasl service name 2026-05-13 14:04:17 +02:00
socks_gssapi.c spnego: block NTLM fallback in SPNEGO negotiation 2026-07-27 17:28:52 -04:00
socks_sspi.c tidy-up: C and CI 2026-08-12 15:42:54 +02:00
splay.c multi: timeout improvements 2026-08-14 22:39:41 +02:00
splay.h multi: timeout improvements 2026-08-14 22:39:41 +02:00
strcase.c build: use more const 2026-02-02 12:32:49 +01:00
strcase.h clang-tidy: sync argument names in prototype and definition 2026-02-19 12:44:37 +01:00
strequal.c stop using the word 'just' 2026-03-03 15:30:22 +01:00
strerror.c urlapi: improved return codes 2026-07-28 13:37:28 +02:00
strerror.h tidy-up: miscellaneous 2025-12-26 22:06:09 +01:00
system_win32.c windows: determine RtlVerifyVersionInfo address on global init 2026-03-09 11:35:19 +01:00
system_win32.h timeval: make Curl_freq variable static (Windows) 2026-07-18 03:12:41 +02:00
telnet.c tidy-up: syntax and code nits 2026-06-26 15:45:24 +02:00
telnet.h protocol source, all about protocols and uri schemes 2026-03-16 08:39:02 +01:00
tftp.c progress: cleanup, less memory 2026-08-12 14:51:06 +02:00
tftp.h protocol source, all about protocols and uri schemes 2026-03-16 08:39:02 +01:00
thrdpool.c thrdqueue: drop name strdups from Curl_thrdq_create 2026-08-12 14:17:01 +02:00
thrdpool.h lib: make resolving HTTPS DNS records reliable: 2026-04-01 15:36:31 +02:00
thrdqueue.c thrdqueue: drop name strdups from Curl_thrdq_create 2026-08-12 14:17:01 +02:00
thrdqueue.h asyn-thrdd: retry link-local ipv6 if missing scope id 2026-07-23 22:26:43 +02:00
transfer.c lib: new easy option string storage 2026-08-21 09:36:07 +02:00
transfer.h urldata: cleanups 2026-08-17 14:03:14 +02:00
uint-bset.c Revert "uint-bset: add slot0 member" 2026-08-14 13:41:03 +02:00
uint-bset.h Revert "uint-bset: add slot0 member" 2026-08-14 13:41:03 +02:00
uint-hash.c unittests: cleanups 2026-04-15 23:32:38 +02:00
uint-hash.h lib: move all UNITTEST prototypes to C files 2026-03-20 07:47:57 +01:00
uint-hashset.c lib: new easy option string storage 2026-08-21 09:36:07 +02:00
uint-hashset.h lib: new easy option string storage 2026-08-21 09:36:07 +02:00
uint-spbset.c uint-spbset: reused empty chunks 2026-07-21 00:38:26 +02:00
uint-spbset.h build: drop duplicate include curl/curl.h and others 2025-12-19 10:58:11 +01:00
uint-table.c unittests: cleanups 2026-04-15 23:32:38 +02:00
uint-table.h clang-tidy: sync argument names in prototype and definition 2026-02-19 12:44:37 +01:00
url.c lib: new easy option string storage 2026-08-21 09:36:07 +02:00
url.h connections: use admin handles only for maintenance 2026-08-14 14:01:21 +02:00
urlapi-int.h urlpieces: remove members that live in peers/creds 2026-06-26 14:39:40 +02:00
urlapi.c curlx_inet_ntop: return CURLcode, drop setting errno 2026-08-17 18:41:31 +02:00
urldata.h lib: new easy option string storage 2026-08-21 09:36:07 +02:00
version.c httpsig: add RFC 9421 HTTP Message Signatures support 2026-07-25 16:25:37 +02:00
ws.c websocket: pause writing and meta data fix 2026-07-29 13:35:50 +02:00
ws.h protocol source, all about protocols and uri schemes 2026-03-16 08:39:02 +01:00