mirror of
https://github.com/mjg59/python-broadlink.git
synced 2024-11-11 02:10:12 +01:00
cleaner local ip address lookup
This commit is contained in:
parent
a75f98720e
commit
790edb9a9d
@ -63,9 +63,7 @@ def gendevice(devtype, host, mac):
|
|||||||
|
|
||||||
def discover(timeout=None, local_ip_address=None):
|
def discover(timeout=None, local_ip_address=None):
|
||||||
if local_ip_address is None:
|
if local_ip_address is None:
|
||||||
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|
local_ip_address = socket.gethostbyname(socket.gethostname())
|
||||||
s.connect(('8.8.8.8', 53)) # connecting to a UDP address doesn't send packets
|
|
||||||
local_ip_address = s.getsockname()[0]
|
|
||||||
address = local_ip_address.split('.')
|
address = local_ip_address.split('.')
|
||||||
cs = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|
cs = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|
||||||
cs.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
|
cs.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
|
||||||
|
Loading…
Reference in New Issue
Block a user