diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-08-17 21:25:15 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-08-17 21:25:15 -0300 |
commit | 7891dcc025e314862ce6b31a9d9d4d4f6c51b558 (patch) | |
tree | c5efe7ea39c9f9b8954a3f64185992dd0860bde2 | |
parent | ac689bd103b5d8121b011ea9acc7786749ac9b78 (diff) | |
download | server-7891dcc025e314862ce6b31a9d9d4d4f6c51b558.tar.gz server-7891dcc025e314862ce6b31a9d9d4d4f6c51b558.tar.bz2 server-7891dcc025e314862ce6b31a9d9d4d4f6c51b558.tar.xz server-7891dcc025e314862ce6b31a9d9d4d4f6c51b558.zip |
Inform devs they need TWO repositories for local servers.
-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)"] |