diff --git a/TabulaAuthenticationServer.aps b/TabulaAuthenticationServer.aps deleted file mode 100644 index 3d4ae4a..0000000 Binary files a/TabulaAuthenticationServer.aps and /dev/null differ diff --git a/TabulaAuthenticationServer.sln b/TabulaAuthenticationServer.sln new file mode 100644 index 0000000..853df5d --- /dev/null +++ b/TabulaAuthenticationServer.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.25420.1 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TabulaAuthenticationServer", "TabulaAuthenticationServer.vcxproj", "{EBBF13AF-6AB1-4508-9D04-0465CC236F1D}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x86 = Debug|x86 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {EBBF13AF-6AB1-4508-9D04-0465CC236F1D}.Debug|x86.ActiveCfg = Debug|Win32 + {EBBF13AF-6AB1-4508-9D04-0465CC236F1D}.Debug|x86.Build.0 = Debug|Win32 + {EBBF13AF-6AB1-4508-9D04-0465CC236F1D}.Release|x86.ActiveCfg = Release|Win32 + {EBBF13AF-6AB1-4508-9D04-0465CC236F1D}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/TabulaAuthenticationServer.vcxproj b/TabulaAuthenticationServer.vcxproj index 5edfa84..d519e68 100644 --- a/TabulaAuthenticationServer.vcxproj +++ b/TabulaAuthenticationServer.vcxproj @@ -1,5 +1,5 @@  - + Debug @@ -18,12 +18,12 @@ Application true - v120 + v140 Application false - v120 + v140 diff --git a/bin/AuthServer.exe b/bin/AuthServer.exe deleted file mode 100644 index d21fece..0000000 Binary files a/bin/AuthServer.exe and /dev/null differ diff --git a/bin/AuthServer.exe.intermediate.manifest b/bin/AuthServer.exe.intermediate.manifest deleted file mode 100644 index ecea6f7..0000000 --- a/bin/AuthServer.exe.intermediate.manifest +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/bin/auth b/bin/auth deleted file mode 100644 index effb65b..0000000 Binary files a/bin/auth and /dev/null differ diff --git a/bin/auth-d b/bin/auth-d deleted file mode 100644 index db3ddb3..0000000 Binary files a/bin/auth-d and /dev/null differ diff --git a/bin/auth.sql b/bin/auth.sql deleted file mode 100644 index 4ab892e..0000000 --- a/bin/auth.sql +++ /dev/null @@ -1,84 +0,0 @@ --- phpMyAdmin SQL Dump --- version 3.3.0 --- http://www.phpmyadmin.net --- --- Host: localhost --- Generation Time: May 01, 2011 at 06:24 PM --- Server version: 5.1.44 --- PHP Version: 5.2.13 - -SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; - - -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!40101 SET NAMES utf8 */; - --- --- Database: `test` --- - --- -------------------------------------------------------- - --- --- Table structure for table `game_servers` --- - -CREATE TABLE IF NOT EXISTS `game_servers` ( - `server_id` int(11) NOT NULL, - `host` varchar(25) NOT NULL, - `port` int(11) NOT NULL, - `age_limit` int(11) NOT NULL, - `pk_flag` int(11) NOT NULL, - `current_users` int(11) NOT NULL, - `max_users` int(11) NOT NULL, - `status` int(11) NOT NULL, - `check_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, - `static` int(11) NOT NULL, - PRIMARY KEY (`host`,`port`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - --- --- Dumping data for table `game_servers` --- - -INSERT INTO `game_servers` (`server_id`, `host`, `port`, `age_limit`, `pk_flag`, `current_users`, `max_users`, `status`, `check_time`, `static`) VALUES -(234, '127.0.0.1', 8001, 18, 1, 1, 100, 1, '2011-05-01 18:04:50', 1); - --- -------------------------------------------------------- - --- --- Table structure for table `sessions` --- - -CREATE TABLE IF NOT EXISTS `sessions` ( - `session_id1` bigint(20) NOT NULL, - `session_id2` bigint(20) NOT NULL, - `uid` bigint(20) NOT NULL, - `account` varchar(30) NOT NULL, - `checktime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - --- -------------------------------------------------------- - --- --- Table structure for table `users` --- - -CREATE TABLE IF NOT EXISTS `users` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `username` varchar(255) NOT NULL, - `password` varchar(255) NOT NULL, - `birthday` date NOT NULL, - `blocked` tinyint(1) NOT NULL, - `logged_in` tinyint(4) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ; - --- --- Dumping data for table `users` --- - -INSERT INTO `users` (`id`, `username`, `password`, `birthday`, `blocked`, `logged_in`) VALUES -(1, 'test', '098f6bcd4621d373cade4e832627b4f6', '2011-05-10', 0, 0); diff --git a/bin/config.ini b/bin/config.ini deleted file mode 100644 index 52ea723..0000000 --- a/bin/config.ini +++ /dev/null @@ -1,12 +0,0 @@ -[Auth Server Database] -host = localhost -port = 10061 -user = root -password = usbw -name = ir_authentication - -[Auth Server] -port = 2106 -maxclients = 25 -sessiontimeout = 50 -servertimeout = 120 diff --git a/bin/libmysql.dll b/bin/libmysql.dll deleted file mode 100644 index efb2940..0000000 Binary files a/bin/libmysql.dll and /dev/null differ diff --git a/bin/pthreadVC2.dll b/bin/pthreadVC2.dll deleted file mode 100644 index 93f562b..0000000 Binary files a/bin/pthreadVC2.dll and /dev/null differ diff --git a/build/Makefile b/build/Makefile deleted file mode 100644 index 76783d5..0000000 --- a/build/Makefile +++ /dev/null @@ -1,8 +0,0 @@ -.PHONY: clean All - -All: - @echo "----------Building project:[ auth - Release ]----------" - @$(MAKE) -f "auth.mk" -clean: - @echo "----------Cleaning project:[ auth - Release ]----------" - @$(MAKE) -f "auth.mk" clean diff --git a/build/auth.mk b/build/auth.mk deleted file mode 100644 index 664978f..0000000 --- a/build/auth.mk +++ /dev/null @@ -1,190 +0,0 @@ -## -## Auto Generated makefile by CodeLite IDE -## any manual changes will be erased -## -## Release -ProjectName :=auth -ConfigurationName :=Release -WorkspacePath := "/home/daisc/Authentication-Server-master/build" -ProjectPath := "/home/daisc/Authentication-Server-master/build" -IntermediateDirectory :=./Release -OutDir := $(IntermediateDirectory) -CurrentFileName := -CurrentFilePath := -CurrentFileFullPath := -User :=daisc -Date :=10/08/14 -CodeLitePath :="/home/daisc/.codelite" -LinkerName :=g++ -SharedObjectLinkerName :=g++ -shared -fPIC -ObjectSuffix :=.o -DependSuffix :=.o.d -PreprocessSuffix :=.o.i -DebugSwitch :=-gstab -IncludeSwitch :=-I -LibrarySwitch :=-l -OutputSwitch :=-o -LibraryPathSwitch :=-L -PreprocessorSwitch :=-D -SourceSwitch :=-c -OutputFile :=../bin/$(ProjectName) -Preprocessors :=$(PreprocessorSwitch)NDEBUG -ObjectSwitch :=-o -ArchiveOutputSwitch := -PreprocessOnlySwitch :=-E -ObjectsFileList :="auth.txt" -PCHCompileFlags := -MakeDirCommand :=mkdir -p -LinkOptions := -IncludePath := $(IncludeSwitch). $(IncludeSwitch). $(IncludeSwitch)/usr/include/mysql $(IncludeSwitch)../libs -IncludePCH := -RcIncludePath := -Libs := $(LibrarySwitch)mysqlclient $(LibrarySwitch)pthread $(LibrarySwitch)z $(LibrarySwitch)m $(LibrarySwitch)rt $(LibrarySwitch)dl -ArLibs := "mysqlclient" "pthread" "z" "m" "rt" "dl" -LibPath := $(LibraryPathSwitch). $(LibraryPathSwitch)/usr/lib/i386-linux-gnu - -## -## Common variables -## AR, CXX, CC, AS, CXXFLAGS and CFLAGS can be overriden using an environment variables -## -AR := ar rcus -CXX := g++ -CC := gcc -CXXFLAGS := -O2 -Wall -DBIG_JOINS=1 -fno-strict-aliasing $(Preprocessors) -CFLAGS := -O2 -Wall -DBIG_JOINS=1 -fno-strict-aliasing $(Preprocessors) -ASFLAGS := -AS := as - - -## -## User defined environment variables -## -CodeLiteDir:=/usr/share/codelite -Objects0=$(IntermediateDirectory)/src_CryptManager.cpp$(ObjectSuffix) $(IntermediateDirectory)/src_DBManager.cpp$(ObjectSuffix) $(IntermediateDirectory)/src_INIParser.cpp$(ObjectSuffix) $(IntermediateDirectory)/src_MD5.cpp$(ObjectSuffix) $(IntermediateDirectory)/src_MessageHandler.cpp$(ObjectSuffix) $(IntermediateDirectory)/src_NetManager.cpp$(ObjectSuffix) $(IntermediateDirectory)/src_NetUtils.cpp$(ObjectSuffix) $(IntermediateDirectory)/src_SessionManager.cpp$(ObjectSuffix) $(IntermediateDirectory)/src_ThreadsUtils.cpp$(ObjectSuffix) $(IntermediateDirectory)/src_main.cpp$(ObjectSuffix) \ - $(IntermediateDirectory)/minINI_minIni.c$(ObjectSuffix) - - - -Objects=$(Objects0) - -## -## Main Build Targets -## -.PHONY: all clean PreBuild PrePreBuild PostBuild -all: $(OutputFile) - -$(OutputFile): $(IntermediateDirectory)/.d $(Objects) - @$(MakeDirCommand) $(@D) - @echo "" > $(IntermediateDirectory)/.d - @echo $(Objects0) > $(ObjectsFileList) - $(LinkerName) $(OutputSwitch)$(OutputFile) @$(ObjectsFileList) $(LibPath) $(Libs) $(LinkOptions) - -$(IntermediateDirectory)/.d: - @test -d ./Release || $(MakeDirCommand) ./Release - -PreBuild: - - -## -## Objects -## -$(IntermediateDirectory)/src_CryptManager.cpp$(ObjectSuffix): ../src/CryptManager.cpp $(IntermediateDirectory)/src_CryptManager.cpp$(DependSuffix) - $(CXX) $(IncludePCH) $(SourceSwitch) "/home/daisc/Authentication-Server-master/src/CryptManager.cpp" $(CXXFLAGS) $(ObjectSwitch)$(IntermediateDirectory)/src_CryptManager.cpp$(ObjectSuffix) $(IncludePath) -$(IntermediateDirectory)/src_CryptManager.cpp$(DependSuffix): ../src/CryptManager.cpp - @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) -MG -MP -MT$(IntermediateDirectory)/src_CryptManager.cpp$(ObjectSuffix) -MF$(IntermediateDirectory)/src_CryptManager.cpp$(DependSuffix) -MM "../src/CryptManager.cpp" - -$(IntermediateDirectory)/src_CryptManager.cpp$(PreprocessSuffix): ../src/CryptManager.cpp - @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) $(PreprocessOnlySwitch) $(OutputSwitch) $(IntermediateDirectory)/src_CryptManager.cpp$(PreprocessSuffix) "../src/CryptManager.cpp" - -$(IntermediateDirectory)/src_DBManager.cpp$(ObjectSuffix): ../src/DBManager.cpp $(IntermediateDirectory)/src_DBManager.cpp$(DependSuffix) - $(CXX) $(IncludePCH) $(SourceSwitch) "/home/daisc/Authentication-Server-master/src/DBManager.cpp" $(CXXFLAGS) $(ObjectSwitch)$(IntermediateDirectory)/src_DBManager.cpp$(ObjectSuffix) $(IncludePath) -$(IntermediateDirectory)/src_DBManager.cpp$(DependSuffix): ../src/DBManager.cpp - @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) -MG -MP -MT$(IntermediateDirectory)/src_DBManager.cpp$(ObjectSuffix) -MF$(IntermediateDirectory)/src_DBManager.cpp$(DependSuffix) -MM "../src/DBManager.cpp" - -$(IntermediateDirectory)/src_DBManager.cpp$(PreprocessSuffix): ../src/DBManager.cpp - @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) $(PreprocessOnlySwitch) $(OutputSwitch) $(IntermediateDirectory)/src_DBManager.cpp$(PreprocessSuffix) "../src/DBManager.cpp" - -$(IntermediateDirectory)/src_INIParser.cpp$(ObjectSuffix): ../src/INIParser.cpp $(IntermediateDirectory)/src_INIParser.cpp$(DependSuffix) - $(CXX) $(IncludePCH) $(SourceSwitch) "/home/daisc/Authentication-Server-master/src/INIParser.cpp" $(CXXFLAGS) $(ObjectSwitch)$(IntermediateDirectory)/src_INIParser.cpp$(ObjectSuffix) $(IncludePath) -$(IntermediateDirectory)/src_INIParser.cpp$(DependSuffix): ../src/INIParser.cpp - @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) -MG -MP -MT$(IntermediateDirectory)/src_INIParser.cpp$(ObjectSuffix) -MF$(IntermediateDirectory)/src_INIParser.cpp$(DependSuffix) -MM "../src/INIParser.cpp" - -$(IntermediateDirectory)/src_INIParser.cpp$(PreprocessSuffix): ../src/INIParser.cpp - @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) $(PreprocessOnlySwitch) $(OutputSwitch) $(IntermediateDirectory)/src_INIParser.cpp$(PreprocessSuffix) "../src/INIParser.cpp" - -$(IntermediateDirectory)/src_MD5.cpp$(ObjectSuffix): ../src/MD5.cpp $(IntermediateDirectory)/src_MD5.cpp$(DependSuffix) - $(CXX) $(IncludePCH) $(SourceSwitch) "/home/daisc/Authentication-Server-master/src/MD5.cpp" $(CXXFLAGS) $(ObjectSwitch)$(IntermediateDirectory)/src_MD5.cpp$(ObjectSuffix) $(IncludePath) -$(IntermediateDirectory)/src_MD5.cpp$(DependSuffix): ../src/MD5.cpp - @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) -MG -MP -MT$(IntermediateDirectory)/src_MD5.cpp$(ObjectSuffix) -MF$(IntermediateDirectory)/src_MD5.cpp$(DependSuffix) -MM "../src/MD5.cpp" - -$(IntermediateDirectory)/src_MD5.cpp$(PreprocessSuffix): ../src/MD5.cpp - @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) $(PreprocessOnlySwitch) $(OutputSwitch) $(IntermediateDirectory)/src_MD5.cpp$(PreprocessSuffix) "../src/MD5.cpp" - -$(IntermediateDirectory)/src_MessageHandler.cpp$(ObjectSuffix): ../src/MessageHandler.cpp $(IntermediateDirectory)/src_MessageHandler.cpp$(DependSuffix) - $(CXX) $(IncludePCH) $(SourceSwitch) "/home/daisc/Authentication-Server-master/src/MessageHandler.cpp" $(CXXFLAGS) $(ObjectSwitch)$(IntermediateDirectory)/src_MessageHandler.cpp$(ObjectSuffix) $(IncludePath) -$(IntermediateDirectory)/src_MessageHandler.cpp$(DependSuffix): ../src/MessageHandler.cpp - @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) -MG -MP -MT$(IntermediateDirectory)/src_MessageHandler.cpp$(ObjectSuffix) -MF$(IntermediateDirectory)/src_MessageHandler.cpp$(DependSuffix) -MM "../src/MessageHandler.cpp" - -$(IntermediateDirectory)/src_MessageHandler.cpp$(PreprocessSuffix): ../src/MessageHandler.cpp - @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) $(PreprocessOnlySwitch) $(OutputSwitch) $(IntermediateDirectory)/src_MessageHandler.cpp$(PreprocessSuffix) "../src/MessageHandler.cpp" - -$(IntermediateDirectory)/src_NetManager.cpp$(ObjectSuffix): ../src/NetManager.cpp $(IntermediateDirectory)/src_NetManager.cpp$(DependSuffix) - $(CXX) $(IncludePCH) $(SourceSwitch) "/home/daisc/Authentication-Server-master/src/NetManager.cpp" $(CXXFLAGS) $(ObjectSwitch)$(IntermediateDirectory)/src_NetManager.cpp$(ObjectSuffix) $(IncludePath) -$(IntermediateDirectory)/src_NetManager.cpp$(DependSuffix): ../src/NetManager.cpp - @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) -MG -MP -MT$(IntermediateDirectory)/src_NetManager.cpp$(ObjectSuffix) -MF$(IntermediateDirectory)/src_NetManager.cpp$(DependSuffix) -MM "../src/NetManager.cpp" - -$(IntermediateDirectory)/src_NetManager.cpp$(PreprocessSuffix): ../src/NetManager.cpp - @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) $(PreprocessOnlySwitch) $(OutputSwitch) $(IntermediateDirectory)/src_NetManager.cpp$(PreprocessSuffix) "../src/NetManager.cpp" - -$(IntermediateDirectory)/src_NetUtils.cpp$(ObjectSuffix): ../src/NetUtils.cpp $(IntermediateDirectory)/src_NetUtils.cpp$(DependSuffix) - $(CXX) $(IncludePCH) $(SourceSwitch) "/home/daisc/Authentication-Server-master/src/NetUtils.cpp" $(CXXFLAGS) $(ObjectSwitch)$(IntermediateDirectory)/src_NetUtils.cpp$(ObjectSuffix) $(IncludePath) -$(IntermediateDirectory)/src_NetUtils.cpp$(DependSuffix): ../src/NetUtils.cpp - @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) -MG -MP -MT$(IntermediateDirectory)/src_NetUtils.cpp$(ObjectSuffix) -MF$(IntermediateDirectory)/src_NetUtils.cpp$(DependSuffix) -MM "../src/NetUtils.cpp" - -$(IntermediateDirectory)/src_NetUtils.cpp$(PreprocessSuffix): ../src/NetUtils.cpp - @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) $(PreprocessOnlySwitch) $(OutputSwitch) $(IntermediateDirectory)/src_NetUtils.cpp$(PreprocessSuffix) "../src/NetUtils.cpp" - -$(IntermediateDirectory)/src_SessionManager.cpp$(ObjectSuffix): ../src/SessionManager.cpp $(IntermediateDirectory)/src_SessionManager.cpp$(DependSuffix) - $(CXX) $(IncludePCH) $(SourceSwitch) "/home/daisc/Authentication-Server-master/src/SessionManager.cpp" $(CXXFLAGS) $(ObjectSwitch)$(IntermediateDirectory)/src_SessionManager.cpp$(ObjectSuffix) $(IncludePath) -$(IntermediateDirectory)/src_SessionManager.cpp$(DependSuffix): ../src/SessionManager.cpp - @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) -MG -MP -MT$(IntermediateDirectory)/src_SessionManager.cpp$(ObjectSuffix) -MF$(IntermediateDirectory)/src_SessionManager.cpp$(DependSuffix) -MM "../src/SessionManager.cpp" - -$(IntermediateDirectory)/src_SessionManager.cpp$(PreprocessSuffix): ../src/SessionManager.cpp - @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) $(PreprocessOnlySwitch) $(OutputSwitch) $(IntermediateDirectory)/src_SessionManager.cpp$(PreprocessSuffix) "../src/SessionManager.cpp" - -$(IntermediateDirectory)/src_ThreadsUtils.cpp$(ObjectSuffix): ../src/ThreadsUtils.cpp $(IntermediateDirectory)/src_ThreadsUtils.cpp$(DependSuffix) - $(CXX) $(IncludePCH) $(SourceSwitch) "/home/daisc/Authentication-Server-master/src/ThreadsUtils.cpp" $(CXXFLAGS) $(ObjectSwitch)$(IntermediateDirectory)/src_ThreadsUtils.cpp$(ObjectSuffix) $(IncludePath) -$(IntermediateDirectory)/src_ThreadsUtils.cpp$(DependSuffix): ../src/ThreadsUtils.cpp - @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) -MG -MP -MT$(IntermediateDirectory)/src_ThreadsUtils.cpp$(ObjectSuffix) -MF$(IntermediateDirectory)/src_ThreadsUtils.cpp$(DependSuffix) -MM "../src/ThreadsUtils.cpp" - -$(IntermediateDirectory)/src_ThreadsUtils.cpp$(PreprocessSuffix): ../src/ThreadsUtils.cpp - @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) $(PreprocessOnlySwitch) $(OutputSwitch) $(IntermediateDirectory)/src_ThreadsUtils.cpp$(PreprocessSuffix) "../src/ThreadsUtils.cpp" - -$(IntermediateDirectory)/src_main.cpp$(ObjectSuffix): ../src/main.cpp $(IntermediateDirectory)/src_main.cpp$(DependSuffix) - $(CXX) $(IncludePCH) $(SourceSwitch) "/home/daisc/Authentication-Server-master/src/main.cpp" $(CXXFLAGS) $(ObjectSwitch)$(IntermediateDirectory)/src_main.cpp$(ObjectSuffix) $(IncludePath) -$(IntermediateDirectory)/src_main.cpp$(DependSuffix): ../src/main.cpp - @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) -MG -MP -MT$(IntermediateDirectory)/src_main.cpp$(ObjectSuffix) -MF$(IntermediateDirectory)/src_main.cpp$(DependSuffix) -MM "../src/main.cpp" - -$(IntermediateDirectory)/src_main.cpp$(PreprocessSuffix): ../src/main.cpp - @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) $(PreprocessOnlySwitch) $(OutputSwitch) $(IntermediateDirectory)/src_main.cpp$(PreprocessSuffix) "../src/main.cpp" - -$(IntermediateDirectory)/minINI_minIni.c$(ObjectSuffix): ../libs/minINI/minIni.c $(IntermediateDirectory)/minINI_minIni.c$(DependSuffix) - $(CC) $(SourceSwitch) "/home/daisc/Authentication-Server-master/libs/minINI/minIni.c" $(CFLAGS) $(ObjectSwitch)$(IntermediateDirectory)/minINI_minIni.c$(ObjectSuffix) $(IncludePath) -$(IntermediateDirectory)/minINI_minIni.c$(DependSuffix): ../libs/minINI/minIni.c - @$(CC) $(CFLAGS) $(IncludePath) -MG -MP -MT$(IntermediateDirectory)/minINI_minIni.c$(ObjectSuffix) -MF$(IntermediateDirectory)/minINI_minIni.c$(DependSuffix) -MM "../libs/minINI/minIni.c" - -$(IntermediateDirectory)/minINI_minIni.c$(PreprocessSuffix): ../libs/minINI/minIni.c - @$(CC) $(CFLAGS) $(IncludePath) $(PreprocessOnlySwitch) $(OutputSwitch) $(IntermediateDirectory)/minINI_minIni.c$(PreprocessSuffix) "../libs/minINI/minIni.c" - - --include $(IntermediateDirectory)/*$(DependSuffix) -## -## Clean -## -clean: - $(RM) ./Release/*$(ObjectSuffix) - $(RM) ./Release/*$(DependSuffix) - $(RM) $(OutputFile) - $(RM) ".build-release/auth" - - diff --git a/build/auth.project b/build/auth.project deleted file mode 100644 index cac40ff..0000000 --- a/build/auth.project +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - None - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - None - - - - - - - - - - - - - - - diff --git a/build/auth.txt b/build/auth.txt deleted file mode 100644 index 6574184..0000000 --- a/build/auth.txt +++ /dev/null @@ -1 +0,0 @@ -./Release/src_CryptManager.cpp.o ./Release/src_DBManager.cpp.o ./Release/src_INIParser.cpp.o ./Release/src_MD5.cpp.o ./Release/src_MessageHandler.cpp.o ./Release/src_NetManager.cpp.o ./Release/src_NetUtils.cpp.o ./Release/src_SessionManager.cpp.o ./Release/src_ThreadsUtils.cpp.o ./Release/src_main.cpp.o ./Release/minINI_minIni.c.o diff --git a/build/auth.workspace b/build/auth.workspace deleted file mode 100644 index 0129a35..0000000 --- a/build/auth.workspace +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/config.ini b/config.ini index 67ebd5b..4308605 100644 --- a/config.ini +++ b/config.ini @@ -1,9 +1,9 @@ [Auth Server Database] host = localhost port = 3306 -name = tr_auth -user = user -password = pass +name = ir_auth +user = infinite +password = rasa [Auth Server] port = 2106 diff --git a/libs/pthreads/pthread.h b/libs/pthreads/pthread.h index f3d2dac..5160130 100644 --- a/libs/pthreads/pthread.h +++ b/libs/pthreads/pthread.h @@ -302,14 +302,6 @@ enum { #endif #endif -#ifndef HAVE_STRUCT_TIMESPEC -#define HAVE_STRUCT_TIMESPEC 1 -struct timespec { - long tv_sec; - long tv_nsec; -}; -#endif /* HAVE_STRUCT_TIMESPEC */ - #ifndef SIG_BLOCK #define SIG_BLOCK 0 #endif /* SIG_BLOCK */