MCPcopy Create free account
hub / github.com/mitmproxy/mitmproxy / send_stream_data

Method send_stream_data

mitmproxy/proxy/layers/http/_http_h3.py:105–110  ·  view source on GitHub ↗
(
        self, stream_id: int, data: bytes, end_stream: bool = False
    )

Source from the content-addressed store, hash-verified

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
113class LayeredH3Connection(H3Connection):

Callers 3

http_data_receivedMethod · 0.80
_test_echoFunction · 0.80
_handle_commandMethod · 0.80

Calls 2

SendQuicStreamDataClass · 0.90
appendMethod · 0.45

Tested by 2

http_data_receivedMethod · 0.64
_test_echoFunction · 0.64