The possible values for an encoding specification.
(self)
| 240 | |
| 241 | @command.command("flow.encode.options") |
| 242 | def encode_options(self) -> Sequence[str]: |
| 243 | """ |
| 244 | The possible values for an encoding specification. |
| 245 | """ |
| 246 | return ["gzip", "deflate", "br", "zstd"] |
| 247 | |
| 248 | @command.command("options.load") |
| 249 | def options_load(self, path: mitmproxy.types.Path) -> None: |
no outgoing calls