bram $__TRELLIS_DPR16X4 init 1 abits 4 dbits 4 groups 2 ports 1 1 wrmode 0 1 enable 0 1 transp 0 0 clocks 0 1 clkpol 0 2 endbram match $__TRELLIS_DPR16X4 make_outreg min wports 1 endmatch panaceas.org/cgit.cgi/cloud-email/mitmproxy/atom/examples/complex/nonblocking.py?h=master' type='application/atom+xml'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/examples/complex/nonblocking.py
blob: 72c9c0abf6ff7cbe6196d29dcbf442daba4d719d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import time

from mitmproxy.script import concurrent
from mitmproxy import ctx


@concurrent  # Remove this and see what happens
def request(flow):
    # You don't want to use mitmproxy.ctx from a different thread
    ctx.log.info("handle request: %s%s" % (flow.request.host, flow.request.path))
    time.sleep(5)
    ctx.log.info("start  request: %s%s" % (flow.request.host, flow.request.path))