Files
Mattias Walström 357950b782 test: imfamy: Allow broken images
If ping succeed but fail to check if netconf port is open,
the testsystem will hang forever.

This will allow totally broken images to be loaded at the device.
2025-11-06 13:39:52 +01:00

9 lines
222 B
Python

import socket
def tcp_port_is_open(host, port, timeout=3):
try:
with socket.create_connection((host, port), timeout=timeout):
return True
except (socket.timeout, OSError):
return False