From a3a794303c7b15348909c412663eb7527974163e Mon Sep 17 00:00:00 2001 From: DarthArgus Date: Sat, 14 Jul 2018 17:54:07 -0500 Subject: [PATCH] add note --- .../ConnectionServer/src/shared/ClientConnection.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/engine/server/application/ConnectionServer/src/shared/ClientConnection.cpp b/engine/server/application/ConnectionServer/src/shared/ClientConnection.cpp index 073da87f..57b4dd9e 100755 --- a/engine/server/application/ConnectionServer/src/shared/ClientConnection.cpp +++ b/engine/server/application/ConnectionServer/src/shared/ClientConnection.cpp @@ -319,6 +319,9 @@ void ClientConnection::handleClientIdMessage(const ClientIdMsg &msg) { // add our data api.addJsonData("session_key", sess); + // TODO: if anyone is interested in using session authentication, without using + // SB's way of doing it, we could add a config flag for useSimple here for a simple post + // and simple string return ~Darth if (api.submit()) { bool status = api.getNullableValue("status");