1
0
mirror of https://github.com/mjg59/python-broadlink.git synced 2024-09-21 04:20:36 +02:00

Fix for [Errno 49] Can't assign requested address

Fixes #3 on macOS
This commit is contained in:
Kelvin Law 2016-11-02 20:34:46 -07:00
parent 925742768d
commit bd1c44488d

View File

@ -8,7 +8,7 @@ import socket
def discover(timeout=None):
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
s.connect(('8.8.8.8', 0)) # connecting to a UDP address doesn't send packets
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('.')
cs = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)