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