Work on,making streams

This commit is contained in:
Michael Mikovsky
2025-06-16 13:20:36 -06:00
parent f26b739d43
commit 1ed6ff2d9a
6 changed files with 455 additions and 154 deletions
+5 -6
View File
@@ -7,17 +7,16 @@ pub enum TransportLayerPacket {
stream_id: usize,
},
AckStreamUnrouted {
local_stream_id: usize,
remote_stream_id: usize,
ack_stream_id: usize,
stream_id: usize,
},
StreamDataUnrouted {
stream_id: usize,
data: Vec<u8>,
},
SpontaniousDataUnrouted {
data: Vec<u8>,
},
// SpontaniousDataUnrouted {
// data: Vec<u8>,
// },
}
#[derive(Debug, Encode, Decode, Clone)]