There was an error while loading. Please reload this page.
1 parent 0dbf3b2 commit 18e73e2Copy full SHA for 18e73e2
2 files changed
pproxy/__doc__.py
@@ -1,5 +1,5 @@
1
__title__ = "pproxy"
2
-__version__ = "2.1.1"
+__version__ = "2.1.2"
3
__license__ = "MIT"
4
__description__ = "Proxy server that can tunnel among remote servers by regex rules."
5
__keywords__ = "proxy socks http shadowsocks shadowsocksr ssr redirect pf tunnel cipher ssl udp"
pproxy/server.py
@@ -465,7 +465,7 @@ def compile(cls, uri, relay=None):
465
alive=True, direct='direct' in protonames, tunnel='tunnel' in protonames, \
466
reuse='pack' in protonames or relay and relay.reuse, backward='in' in rawprotos, \
467
ssh='ssh' in rawprotos, relay=relay)
468
-ProxyURI.DIRECT = ProxyURI(direct=True, tunnel=False, reuse=False, relay=None, alive=True, match=None, cipher=None, backward=None)
+ProxyURI.DIRECT = ProxyURI(direct=True, tunnel=False, reuse=False, relay=None, alive=True, match=None, cipher=None, backward=None, ssh=None)
469
470
async def test_url(url, rserver):
471
url = urllib.parse.urlparse(url)
0 commit comments