aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorroot <skkaushik212@gmail.com>2020-04-06 00:20:33 +0530
committerroot <skkaushik212@gmail.com>2020-04-06 00:20:33 +0530
commite7839a4320747718fc417f58d02c66a7950c6c33 (patch)
tree65283f2ff1c67888ae4d2bfaab4e2f66cc3c9f9e
parentb286d35653b1ef57ed37d161d5224421efa7a713 (diff)
downloadmitmproxy-e7839a4320747718fc417f58d02c66a7950c6c33.tar.gz
mitmproxy-e7839a4320747718fc417f58d02c66a7950c6c33.tar.bz2
mitmproxy-e7839a4320747718fc417f58d02c66a7950c6c33.zip
docs update
-rw-r--r--docs/src/content/tools-mitmdump.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/src/content/tools-mitmdump.md b/docs/src/content/tools-mitmdump.md
index fb6a6c0c..f3424266 100644
--- a/docs/src/content/tools-mitmdump.md
+++ b/docs/src/content/tools-mitmdump.md
@@ -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"