diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d786737 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ + +Code/__pycache__/session.cpython-36.pyc +*.pyc diff --git a/Code/session.py b/Code/session.py index dc14e7c..0c99e7d 100644 --- a/Code/session.py +++ b/Code/session.py @@ -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() \ No newline at end of file + testOnlyServer()