mirror of
https://github.com/curl/curl.git
synced 2026-07-24 05:37:15 +03:00
vquic: drop msh3
It has never been properly functional in curl while there are several alternatives that are. Closes #17729
This commit is contained in:
parent
c4430c542a
commit
91138b014d
32 changed files with 22 additions and 1612 deletions
|
|
@ -307,9 +307,9 @@ tcpkeepalive(struct Curl_easy *data,
|
|||
* Assign the address `ai` to the Curl_sockaddr_ex `dest` and
|
||||
* set the transport used.
|
||||
*/
|
||||
CURLcode Curl_sock_assign_addr(struct Curl_sockaddr_ex *dest,
|
||||
const struct Curl_addrinfo *ai,
|
||||
int transport)
|
||||
static CURLcode sock_assign_addr(struct Curl_sockaddr_ex *dest,
|
||||
const struct Curl_addrinfo *ai,
|
||||
int transport)
|
||||
{
|
||||
/*
|
||||
* The Curl_sockaddr_ex structure is basically libcurl's external API
|
||||
|
|
@ -406,7 +406,7 @@ CURLcode Curl_socket_open(struct Curl_easy *data,
|
|||
/* if the caller does not want info back, use a local temp copy */
|
||||
addr = &dummy;
|
||||
|
||||
result = Curl_sock_assign_addr(addr, ai, transport);
|
||||
result = sock_assign_addr(addr, ai, transport);
|
||||
if(result)
|
||||
return result;
|
||||
|
||||
|
|
@ -949,7 +949,7 @@ static CURLcode cf_socket_ctx_init(struct cf_socket_ctx *ctx,
|
|||
ctx->sock = CURL_SOCKET_BAD;
|
||||
ctx->transport = transport;
|
||||
|
||||
result = Curl_sock_assign_addr(&ctx->addr, ai, transport);
|
||||
result = sock_assign_addr(&ctx->addr, ai, transport);
|
||||
if(result)
|
||||
return result;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue