1 parent f703bb8 commit dc0279cCopy full SHA for dc0279c
2 files changed
pproxy/__doc__.py
@@ -1,5 +1,5 @@
1
__title__ = "pproxy"
2
-__version__ = "2.1.7"
+__version__ = "2.1.8"
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
@@ -467,7 +467,7 @@ def compile(cls, uri, relay=None):
467
alive=True, direct='direct' in protonames, tunnel='tunnel' in protonames, \
468
reuse='pack' in protonames or relay and relay.reuse, backward='in' in rawprotos, \
469
ssh='ssh' in rawprotos, relay=relay)
470
-ProxyURI.DIRECT = ProxyURI(direct=True, tunnel=False, reuse=False, relay=None, alive=True, match=None, cipher=None, backward=None, ssh=None)
+ProxyURI.DIRECT = ProxyURI(direct=True, tunnel=False, reuse=False, relay=None, alive=True, match=None, cipher=None, backward=None, ssh=None, lbind=None)
471
472
async def test_url(url, rserver):
473
url = urllib.parse.urlparse(url)
0 commit comments