mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2025-09-11 01:24:36 +00:00
change listen count, fix null
This commit is contained in:
parent
19e27a9617
commit
7eccc5ffa6
2 changed files with 4 additions and 4 deletions
|
@ -1073,7 +1073,7 @@ def RunServerMultiThreaded(addr, port, embedded_kailite = None, embedded_kcpp_do
|
|||
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
||||
sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
|
||||
sock.bind((addr, port))
|
||||
sock.listen(5)
|
||||
sock.listen(12)
|
||||
|
||||
class Thread(threading.Thread):
|
||||
def __init__(self, i):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue