diff --git a/server/NetGenieSrv.py b/server/NetGenieSrv.py index 24aa501..3520931 100644 --- a/server/NetGenieSrv.py +++ b/server/NetGenieSrv.py @@ -7,7 +7,7 @@ def init_socket(): # Create a TCP/IP socket sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) - # Bind the socket to the port + # Bind the socket to the port 8000 server_address = ('localhost', 8000) sock.bind(server_address)