connect: add quic connection information

Fixes #9286
Closes #9287
This commit is contained in:
Cering 2022-08-10 12:27:09 +08:00 committed by Daniel Stenberg
parent 3879d812ad
commit 6ba3047378
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2
2 changed files with 8 additions and 0 deletions

View File

@ -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>

View File

@ -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);