1
0
mirror of https://github.com/moparisthebest/curl synced 2024-11-10 19:45:04 -05:00

ngtcp2: Send ALPN h3-22

Closes #4212
This commit is contained in:
Tatsuhiro Tsujikawa 2019-08-11 10:49:03 +09:00 committed by Daniel Stenberg
parent f49abd1090
commit 86ae740482
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -586,10 +586,10 @@ static int quic_init_ssl(struct connectdata *conn)
SSL_set_key_callback(qs->ssl, ssl_key_cb, conn);
switch(qs->version) {
#ifdef NGTCP2_PROTO_VER_D17
case NGTCP2_PROTO_VER_D17:
alpn = (const uint8_t *)NGTCP2_ALPN_D17;
alpnlen = strlen(NGTCP2_ALPN_D17);
#ifdef NGTCP2_PROTO_VER
case NGTCP2_PROTO_VER:
alpn = (const uint8_t *)NGTCP2_ALPN_H3;
alpnlen = sizeof(NGTCP2_ALPN_H3) - 1;
break;
#endif
}
@ -997,6 +997,7 @@ CURLcode Curl_quic_connect(struct connectdata *conn,
(void)addrlen;
infof(conn->data, "Connecting socket %d over QUIC\n", sockfd);
qs->version = NGTCP2_PROTO_VER;
qs->sslctx = quic_ssl_ctx(conn->data);
if(!qs->sslctx)
return CURLE_FAILED_INIT; /* TODO: better return code */