1
0
mirror of https://github.com/mjg59/python-broadlink.git synced 2024-11-22 07:00:12 +01:00

cleaner local ip address lookup (#244)

This commit is contained in:
AnilDaoud 2019-05-22 13:27:34 +08:00 committed by Daniel Høyer Iversen
parent a75f98720e
commit b8fdf337c9

View File

@ -63,9 +63,7 @@ def gendevice(devtype, host, mac):
def discover(timeout=None, local_ip_address=None):
if local_ip_address is None:
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
s.connect(('8.8.8.8', 53)) # connecting to a UDP address doesn't send packets
local_ip_address = s.getsockname()[0]
local_ip_address = socket.gethostbyname(socket.gethostname())
address = local_ip_address.split('.')
cs = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
cs.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)