fix: listen broadcast UDP at 0.0.0.0
This commit is contained in:
parent
061b0e504e
commit
3d1bd08f72
@ -121,7 +121,7 @@ class ServiceExplorationModule():
|
|||||||
self.node_manager = node_manager
|
self.node_manager = node_manager
|
||||||
|
|
||||||
def listen(self):
|
def listen(self):
|
||||||
self.sock.bind((self.host, self.port))
|
self.sock.bind(('0.0.0.0', self.port))
|
||||||
print(f"Exploration Server(UDP) listening on {self.host}:{self.port}...")
|
print(f"Exploration Server(UDP) listening on {self.host}:{self.port}...")
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user