├── .gitignore ├── Doxyfile ├── LICENSE ├── Makefile ├── README.md ├── async.c ├── async.h ├── buffer.c ├── buffer.h ├── httpd.c ├── protocol-server.c ├── protocol-server.h ├── reactor.c ├── reactor.h └── tests ├── test-async.c ├── test-buffer.c ├── test-protocol-server.c └── test-reactor.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/embedded2016/server-framework/HEAD/.gitignore -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/embedded2016/server-framework/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/embedded2016/server-framework/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/embedded2016/server-framework/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/embedded2016/server-framework/HEAD/README.md -------------------------------------------------------------------------------- /async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/embedded2016/server-framework/HEAD/async.c -------------------------------------------------------------------------------- /async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/embedded2016/server-framework/HEAD/async.h -------------------------------------------------------------------------------- /buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/embedded2016/server-framework/HEAD/buffer.c -------------------------------------------------------------------------------- /buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/embedded2016/server-framework/HEAD/buffer.h -------------------------------------------------------------------------------- /httpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/embedded2016/server-framework/HEAD/httpd.c -------------------------------------------------------------------------------- /protocol-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/embedded2016/server-framework/HEAD/protocol-server.c -------------------------------------------------------------------------------- /protocol-server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/embedded2016/server-framework/HEAD/protocol-server.h -------------------------------------------------------------------------------- /reactor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/embedded2016/server-framework/HEAD/reactor.c -------------------------------------------------------------------------------- /reactor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/embedded2016/server-framework/HEAD/reactor.h -------------------------------------------------------------------------------- /tests/test-async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/embedded2016/server-framework/HEAD/tests/test-async.c -------------------------------------------------------------------------------- /tests/test-buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/embedded2016/server-framework/HEAD/tests/test-buffer.c -------------------------------------------------------------------------------- /tests/test-protocol-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/embedded2016/server-framework/HEAD/tests/test-protocol-server.c -------------------------------------------------------------------------------- /tests/test-reactor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/embedded2016/server-framework/HEAD/tests/test-reactor.c --------------------------------------------------------------------------------