├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── biicode.conf ├── example ├── httpserv.cpp ├── httpserv.mk ├── makefile ├── sockcliserv.cpp └── sockcliserv.mk ├── include ├── lev.h └── levhttp.h └── makefile /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YasserAsmi/lev/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YasserAsmi/lev/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YasserAsmi/lev/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YasserAsmi/lev/HEAD/README.md -------------------------------------------------------------------------------- /biicode.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YasserAsmi/lev/HEAD/biicode.conf -------------------------------------------------------------------------------- /example/httpserv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YasserAsmi/lev/HEAD/example/httpserv.cpp -------------------------------------------------------------------------------- /example/httpserv.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YasserAsmi/lev/HEAD/example/httpserv.mk -------------------------------------------------------------------------------- /example/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YasserAsmi/lev/HEAD/example/makefile -------------------------------------------------------------------------------- /example/sockcliserv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YasserAsmi/lev/HEAD/example/sockcliserv.cpp -------------------------------------------------------------------------------- /example/sockcliserv.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YasserAsmi/lev/HEAD/example/sockcliserv.mk -------------------------------------------------------------------------------- /include/lev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YasserAsmi/lev/HEAD/include/lev.h -------------------------------------------------------------------------------- /include/levhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YasserAsmi/lev/HEAD/include/levhttp.h -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- 1 | DIRS = example 2 | 3 | include build.mk 4 | --------------------------------------------------------------------------------