-
-
Notifications
You must be signed in to change notification settings - Fork 34.4k
quic: move quic behind compile time flag #61444
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Move node:quic behind a compile-time flag, disabled by default. Use --experimental-quic at configure time to enable. - Add --experimental-quic flag to configure.py - Add node_use_quic variable and HAVE_QUIC define - Make QUIC sources conditional in node.gyp - Move ngtcp2/nghttp3 deps under QUIC condition in node.gypi - Update C++ guards to check HAVE_QUIC - Update process.features.quic to check node_use_quic
|
Review requested:
|
|
@jasnell to which version this should be backported to? |
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #61444 +/- ##
==========================================
+ Coverage 88.51% 89.85% +1.34%
==========================================
Files 704 671 -33
Lines 208883 203055 -5828
Branches 40334 39046 -1288
==========================================
- Hits 184890 182465 -2425
+ Misses 15977 12931 -3046
+ Partials 8016 7659 -357
🚀 New features to boost your workflow:
|
khanbilal732
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
AFAIK the quic stuff has been mostly labelled |
Move node:quic behind a compile-time flag, disabled by default. Use --experimental-quic at configure time to enable.