├── .gitignore ├── LICENSE ├── LightCgiServer ├── LightCgiServer.c ├── LightCgiServer.h ├── README.md ├── tags └── www ├── 1.txt ├── c.py ├── index.html ├── index.py └── 手册.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imyouxia/LightCgiServer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imyouxia/LightCgiServer/HEAD/LICENSE -------------------------------------------------------------------------------- /LightCgiServer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imyouxia/LightCgiServer/HEAD/LightCgiServer -------------------------------------------------------------------------------- /LightCgiServer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imyouxia/LightCgiServer/HEAD/LightCgiServer.c -------------------------------------------------------------------------------- /LightCgiServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imyouxia/LightCgiServer/HEAD/LightCgiServer.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imyouxia/LightCgiServer/HEAD/README.md -------------------------------------------------------------------------------- /tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imyouxia/LightCgiServer/HEAD/tags -------------------------------------------------------------------------------- /www/1.txt: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /www/c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imyouxia/LightCgiServer/HEAD/www/c.py -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imyouxia/LightCgiServer/HEAD/www/index.html -------------------------------------------------------------------------------- /www/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imyouxia/LightCgiServer/HEAD/www/index.py -------------------------------------------------------------------------------- /www/手册.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imyouxia/LightCgiServer/HEAD/www/手册.txt --------------------------------------------------------------------------------