| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent e2a1703 commit 7e6b77b
287 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -206,6 +206,7 @@ | |||
| 206 | 206 | 'defines': [ | |
| 207 | 207 | 'BUILDING_NGHTTP3', | |
| 208 | 208 | 'NGHTTP3_STATICLIB', | |
| 209 | + 'DEBUGBUILD', | ||
| 209 | 210 | ], | |
| 210 | 211 | 'dependencies': [ | |
| 211 | 212 | 'ngtcp2' | |
@@ -247,7 +248,10 @@ | |||
| 247 | 248 | }, | |
| 248 | 249 | { | |
| 249 | 250 | 'target_name': 'ngtcp2_test_server', | |
| 250 | - 'type': 'executable', | ||
| 251 | + # Disabled: ngtcp2 examples now require C++23 (<print>, <expected>, | ||
| 252 | + # std::println, std::expected) which is not yet supported on all | ||
| 253 | + # Node.js platforms. Re-enable when C++23 is available. | ||
| 254 | + 'type': 'none', | ||
| 251 | 255 | 'cflags': [ '-Wno-everything' ], | |
| 252 | 256 | 'include_dirs': [ | |
| 253 | 257 | '', | |
@@ -305,7 +309,10 @@ | |||
| 305 | 309 | }, | |
| 306 | 310 | { | |
| 307 | 311 | 'target_name': 'ngtcp2_test_client', | |
| 308 | - 'type': 'executable', | ||
| 312 | + # Disabled: ngtcp2 examples now require C++23 (<print>, <expected>, | ||
| 313 | + # std::println, std::expected) which is not yet supported on all | ||
| 314 | + # Node.js platforms. Re-enable when C++23 is available. | ||
| 315 | + 'type': 'none', | ||
| 309 | 316 | 'cflags': [ '-Wno-everything' ], | |
| 310 | 317 | 'include_dirs': [ | |
| 311 | 318 | '', | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2651,6 +2651,32 @@ added: | |||
| 2651 | 2651 | ||
| 2652 | 2652 | Opening a QUIC stream failed. | |
| 2653 | 2653 | ||
| 2654 | + <a id="ERR_QUIC_STREAM_ABORTED"></a> | ||
| 2655 | + | ||
| 2656 | + ### `ERR_QUIC_STREAM_ABORTED` | ||
| 2657 | + | ||
| 2658 | + <!-- YAML | ||
| 2659 | + added: REPLACEME | ||
| 2660 | + --> | ||
| 2661 | + | ||
| 2662 | + > Stability: 1 - Experimental | ||
| 2663 | + | ||
| 2664 | + The Node.js error code for a [`QuicError`][] thrown to abort a QUIC stream | ||
| 2665 | + or session with an explicit application or transport error code. | ||
| 2666 | + | ||
| 2667 | + <a id="ERR_QUIC_STREAM_RESET"></a> | ||
| 2668 | + | ||
| 2669 | + ### `ERR_QUIC_STREAM_RESET` | ||
| 2670 | + | ||
| 2671 | + <!-- YAML | ||
| 2672 | + added: REPLACEME | ||
| 2673 | + --> | ||
| 2674 | + | ||
| 2675 | + > Stability: 1 - Experimental | ||
| 2676 | + | ||
| 2677 | + A QUIC stream was reset by the peer. The error includes the reset code | ||
| 2678 | + provided by the peer. | ||
| 2679 | + | ||
| 2654 | 2680 | <a id="ERR_QUIC_TRANSPORT_ERROR"></a> | |
| 2655 | 2681 | ||
| 2656 | 2682 | ### `ERR_QUIC_TRANSPORT_ERROR` | |
@@ -4436,6 +4462,7 @@ An error occurred trying to allocate memory. This should never happen. | |||
| 4436 | 4462 | [`MessagePort`]: worker_threads.md#class-messageport | |
| 4437 | 4463 | [`Object.getPrototypeOf`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/getPrototypeOf | |
| 4438 | 4464 | [`Object.setPrototypeOf`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/setPrototypeOf | |
| 4465 | + [`QuicError`]: quic.md#class-quicerror | ||
| 4439 | 4466 | [`REPL`]: repl.md | |
| 4440 | 4467 | [`ServerResponse`]: http.md#class-httpserverresponse | |
| 4441 | 4468 | [`Writable`]: stream.md#class-streamwritable | |
| Back | FazBrowse Home | New Git URL |
0 commit comments