summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-08-17 21:25:15 -0300
committerJesusaves <cpntb1@ymail.com>2021-08-17 21:25:15 -0300
commit7891dcc025e314862ce6b31a9d9d4d4f6c51b558 (patch)
treec5efe7ea39c9f9b8954a3f64185992dd0860bde2
parentac689bd103b5d8121b011ea9acc7786749ac9b78 (diff)
downloadserver-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.md3
-rw-r--r--protocol.py2
2 files changed, 4 insertions, 1 deletions
diff --git a/README.md b/README.md
index a486446..41575f9 100644
--- a/README.md
+++ b/README.md
@@ -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)"]