diff options
-rw-r--r-- | README.md | 3 | ||||
-rw-r--r-- | protocol.py | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -43,6 +43,9 @@ update the relevant setting on server.py file. Remember: Clients may attempt SSL connection if they can download certificate.pem! +You should also set up the update server if you have not done so already. +(It is a different repository). + # Running the server Simply run server.py and vĂ³ila. diff --git a/protocol.py b/protocol.py index fe71290..fa9597a 100644 --- a/protocol.py +++ b/protocol.py @@ -72,7 +72,7 @@ def parse(packet, conn): if not data[0].isalnum(): return [PACKET_NACK, "Invalid packet (TOKENF)"] - # TODO: Now validate the token itself + # Now validate the token itself if data[0] != conn.token: return [PACKET_NACK, "Invalid packet (TOKENC)"] |