summaryrefslogtreecommitdiffstats
path: root/third_party/rust/neqo-http3/src/features/extended_connect/webtransport_streams.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:13:27 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:13:27 +0000
commit40a355a42d4a9444dc753c04c6608dade2f06a23 (patch)
tree871fc667d2de662f171103ce5ec067014ef85e61 /third_party/rust/neqo-http3/src/features/extended_connect/webtransport_streams.rs
parentAdding upstream version 124.0.1. (diff)
downloadfirefox-upstream/125.0.1.tar.xz
firefox-upstream/125.0.1.zip
Adding upstream version 125.0.1.upstream/125.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'third_party/rust/neqo-http3/src/features/extended_connect/webtransport_streams.rs')
-rw-r--r--third_party/rust/neqo-http3/src/features/extended_connect/webtransport_streams.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/third_party/rust/neqo-http3/src/features/extended_connect/webtransport_streams.rs b/third_party/rust/neqo-http3/src/features/extended_connect/webtransport_streams.rs
index 84dcd20618..cdc692b8d7 100644
--- a/third_party/rust/neqo-http3/src/features/extended_connect/webtransport_streams.rs
+++ b/third_party/rust/neqo-http3/src/features/extended_connect/webtransport_streams.rs
@@ -215,16 +215,6 @@ impl SendStream for WebTransportSendStream {
}
}
- fn set_sendorder(&mut self, conn: &mut Connection, sendorder: Option<i64>) -> Res<()> {
- conn.stream_sendorder(self.stream_id, sendorder)
- .map_err(|_| crate::Error::InvalidStreamId)
- }
-
- fn set_fairness(&mut self, conn: &mut Connection, fairness: bool) -> Res<()> {
- conn.stream_fairness(self.stream_id, fairness)
- .map_err(|_| crate::Error::InvalidStreamId)
- }
-
fn handle_stop_sending(&mut self, close_type: CloseType) {
self.set_done(close_type);
}