├── Dockerfile ├── LICENSE ├── README.md ├── dnfsrvproj ├── Readme.md ├── [分享]傻瓜式服务端插件【台服dnf吧】_百度贴吧 - https___tieba.baidu.com_.mhtml ├── bin │ └── libdnfpatch.so ├── dep │ └── hook.d ├── df_xxx_r.zip ├── makefile ├── obj │ └── hook.o ├── src │ ├── hook.cpp │ ├── hook.h │ └── subhook.h ├── 关于centos5以上的系统启动慢的问题【台服dnf吧】_百度贴吧 - https___tieba.baidu.com_.mhtml ├── 抛砖引玉, 服务端HOOK例子源码, 希望各路大神多多研究【台服dnf吧】_百度贴吧 - https___tieba.baidu.com_.mhtml └── 服务端插件源码【台服dnf吧】_百度贴吧 - https___tieba.baidu.com_.mhtml ├── docker-entrypoint.sh ├── dof.sh ├── dofMysql ├── Dockerfile ├── build.sh ├── dof.sql ├── init.sh └── test.sh ├── ssh.png ├── test.sh ├── welcome.sh └── 台服dnf服务架构.docx /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnn149/dofServer/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnn149/dofServer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnn149/dofServer/HEAD/README.md -------------------------------------------------------------------------------- /dnfsrvproj/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnn149/dofServer/HEAD/dnfsrvproj/Readme.md -------------------------------------------------------------------------------- /dnfsrvproj/[分享]傻瓜式服务端插件【台服dnf吧】_百度贴吧 - https___tieba.baidu.com_.mhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnn149/dofServer/HEAD/dnfsrvproj/[分享]傻瓜式服务端插件【台服dnf吧】_百度贴吧 - https___tieba.baidu.com_.mhtml -------------------------------------------------------------------------------- /dnfsrvproj/bin/libdnfpatch.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnn149/dofServer/HEAD/dnfsrvproj/bin/libdnfpatch.so -------------------------------------------------------------------------------- /dnfsrvproj/dep/hook.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnn149/dofServer/HEAD/dnfsrvproj/dep/hook.d -------------------------------------------------------------------------------- /dnfsrvproj/df_xxx_r.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnn149/dofServer/HEAD/dnfsrvproj/df_xxx_r.zip -------------------------------------------------------------------------------- /dnfsrvproj/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnn149/dofServer/HEAD/dnfsrvproj/makefile -------------------------------------------------------------------------------- /dnfsrvproj/obj/hook.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnn149/dofServer/HEAD/dnfsrvproj/obj/hook.o -------------------------------------------------------------------------------- /dnfsrvproj/src/hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnn149/dofServer/HEAD/dnfsrvproj/src/hook.cpp -------------------------------------------------------------------------------- /dnfsrvproj/src/hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnn149/dofServer/HEAD/dnfsrvproj/src/hook.h -------------------------------------------------------------------------------- /dnfsrvproj/src/subhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnn149/dofServer/HEAD/dnfsrvproj/src/subhook.h -------------------------------------------------------------------------------- /dnfsrvproj/关于centos5以上的系统启动慢的问题【台服dnf吧】_百度贴吧 - https___tieba.baidu.com_.mhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnn149/dofServer/HEAD/dnfsrvproj/关于centos5以上的系统启动慢的问题【台服dnf吧】_百度贴吧 - https___tieba.baidu.com_.mhtml -------------------------------------------------------------------------------- /dnfsrvproj/抛砖引玉, 服务端HOOK例子源码, 希望各路大神多多研究【台服dnf吧】_百度贴吧 - https___tieba.baidu.com_.mhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnn149/dofServer/HEAD/dnfsrvproj/抛砖引玉, 服务端HOOK例子源码, 希望各路大神多多研究【台服dnf吧】_百度贴吧 - https___tieba.baidu.com_.mhtml -------------------------------------------------------------------------------- /dnfsrvproj/服务端插件源码【台服dnf吧】_百度贴吧 - https___tieba.baidu.com_.mhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnn149/dofServer/HEAD/dnfsrvproj/服务端插件源码【台服dnf吧】_百度贴吧 - https___tieba.baidu.com_.mhtml -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnn149/dofServer/HEAD/docker-entrypoint.sh -------------------------------------------------------------------------------- /dof.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnn149/dofServer/HEAD/dof.sh -------------------------------------------------------------------------------- /dofMysql/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnn149/dofServer/HEAD/dofMysql/Dockerfile -------------------------------------------------------------------------------- /dofMysql/build.sh: -------------------------------------------------------------------------------- 1 | #/bin/bash 2 | docker build -t nnn149/dofmysql . 3 | -------------------------------------------------------------------------------- /dofMysql/dof.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnn149/dofServer/HEAD/dofMysql/dof.sql -------------------------------------------------------------------------------- /dofMysql/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnn149/dofServer/HEAD/dofMysql/init.sh -------------------------------------------------------------------------------- /dofMysql/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnn149/dofServer/HEAD/dofMysql/test.sh -------------------------------------------------------------------------------- /ssh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnn149/dofServer/HEAD/ssh.png -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnn149/dofServer/HEAD/test.sh -------------------------------------------------------------------------------- /welcome.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnn149/dofServer/HEAD/welcome.sh -------------------------------------------------------------------------------- /台服dnf服务架构.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nnn149/dofServer/HEAD/台服dnf服务架构.docx --------------------------------------------------------------------------------