(
self,
data: bytes,
metadata: Metadata,
)
| 138 | return "\n\n".join(frame.pretty() for frame in frames) |
| 139 | |
| 140 | def render_priority( |
| 141 | self, |
| 142 | data: bytes, |
| 143 | metadata: Metadata, |
| 144 | ) -> float: |
| 145 | flow = metadata.flow |
| 146 | return ( |
| 147 | 2 |
| 148 | * float(bool(flow and is_h3_alpn(flow.client_conn.alpn))) |
| 149 | * float(isinstance(flow, tcp.TCPFlow)) |
| 150 | ) |
| 151 | |
| 152 | |
| 153 | http3 = Http3Contentview() |
nothing calls this directly
no test coverage detected