mirror of
https://github.com/curl/curl.git
synced 2026-08-26 05:33:38 +03:00
parent
279dfb620b
commit
2e2767a378
2 changed files with 5 additions and 3 deletions
|
|
@ -95,7 +95,9 @@ static const MSH3_REQUEST_IF msh3_request_if = {
|
|||
|
||||
void Curl_quic_ver(char *p, size_t len)
|
||||
{
|
||||
(void)msnprintf(p, len, "msh3/%s", "0.3.0");
|
||||
uint32_t v[4];
|
||||
MsH3Version(v);
|
||||
(void)msnprintf(p, len, "msh3/%d.%d.%d.%d", v[0], v[1], v[2], v[3]);
|
||||
}
|
||||
|
||||
CURLcode Curl_quic_connect(struct Curl_easy *data,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue