Trying to commit the funnee bool

yeah
This commit is contained in:
Carlos Sanchez 2024-02-01 20:47:48 -05:00 committed by Fierelier
parent bbe92187a1
commit f291f341fa
2 changed files with 2 additions and 4 deletions

View File

@ -23,10 +23,8 @@ def defGet(tbl,key,defv):
bufferSize = int(defGet(os.environ,"fstream_net_buffer","4096")) # max buffer size in bytes for receiving data, lower values shouldn't reduce the delay
bufferSizeStdin = int(defGet(os.environ,"fstream_stdin_buffer","128")) # min buffer size for buffer, lower values DO reduce delay but raise CPU usage
timeout = float(defGet(os.environ,"fstream_net_timeout","15")) # timeout in seconds
useSSL = False
sslIgnoreCert = False
if defGet(os.environ,"fstream_ssl","0") == "1": useSSL = True
if defGet(os.environ,"fstream_ssl_ignoreCert","0") == "1": sslIgnoreCert = True
useSSL = defGet(os.environ,"fstream_ssl","0") == "1"
sslIgnoreCert = defGet(os.environ,"fstream_ssl_ignoreCert","0") == "1"
connection = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
connection.setsockopt(socket.SOL_SOCKET,socket.SO_REUSEADDR,1)

BIN
client/requirements.txt Normal file

Binary file not shown.