diff options
author | Aldo Cortesi <aldo@corte.si> | 2016-06-06 08:40:20 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@corte.si> | 2016-06-06 08:40:20 +1200 |
commit | c31b9c461dd4f905dcdb3f127c54d561a6166bb9 (patch) | |
tree | 2efbcfcbf0df6ef829cc191bfcfc5bfb9bb995b8 /pathod/pathod_cmdline.py | |
parent | 435bfeca0b5c0f3a581e334bcfecc742d97d5e58 (diff) | |
parent | a31c183a0fb19e68a3536f7fab55adbbaa1ce61c (diff) | |
download | mitmproxy-c31b9c461dd4f905dcdb3f127c54d561a6166bb9.tar.gz mitmproxy-c31b9c461dd4f905dcdb3f127c54d561a6166bb9.tar.bz2 mitmproxy-c31b9c461dd4f905dcdb3f127c54d561a6166bb9.zip |
Merge pull request #1211 from cortesi/pathod
WIP: Radical webectomy of pathod
Diffstat (limited to 'pathod/pathod_cmdline.py')
-rw-r--r-- | pathod/pathod_cmdline.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/pathod/pathod_cmdline.py b/pathod/pathod_cmdline.py index a4f05faf..5ca2ca85 100644 --- a/pathod/pathod_cmdline.py +++ b/pathod/pathod_cmdline.py @@ -75,18 +75,10 @@ def args_pathod(argv, stdout_=sys.stdout, stderr_=sys.stderr): type=str, help='Size limit of served responses. Understands size suffixes, i.e. 100k.') parser.add_argument( - "--noapi", dest='noapi', default=False, action="store_true", - help='Disable API.' - ) - parser.add_argument( "--nohang", dest='nohang', default=False, action="store_true", help='Disable pauses during crafted response generation.' ) parser.add_argument( - "--noweb", dest='noweb', default=False, action="store_true", - help='Disable both web interface and API.' - ) - parser.add_argument( "--nocraft", dest='nocraft', default=False, |