mirror of
https://github.com/curl/curl.git
synced 2026-07-25 02:37:18 +03:00
quiche: use the proper HTTP/3 ALPN
This commit is contained in:
parent
fc5b61baf0
commit
decefd5778
1 changed files with 5 additions and 1 deletions
|
|
@ -70,7 +70,11 @@ CURLcode Curl_quic_connect(struct connectdata *conn, curl_socket_t sockfd,
|
|||
quiche_config_set_initial_max_stream_data_uni(qs->cfg, QUIC_MAX_DATA);
|
||||
quiche_config_set_initial_max_streams_bidi(qs->cfg, QUIC_MAX_STREAMS);
|
||||
quiche_config_set_initial_max_streams_uni(qs->cfg, QUIC_MAX_STREAMS);
|
||||
quiche_config_set_application_protos(qs->cfg, (uint8_t *) "\x05hq-20", 6);
|
||||
quiche_config_set_application_protos(qs->cfg,
|
||||
(uint8_t *)
|
||||
QUICHE_H3_APPLICATION_PROTOCOL,
|
||||
sizeof(QUICHE_H3_APPLICATION_PROTOCOL)
|
||||
- 1);
|
||||
|
||||
result = Curl_rand(conn->data, qs->scid, sizeof(qs->scid));
|
||||
if(result)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue