From 494ade207cac42d88264ec66c069adcfcfea24d6 Mon Sep 17 00:00:00 2001 From: DcruBro Date: Fri, 7 Nov 2025 22:32:40 +0100 Subject: [PATCH] Update version --- src/client/main.cpp | 3 +++ src/server/main.cpp | 3 +++ 2 files changed, 6 insertions(+) diff --git a/src/client/main.cpp b/src/client/main.cpp index edbfc1b..856edbd 100644 --- a/src/client/main.cpp +++ b/src/client/main.cpp @@ -33,6 +33,9 @@ int main(int argc, char** argv) { PanicHandler::init(); try { + log("ColumnLynx Client, Version " + getVersion()); + log("This software is licensed under the GPLv3. See LICENSE for details."); + LibSodiumWrapper sodiumWrapper = LibSodiumWrapper(); std::array aesKey = {0}; // Defualt zeroed state until modified by handshake diff --git a/src/server/main.cpp b/src/server/main.cpp index 0102f8b..392a21b 100644 --- a/src/server/main.cpp +++ b/src/server/main.cpp @@ -22,6 +22,9 @@ int main(int argc, char** argv) { try { // TODO: Catch SIGINT and SIGTERM for graceful shutdown + log("ColumnLynx Server, Version " + getVersion()); + log("This software is licensed under the GPLv3. See LICENSE for details."); + // Generate a temporary keypair, replace with actual CA signed keys later (Note, these are stored in memory) LibSodiumWrapper sodiumWrapper = LibSodiumWrapper(); log("Server public key: " + bytesToHexString(sodiumWrapper.getPublicKey(), crypto_sign_PUBLICKEYBYTES));