You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using a curl_share between curl requests allows sharing an open connection
and re-use cached DNS, PSL and TLS session id.
This change allows performing multiple requests without having to do
re-perform the (full) TLS handshake.
For reference, on a stm32mp151c with OPTEE + pkcs11 TA a full TLS
handshake takes ~8 seconds. Mostly due to small pager pool (internal sram)
available for OPTEE.
With this change a mTLS curl request take around 60ms after the initial
connection has been established.
Signed-off-by: Robin van der Gracht <[email protected]>
0 commit comments