mirror of
https://github.com/curl/curl.git
synced 2026-06-10 07:54:16 +03:00
parent
3879d812ad
commit
6ba3047378
2 changed files with 8 additions and 0 deletions
1
.mailmap
1
.mailmap
|
|
@ -94,3 +94,4 @@ Max Mehl <max.mehl@fsfe.org>
|
|||
rzrymiak on github <106121613+rzrymiak@users.noreply.github.com>
|
||||
Oliver Roberts <oliver@futaura.co.uk>
|
||||
opensignature on github <antonio@piumarossa.it>
|
||||
Cering on github <gfypm@qq.com>
|
||||
|
|
|
|||
|
|
@ -766,6 +766,13 @@ void Curl_updateconninfo(struct Curl_easy *data, struct connectdata *conn,
|
|||
Curl_conninfo_remote(data, conn, sockfd);
|
||||
Curl_conninfo_local(data, sockfd, local_ip, &local_port);
|
||||
} /* end of TCP-only section */
|
||||
#ifdef ENABLE_QUIC
|
||||
else if(conn->transport == TRNSPRT_QUIC) {
|
||||
if(!conn->bits.reuse)
|
||||
Curl_conninfo_remote(data, conn, sockfd);
|
||||
Curl_conninfo_local(data, sockfd, local_ip, &local_port);
|
||||
}
|
||||
#endif
|
||||
|
||||
/* persist connection info in session handle */
|
||||
Curl_persistconninfo(data, conn, local_ip, local_port);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue