(
self, stream_id: int, data: bytes, end_stream: bool = False
)
| 103 | ) |
| 104 | |
| 105 | def send_stream_data( |
| 106 | self, stream_id: int, data: bytes, end_stream: bool = False |
| 107 | ) -> None: |
| 108 | self.pending_commands.append( |
| 109 | SendQuicStreamData(self.conn, stream_id, data, end_stream) |
| 110 | ) |
| 111 | |
| 112 | |
| 113 | class LayeredH3Connection(H3Connection): |