Skip to content

Commit

Permalink
Bug 1816660 - Enable H3_DATAGRAM when WebTransport is enabled, r=neck…
Browse files Browse the repository at this point in the history
…o-reviewers,valentin

Differential Revision: https://phabricator.services.mozilla.com/D169823
  • Loading branch information
KershawChang committed Feb 14, 2023
1 parent fe136bb commit 9c8a1d5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion netwerk/socket/neqo_glue/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,8 @@ impl NeqoHttp3Conn {
.max_blocked_streams(max_blocked_streams)
.max_concurrent_push_streams(0)
.connection_parameters(params)
.webtransport(webtransport);
.webtransport(webtransport)
.http3_datagram(webtransport);

let mut conn = match Http3Client::new(
origin_conv,
Expand Down

0 comments on commit 9c8a1d5

Please sign in to comment.