mitmproxy/libmproxy/protocol/handle.py
2015-05-30 12:03:28 +12:00

21 lines
497 B
Python

from __future__ import absolute_import
from . import http, tcp
protocols = {
'http': dict(handler=http.HTTPHandler, flow=http.HTTPFlow),
'tcp': dict(handler=tcp.TCPHandler)
}
def protocol_handler(protocol):
"""
@type protocol: str
@returns: libmproxy.protocol.primitives.ProtocolHandler
"""
if protocol in protocols:
return protocols[protocol]["handler"]
raise NotImplementedError(
"Unknown Protocol: %s" %
protocol) # pragma: nocover