There was an error while loading. Please reload this page.
1 parent d1288af commit 6875095Copy full SHA for 6875095
1 file changed
src/quic/http3.cc
@@ -503,11 +503,12 @@ class Http3ApplicationImpl final : public Session::Application {
503
code = error.code();
504
}
505
506
- int rv = nghttp3_conn_close_stream2(*this,
507
- NGHTTP3_STREAM_CLOSE_FLAG_RX_APP_ERROR_CODE_SET,
508
- stream->id(),
509
- code,
510
- 0);
+ int rv = nghttp3_conn_close_stream2(
+ *this,
+ NGHTTP3_STREAM_CLOSE_FLAG_RX_APP_ERROR_CODE_SET,
+ stream->id(),
+ code,
511
+ 0);
512
// If the call is successful, Http3Application::OnStreamClose callback will
513
// be invoked when the stream is ready to be closed. We'll handle destroying
514
// the actual Stream object there.
0 commit comments