├── README.md └── Service ├── .vscode └── c_cpp_properties.json ├── CMakeLists.txt ├── bin ├── ChatClient └── ChatServer ├── build ├── CMakeCache.txt ├── CMakeFiles │ ├── 3.10.2 │ │ ├── CMakeCCompiler.cmake │ │ ├── CMakeCXXCompiler.cmake │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ ├── CMakeSystem.cmake │ │ ├── CompilerIdC │ │ │ ├── CMakeCCompilerId.c │ │ │ └── a.out │ │ └── CompilerIdCXX │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ └── a.out │ ├── CMakeDirectoryInformation.cmake │ ├── CMakeOutput.log │ ├── Makefile.cmake │ ├── Makefile2 │ ├── TargetDirectories.txt │ ├── cmake.check_cache │ ├── feature_tests.bin │ ├── feature_tests.c │ ├── feature_tests.cxx │ └── progress.marks ├── Makefile ├── cmake_install.cmake ├── compile_commands.json └── src │ ├── CMakeFiles │ ├── CMakeDirectoryInformation.cmake │ └── progress.marks │ ├── Makefile │ ├── client │ ├── CMakeFiles │ │ ├── CMakeDirectoryInformation.cmake │ │ ├── ChatClient.dir │ │ │ ├── CXX.includecache │ │ │ ├── DependInfo.cmake │ │ │ ├── build.make │ │ │ ├── cmake_clean.cmake │ │ │ ├── depend.internal │ │ │ ├── depend.make │ │ │ ├── flags.make │ │ │ ├── link.txt │ │ │ ├── main.cpp.o │ │ │ └── progress.make │ │ └── progress.marks │ ├── Makefile │ └── cmake_install.cmake │ ├── cmake_install.cmake │ └── server │ ├── CMakeFiles │ ├── CMakeDirectoryInformation.cmake │ ├── ChatServer.dir │ │ ├── CXX.includecache │ │ ├── ChatServer.cpp.o │ │ ├── ChatService.cpp.o │ │ ├── DependInfo.cmake │ │ ├── build.make │ │ ├── cmake_clean.cmake │ │ ├── depend.internal │ │ ├── depend.make │ │ ├── flags.make │ │ ├── link.txt │ │ ├── main.cpp.o │ │ ├── model │ │ │ ├── FriendModel.cpp.o │ │ │ ├── GroupModel.cpp.o │ │ │ ├── OfflineMessageModel.cpp.o │ │ │ └── UserModel.cpp.o │ │ ├── progress.make │ │ └── redis │ │ │ └── Redis.cpp.o │ └── progress.marks │ ├── Makefile │ └── cmake_install.cmake ├── include ├── public.hpp └── server │ ├── ChatServer.hpp │ ├── ChatService.hpp │ ├── db │ └── MySQL.hpp │ ├── model │ ├── FriendModel.hpp │ ├── Group.hpp │ ├── GroupModel.hpp │ ├── GroupUser.hpp │ ├── OfflineMessageModel.hpp │ ├── User.hpp │ └── UserModel.hpp │ └── redis │ └── Redis.hpp ├── other ├── CMakeLists.txt ├── DataBase.h └── muduo_server.cpp ├── src ├── CMakeLists.txt ├── client │ ├── CMakeLists.txt │ └── main.cpp └── server │ ├── CMakeLists.txt │ ├── ChatServer.cpp │ ├── ChatService.cpp │ ├── main.cpp │ ├── model │ ├── FriendModel.cpp │ ├── GroupModel.cpp │ ├── OfflineMessageModel.cpp │ └── UserModel.cpp │ └── redis │ └── Redis.cpp └── thirdparty └── json.hpp /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/README.md -------------------------------------------------------------------------------- /Service/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Service/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/CMakeLists.txt -------------------------------------------------------------------------------- /Service/bin/ChatClient: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/bin/ChatClient -------------------------------------------------------------------------------- /Service/bin/ChatServer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/bin/ChatServer -------------------------------------------------------------------------------- /Service/build/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/CMakeCache.txt -------------------------------------------------------------------------------- /Service/build/CMakeFiles/3.10.2/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/CMakeFiles/3.10.2/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /Service/build/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /Service/build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /Service/build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /Service/build/CMakeFiles/3.10.2/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/CMakeFiles/3.10.2/CMakeSystem.cmake -------------------------------------------------------------------------------- /Service/build/CMakeFiles/3.10.2/CompilerIdC/CMakeCCompilerId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/CMakeFiles/3.10.2/CompilerIdC/CMakeCCompilerId.c -------------------------------------------------------------------------------- /Service/build/CMakeFiles/3.10.2/CompilerIdC/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/CMakeFiles/3.10.2/CompilerIdC/a.out -------------------------------------------------------------------------------- /Service/build/CMakeFiles/3.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/CMakeFiles/3.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp -------------------------------------------------------------------------------- /Service/build/CMakeFiles/3.10.2/CompilerIdCXX/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/CMakeFiles/3.10.2/CompilerIdCXX/a.out -------------------------------------------------------------------------------- /Service/build/CMakeFiles/CMakeDirectoryInformation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/CMakeFiles/CMakeDirectoryInformation.cmake -------------------------------------------------------------------------------- /Service/build/CMakeFiles/CMakeOutput.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/CMakeFiles/CMakeOutput.log -------------------------------------------------------------------------------- /Service/build/CMakeFiles/Makefile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/CMakeFiles/Makefile.cmake -------------------------------------------------------------------------------- /Service/build/CMakeFiles/Makefile2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/CMakeFiles/Makefile2 -------------------------------------------------------------------------------- /Service/build/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /Service/build/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /Service/build/CMakeFiles/feature_tests.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/CMakeFiles/feature_tests.bin -------------------------------------------------------------------------------- /Service/build/CMakeFiles/feature_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/CMakeFiles/feature_tests.c -------------------------------------------------------------------------------- /Service/build/CMakeFiles/feature_tests.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/CMakeFiles/feature_tests.cxx -------------------------------------------------------------------------------- /Service/build/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /Service/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/Makefile -------------------------------------------------------------------------------- /Service/build/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/cmake_install.cmake -------------------------------------------------------------------------------- /Service/build/compile_commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/compile_commands.json -------------------------------------------------------------------------------- /Service/build/src/CMakeFiles/CMakeDirectoryInformation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/src/CMakeFiles/CMakeDirectoryInformation.cmake -------------------------------------------------------------------------------- /Service/build/src/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /Service/build/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/src/Makefile -------------------------------------------------------------------------------- /Service/build/src/client/CMakeFiles/CMakeDirectoryInformation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/src/client/CMakeFiles/CMakeDirectoryInformation.cmake -------------------------------------------------------------------------------- /Service/build/src/client/CMakeFiles/ChatClient.dir/CXX.includecache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/src/client/CMakeFiles/ChatClient.dir/CXX.includecache -------------------------------------------------------------------------------- /Service/build/src/client/CMakeFiles/ChatClient.dir/DependInfo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/src/client/CMakeFiles/ChatClient.dir/DependInfo.cmake -------------------------------------------------------------------------------- /Service/build/src/client/CMakeFiles/ChatClient.dir/build.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/src/client/CMakeFiles/ChatClient.dir/build.make -------------------------------------------------------------------------------- /Service/build/src/client/CMakeFiles/ChatClient.dir/cmake_clean.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/src/client/CMakeFiles/ChatClient.dir/cmake_clean.cmake -------------------------------------------------------------------------------- /Service/build/src/client/CMakeFiles/ChatClient.dir/depend.internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/src/client/CMakeFiles/ChatClient.dir/depend.internal -------------------------------------------------------------------------------- /Service/build/src/client/CMakeFiles/ChatClient.dir/depend.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/src/client/CMakeFiles/ChatClient.dir/depend.make -------------------------------------------------------------------------------- /Service/build/src/client/CMakeFiles/ChatClient.dir/flags.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/src/client/CMakeFiles/ChatClient.dir/flags.make -------------------------------------------------------------------------------- /Service/build/src/client/CMakeFiles/ChatClient.dir/link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/src/client/CMakeFiles/ChatClient.dir/link.txt -------------------------------------------------------------------------------- /Service/build/src/client/CMakeFiles/ChatClient.dir/main.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/src/client/CMakeFiles/ChatClient.dir/main.cpp.o -------------------------------------------------------------------------------- /Service/build/src/client/CMakeFiles/ChatClient.dir/progress.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/src/client/CMakeFiles/ChatClient.dir/progress.make -------------------------------------------------------------------------------- /Service/build/src/client/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /Service/build/src/client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/src/client/Makefile -------------------------------------------------------------------------------- /Service/build/src/client/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/src/client/cmake_install.cmake -------------------------------------------------------------------------------- /Service/build/src/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/src/cmake_install.cmake -------------------------------------------------------------------------------- /Service/build/src/server/CMakeFiles/CMakeDirectoryInformation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/src/server/CMakeFiles/CMakeDirectoryInformation.cmake -------------------------------------------------------------------------------- /Service/build/src/server/CMakeFiles/ChatServer.dir/CXX.includecache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/src/server/CMakeFiles/ChatServer.dir/CXX.includecache -------------------------------------------------------------------------------- /Service/build/src/server/CMakeFiles/ChatServer.dir/ChatServer.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/src/server/CMakeFiles/ChatServer.dir/ChatServer.cpp.o -------------------------------------------------------------------------------- /Service/build/src/server/CMakeFiles/ChatServer.dir/ChatService.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/src/server/CMakeFiles/ChatServer.dir/ChatService.cpp.o -------------------------------------------------------------------------------- /Service/build/src/server/CMakeFiles/ChatServer.dir/DependInfo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/src/server/CMakeFiles/ChatServer.dir/DependInfo.cmake -------------------------------------------------------------------------------- /Service/build/src/server/CMakeFiles/ChatServer.dir/build.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/src/server/CMakeFiles/ChatServer.dir/build.make -------------------------------------------------------------------------------- /Service/build/src/server/CMakeFiles/ChatServer.dir/cmake_clean.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/src/server/CMakeFiles/ChatServer.dir/cmake_clean.cmake -------------------------------------------------------------------------------- /Service/build/src/server/CMakeFiles/ChatServer.dir/depend.internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/src/server/CMakeFiles/ChatServer.dir/depend.internal -------------------------------------------------------------------------------- /Service/build/src/server/CMakeFiles/ChatServer.dir/depend.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/src/server/CMakeFiles/ChatServer.dir/depend.make -------------------------------------------------------------------------------- /Service/build/src/server/CMakeFiles/ChatServer.dir/flags.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/src/server/CMakeFiles/ChatServer.dir/flags.make -------------------------------------------------------------------------------- /Service/build/src/server/CMakeFiles/ChatServer.dir/link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/src/server/CMakeFiles/ChatServer.dir/link.txt -------------------------------------------------------------------------------- /Service/build/src/server/CMakeFiles/ChatServer.dir/main.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/src/server/CMakeFiles/ChatServer.dir/main.cpp.o -------------------------------------------------------------------------------- /Service/build/src/server/CMakeFiles/ChatServer.dir/model/FriendModel.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/src/server/CMakeFiles/ChatServer.dir/model/FriendModel.cpp.o -------------------------------------------------------------------------------- /Service/build/src/server/CMakeFiles/ChatServer.dir/model/GroupModel.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/src/server/CMakeFiles/ChatServer.dir/model/GroupModel.cpp.o -------------------------------------------------------------------------------- /Service/build/src/server/CMakeFiles/ChatServer.dir/model/OfflineMessageModel.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/src/server/CMakeFiles/ChatServer.dir/model/OfflineMessageModel.cpp.o -------------------------------------------------------------------------------- /Service/build/src/server/CMakeFiles/ChatServer.dir/model/UserModel.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/src/server/CMakeFiles/ChatServer.dir/model/UserModel.cpp.o -------------------------------------------------------------------------------- /Service/build/src/server/CMakeFiles/ChatServer.dir/progress.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/src/server/CMakeFiles/ChatServer.dir/progress.make -------------------------------------------------------------------------------- /Service/build/src/server/CMakeFiles/ChatServer.dir/redis/Redis.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/src/server/CMakeFiles/ChatServer.dir/redis/Redis.cpp.o -------------------------------------------------------------------------------- /Service/build/src/server/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /Service/build/src/server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/src/server/Makefile -------------------------------------------------------------------------------- /Service/build/src/server/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/build/src/server/cmake_install.cmake -------------------------------------------------------------------------------- /Service/include/public.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/include/public.hpp -------------------------------------------------------------------------------- /Service/include/server/ChatServer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/include/server/ChatServer.hpp -------------------------------------------------------------------------------- /Service/include/server/ChatService.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/include/server/ChatService.hpp -------------------------------------------------------------------------------- /Service/include/server/db/MySQL.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/include/server/db/MySQL.hpp -------------------------------------------------------------------------------- /Service/include/server/model/FriendModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/include/server/model/FriendModel.hpp -------------------------------------------------------------------------------- /Service/include/server/model/Group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/include/server/model/Group.hpp -------------------------------------------------------------------------------- /Service/include/server/model/GroupModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/include/server/model/GroupModel.hpp -------------------------------------------------------------------------------- /Service/include/server/model/GroupUser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/include/server/model/GroupUser.hpp -------------------------------------------------------------------------------- /Service/include/server/model/OfflineMessageModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/include/server/model/OfflineMessageModel.hpp -------------------------------------------------------------------------------- /Service/include/server/model/User.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/include/server/model/User.hpp -------------------------------------------------------------------------------- /Service/include/server/model/UserModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/include/server/model/UserModel.hpp -------------------------------------------------------------------------------- /Service/include/server/redis/Redis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/include/server/redis/Redis.hpp -------------------------------------------------------------------------------- /Service/other/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/other/CMakeLists.txt -------------------------------------------------------------------------------- /Service/other/DataBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/other/DataBase.h -------------------------------------------------------------------------------- /Service/other/muduo_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/other/muduo_server.cpp -------------------------------------------------------------------------------- /Service/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/src/CMakeLists.txt -------------------------------------------------------------------------------- /Service/src/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/src/client/CMakeLists.txt -------------------------------------------------------------------------------- /Service/src/client/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/src/client/main.cpp -------------------------------------------------------------------------------- /Service/src/server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/src/server/CMakeLists.txt -------------------------------------------------------------------------------- /Service/src/server/ChatServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/src/server/ChatServer.cpp -------------------------------------------------------------------------------- /Service/src/server/ChatService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/src/server/ChatService.cpp -------------------------------------------------------------------------------- /Service/src/server/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/src/server/main.cpp -------------------------------------------------------------------------------- /Service/src/server/model/FriendModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/src/server/model/FriendModel.cpp -------------------------------------------------------------------------------- /Service/src/server/model/GroupModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/src/server/model/GroupModel.cpp -------------------------------------------------------------------------------- /Service/src/server/model/OfflineMessageModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/src/server/model/OfflineMessageModel.cpp -------------------------------------------------------------------------------- /Service/src/server/model/UserModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/src/server/model/UserModel.cpp -------------------------------------------------------------------------------- /Service/src/server/redis/Redis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/src/server/redis/Redis.cpp -------------------------------------------------------------------------------- /Service/thirdparty/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenmingik/Server/HEAD/Service/thirdparty/json.hpp --------------------------------------------------------------------------------