├── .gitmodules ├── CMakeLists.txt ├── DockerExample ├── Dockerfile_ngx_ffunc ├── ffunc_profile ├── profile_service_daemonize.c └── start_ffunc.sh ├── LICENSE ├── README.md ├── Testing └── Temporary │ ├── CTestCostData.txt │ └── LastTest.log ├── cmake_uninstall.cmake.in ├── examples ├── profile_service.c ├── profile_service.cpp └── service_with_spdlog.cpp ├── extra_tips.md ├── ffunc.c ├── ffunc.h ├── images ├── fcgi_func_architecture.png └── simple-flow.png └── payload.txt /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taymindis/fcgi-function/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /DockerExample/Dockerfile_ngx_ffunc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taymindis/fcgi-function/HEAD/DockerExample/Dockerfile_ngx_ffunc -------------------------------------------------------------------------------- /DockerExample/ffunc_profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taymindis/fcgi-function/HEAD/DockerExample/ffunc_profile -------------------------------------------------------------------------------- /DockerExample/profile_service_daemonize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taymindis/fcgi-function/HEAD/DockerExample/profile_service_daemonize.c -------------------------------------------------------------------------------- /DockerExample/start_ffunc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taymindis/fcgi-function/HEAD/DockerExample/start_ffunc.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taymindis/fcgi-function/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taymindis/fcgi-function/HEAD/README.md -------------------------------------------------------------------------------- /Testing/Temporary/CTestCostData.txt: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /Testing/Temporary/LastTest.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taymindis/fcgi-function/HEAD/Testing/Temporary/LastTest.log -------------------------------------------------------------------------------- /cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taymindis/fcgi-function/HEAD/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /examples/profile_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taymindis/fcgi-function/HEAD/examples/profile_service.c -------------------------------------------------------------------------------- /examples/profile_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taymindis/fcgi-function/HEAD/examples/profile_service.cpp -------------------------------------------------------------------------------- /examples/service_with_spdlog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taymindis/fcgi-function/HEAD/examples/service_with_spdlog.cpp -------------------------------------------------------------------------------- /extra_tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taymindis/fcgi-function/HEAD/extra_tips.md -------------------------------------------------------------------------------- /ffunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taymindis/fcgi-function/HEAD/ffunc.c -------------------------------------------------------------------------------- /ffunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taymindis/fcgi-function/HEAD/ffunc.h -------------------------------------------------------------------------------- /images/fcgi_func_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taymindis/fcgi-function/HEAD/images/fcgi_func_architecture.png -------------------------------------------------------------------------------- /images/simple-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taymindis/fcgi-function/HEAD/images/simple-flow.png -------------------------------------------------------------------------------- /payload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taymindis/fcgi-function/HEAD/payload.txt --------------------------------------------------------------------------------