Merge pull request #3905 from sarthak212/docsdeprecated

docs update
This commit is contained in:
Thomas Kriechbaumer 2020-04-05 22:38:50 +02:00 committed by GitHub
commit 467234aa96
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,16 +35,16 @@ and write to outfile.
### Client replay
{{< highlight bash >}}
mitmdump -nc outfile
mitmdump -nC outfile
{{< / highlight >}}
Start mitmdump without binding to the proxy port (`-n`), then replay all
requests from outfile (`-c filename`). Flags combine in the obvious way,
requests from outfile (`-C filename`). Flags combine in the obvious way,
so you can replay requests from one file, and write the resulting flows
to another:
{{< highlight bash >}}
mitmdump -nc srcfile -w dstfile
mitmdump -nC srcfile -w dstfile
{{< / highlight >}}
See the [client-side replay]({{< relref "overview-features#client-side-replay"