Limit number of connections
This commit is contained in:
parent
0c5c58e126
commit
1146100168
|
@ -28,8 +28,11 @@ class Listener(threading.Thread):
|
|||
conn, addr = self.s.accept()
|
||||
logging.info('Incoming connection from: {}:{}'.format(addr[0], addr[1]))
|
||||
with shared.connections_lock:
|
||||
c = Connection(addr[0], addr[1], conn)
|
||||
c.start()
|
||||
shared.connections.add(c)
|
||||
if len(shared.connections) > shared.connection_limit:
|
||||
conn.close()
|
||||
else:
|
||||
c = Connection(addr[0], addr[1], conn)
|
||||
c.start()
|
||||
shared.connections.add(c)
|
||||
except socket.timeout:
|
||||
pass
|
||||
|
|
|
@ -42,6 +42,7 @@ node_pool = set()
|
|||
unchecked_node_pool = set()
|
||||
|
||||
outgoing_connections = 8
|
||||
connection_limit = 150
|
||||
|
||||
objects = {}
|
||||
objects_lock = threading.Lock()
|
||||
|
|
Loading…
Reference in New Issue
Block a user