openwebrx-clone/owrx/socket.py

11 lines
195 B
Python
Raw Normal View History

import socket
def getAvailablePort():
2022-07-27 20:38:06 +00:00
s = socket.socket(socket.AF_INET6, socket.SOCK_STREAM)
s.bind(("", 0))
s.listen(1)
port = s.getsockname()[1]
s.close()
return port