Spaces:
Configuration error
Configuration error
File size: 772 Bytes
c132e32 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
import socket
import random
class Dock:
def __init__(self) -> None:
self.num_ports = 20
self.port_range = (7860, 7880)
def portConnection(self, port : int):
s = socket.socket(
socket.AF_INET, socket.SOCK_STREAM)
result = s.connect_ex(("localhost", port))
if result == 0: return True
return False
def determinePort(self, max_trial_count=10):
trial_count = 0
while trial_count <= max_trial_count:
port=random.randint(*self.port_range)
if not self.portConnection(port):
return port
trial_count += 1
raise Exception('Exceeded Max Trial count without finding port')
|