1
0
mirror of https://github.com/TheGreyDiamond/Enlight.git synced 2025-12-16 15:00:46 +01:00

Accept broadcast from every where

This commit is contained in:
TheGreyDiamond
2020-09-13 21:11:43 +02:00
parent d17cd6991b
commit 951b43306e
2 changed files with 5 additions and 2 deletions

3
.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
Code/__pycache__/session.cpython-36.pyc
*.pyc

View File

@@ -101,7 +101,7 @@ class enlightSession():
logging.info("Starting lighthouse thread")
self.__activ__ = True
self.__direct_socket__ = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
self.__direct_socket__.bind((self.__my_ip__, 5589))
self.__direct_socket__.bind(("", 5589))
self.__client_thread__ = threading.Thread(target=self.lighthouseMain, args=(), name="Lighthouse server")
self.__client_thread__.start()
self.__direct_thread__ = threading.Thread(target=self.lightSearcherDirectMain, args=(), name="Inbound session direct server")
@@ -254,4 +254,4 @@ def testOnlyServer():
testSession.stopSession()
if __name__ == "__main__":
testOnlyServer()
testOnlyServer()