| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| |
|
|
|
|
| |
Fixes #3162
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
With lots of exclusions for now
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
closes #3122
https://bugs.python.org/issue16285
https://bugs.python.org/issue12910
https://github.com/python/cpython/commit/21024f06622c4c55b666adb130797a4ee205d005
|
|
|
|
| |
Fixes #2810
|
|
|
|
| |
Fixes 2838
|
|
|
|
|
| |
fixes #3088
fixes #2787
|
|
|
|
|
| |
This is going to be a super common error for addon authors, so we might as well
handle it.
|
| |
|
|
|
|
|
| |
We store a lot more than just the CAs in our configuration directory. Clarify
the option name.
|
|
|
|
| |
persistence
|
| |
|
|
|
|
|
|
| |
This results in a 30% improvement in our core request throughput.
Fixes #3102
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
We've had a perpetual sequencing problem with addon startup. Users need to be
able to specify options to addons on the command-line, before addons are
actually loaded. This is only exacerbated with the new async core, where load
order can't be relied on.
This patch introduces deferred options. Options passed with "--set" on the
command line are deferred if they are unknown, and are automatically applied by
the addon manager once matching addons are registered and their options are defined.
|
| |
|
|
|
|
|
|
|
|
|
| |
We now have two options: block_global blocks global networks, block_private
blocks private networks. The block_global option is true by default, and
block_private is false by default. The addon name is "block" so the options are
correctly prefixed.
Also make option documentation precise, reduce verbosity of logs.
|
|\
| |
| | |
fix #3024
|
| | |
|
| |
| |
| |
| |
| | |
These were always weird, and were added to support exit when processing
completed to mitmdump. We now have better ways to do this.
|
| |
| |
| |
| | |
Mitmproxy: the tickless wonder.
|
| |
| |
| |
| | |
We no longer use this anywhere, so ditch it.
|
| |
| |
| |
| |
| |
| |
| |
| | |
- Instead of listening for a pseudo-event, we periodically check whether client
replay, server replay or file reading is active.
- Adjust server replay not to
use tick.
- Adjust readfile to expose a command to check whether reading is in progress.
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Re-design the way client replay works. Before, we would fire up a thread,
replay, wait for the thread to complete, get the next flow, and repeat the
procedure. Now, we have one replay thread that starts when the addon starts,
which pops flows off a thread-safe queue. This is much cleaner, removes the
need for busy tick, and sets the scene for optimisations like server connection
reuse down the track.
|
| | |
|
|\ \
| | |
| | | |
Fix #3002. Auto-expanding for tilda.
|
| | | |
|
|\ \ \
| |/ /
|/| | |
asyncio: shift script reloading out of the tick event
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | | |
The granularity of mtime is surprisingly bad. Make the tests more robust
against this, and promote has_log back to a public method, now that we have a
few legitimate examples.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The tick event is a nasty compromise, left over from when we didn't have an
event loop. This is the first patch in a series that explores moving our
built-in addons to managing coroutines on the eventloop directly for periodic
tasks.
|
|/ / |
|
| |
| |
| |
| |
| |
| |
| |
| | |
- Ignore the NotImplementedError raised by add_signal_handler on Windows.
- Entrypoints return an integer exit code, or None. Adjust our type annotations
and code to suit.
Fixes #3061
|
| |
| |
| |
| |
| | |
This patch clarifies proxy shutdown, and specifies that the master.shutdown()
method is thread-save.
|
| | |
|
|/
|
|
|
|
|
|
|
| |
- The benchmark addon now manages setting up and tearing down the backend and
traffic processes itself.
- Use wrk instead of hey. I get more consistent results with this tool, and hey
shows a strange tail-latency bump that seems artificial.
- Make termination behaviour simpler. The bencmark revealed a bug where .done
events were not called if the proxy was shut down by an addon.
|
|\
| |
| | |
fix Python 3.6 variable type annotations #3053
|