A game server library for linux/windows(support TCP, UDP, HTTP(S) and Websocket,MySQL,redis) 一个简单但功能强大的跨平台(Win/Linux)游戏服务器框架.支持TCP,UDP,HTTP,WEBSOCKET.支持MySQL和Redis
Go to file
2019-11-06 14:41:22 +08:00
Header update to 2.0.1 beta 2019-11-06 14:41:22 +08:00
Lib update to 2.0.1 beta 2019-11-06 14:41:22 +08:00
Sample update to v2.0.0 beta 2019-10-29 15:10:35 +08:00
src update to 2.0.1 beta 2019-11-06 14:25:44 +08:00
third_party update mysql++ version 2019-11-06 14:39:31 +08:00
.gitignore update to v2.0.0 beta 2019-10-29 15:10:35 +08:00
.travis.yml update to v2.0.0 beta 2019-10-29 18:06:07 +08:00
CMakeLists.txt update to v2.0.0 beta 2019-10-29 15:37:05 +08:00
configure_clang.sh update to v2.0.0 beta 2019-10-29 15:20:13 +08:00
configure_cmake.sh update to v2.0.0 beta 2019-10-29 15:20:13 +08:00
configure.sh update to v2.0.0 beta 2019-10-29 15:20:13 +08:00
findcpp.py Change Websocket Lib 2019-08-14 11:11:52 +08:00
install_cmake.sh Add a cmake&clang compile version. 2017-10-09 12:19:34 +08:00
install-dependencies.sh update mysql++ version 2019-11-06 14:39:31 +08:00
LICENSE Separate debug & release directory 2017-05-17 17:02:09 +08:00
linux.clang.toolchain.cmake Add Websocket & protobuf support 2018-05-02 14:30:47 +08:00
makeall_auto_release.sh update to v2.0.0 beta 2019-10-29 15:20:13 +08:00
makeall_auto.sh update to v2.0.0 beta 2019-10-29 15:20:13 +08:00
makeall_clang_release.sh update to v2.0.0 beta 2019-10-29 15:20:13 +08:00
makeall_clang.sh update to v2.0.0 beta 2019-10-29 15:20:13 +08:00
makeall_release.sh Add Websocket & protobuf support 2018-05-02 14:30:47 +08:00
makeall.sh Add Websocket & protobuf support 2018-05-02 14:30:47 +08:00
README.md update to 2.0.1 beta 2019-11-06 14:32:56 +08:00
remakeall_auto_release.sh update to v2.0.0 beta 2019-10-29 15:20:13 +08:00
remakeall_auto.sh update to v2.0.0 beta 2019-10-29 15:20:13 +08:00
remakeall_clang_release.sh update to v2.0.0 beta 2019-10-29 15:20:13 +08:00
remakeall_clang.sh update to v2.0.0 beta 2019-10-29 15:20:13 +08:00
remakeall_release.sh update to v2.0.0 beta 2019-10-29 15:20:13 +08:00
remakeall.sh update to v2.0.0 beta 2019-10-29 15:20:13 +08:00
YTSvrLib.sln update to v2.0.0 beta 2019-10-29 15:10:35 +08:00
YTSvrLib.v12.suo Change Websocket Lib 2019-08-14 11:11:52 +08:00

YTSvrLib TravisCI Status AppVeyor Status

a simple&powerful game server library for both linux/windows

What's new in version 2.0 更新2.0测试版本

Removed libevent dependency and change the network lib to asio. 移除了对libevent库的依赖,全面开始转向C++11/14 Optimized the network lib and websocket lib and make it more easier to use. 对网络库做了大量优化,使接口更清晰易用.剔除了很多容易引起使用者误会的接口. Update msvc to vs2017 for feature of c++11/14 为了利用C++11/14的新特性,升级Windows编译器和所有依赖库至vs2017

Install Windows

1.Install Visual Studio 2017.

2.Start with YTSvrLib.sln

3.Build solution, get the YTSvrLib.lib

4.Use the .lib in your project.

Install Linux

1.Install dependent libraries : libiconv libcurl libmysqlpp libmysqlclient libpthread libtcmalloc

2.cd src && ./configure && make install

3.You can get libytsvrlib.so.

4.Use the libytsvrlib.so in your project.

How to use

See the project "Sample".

在Windows下使用

1.安装 Visual Studio 2017

2.使用YTSvrLib.sln打开项目

3.编译项目,你可以得到YTSvrLib.lib

4.在你的工程中链接lib

在Linux下使用

1.先安装以下依赖库 : libiconv libcurl libmysqlpp libmysqlclient libpthread libtcmalloc

2.cd src && ./configure && make install (或者你可以直接用./makeall.sh来获得debug版本或者./makeall_release.sh来获得release版本)

3.你将会得到libytsvrlib.so

4.将它用在你的项目中.

如何使用

请参考"Sample"项目了解使用方法.