File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -829,6 +829,7 @@ third_party/quiche/quiche/quic/platform/api/quic_stack_trace.h
829829third_party/quiche/quiche/quic/platform/api/quic_thread.h
830830third_party/quiche/quiche/quic/tools/quic_simple_crypto_server_stream_helper.cc
831831third_party/quiche/quiche/quic/tools/quic_simple_crypto_server_stream_helper.h
832+ third_party/quiche/quiche/web_transport/stream_helpers.h
832833third_party/quiche/quiche/web_transport/web_transport_headers.cc
833834third_party/quiche/quiche/web_transport/web_transport_headers.h
834835third_party/quiche/quiche/web_transport/web_transport_priority_scheduler.cc
Original file line number Diff line number Diff line change 44
55#include " src/http3wtstreamvisitor.h"
66#include " src/http3server.h"
7+ #include " quiche/web_transport/stream_helpers.h"
78
89namespace quic
910{
@@ -140,7 +141,7 @@ namespace quic
140141 {
141142 auto cur = chunks_.front ();
142143 absl::Status status =
143- WriteIntoStream (*stream_, absl::string_view (cur.buffer , cur.len ));
144+ webtransport:: WriteIntoStream (*stream_, absl::string_view (cur.buffer , cur.len ));
144145 QUIC_DVLOG (1 ) << " Attempted writing on WebTransport bidirectional stream "
145146 << " , success: " << status;
146147 if (!status.ok ())
@@ -155,7 +156,7 @@ namespace quic
155156
156157 if (send_fin_)
157158 {
158- absl::Status status = SendFinOnStream (*stream_);
159+ absl::Status status = webtransport:: SendFinOnStream (*stream_);
159160 if (status.ok ()) {
160161 fin_was_sent_ = true ;
161162 getJS ()->processStreamNetworkFinish (NetworkTask::streamFinal);
You can’t perform that action at this time.
0 commit comments