فهرست منبع

Updated proxy (use config.py), updated ansi filter regex.

root 5 سال پیش
والد
کامیت
5adf56903d
2فایلهای تغییر یافته به همراه15 افزوده شده و 5 حذف شده
  1. 8 0
      config.py
  2. 7 5
      tcp-proxy.py

+ 8 - 0
config.py

@@ -0,0 +1,8 @@
+
+# Connect to:
+HOST = "twgs"
+PORT = 2002
+# Listen on:
+LISTEN_PORT = 2002
+LISTEN_ON = "0.0.0.0"
+

+ 7 - 5
tcp-proxy.py

@@ -10,14 +10,16 @@ from twisted.python import log
 from twisted.enterprise import adbapi
 import pendulum
 
+from config import *
+
 # Connect to:
-HOST = "127.0.0.1"
-PORT = 2002
+# HOST = "twgs"
+# PORT = 2002
 # Listen on:
-LISTEN_PORT = 9999
-LISTEN_ON = "127.0.0.1"
+# LISTEN_PORT = 2002
+# LISTEN_ON = "0.0.0.0"
 
-cleaner = re.compile(r"\x1b\[[0-9;]*[A-Zm]")
+cleaner = re.compile(r"\x1b\[[0-9;]*[A-Zmh]")
 makeNL = re.compile(r"\x1b\[[0-9;]*[J]")