parent
01bfeb620b
commit
f32ae1188a
|
@ -29,6 +29,7 @@ A very flexible, lightweight and fully asynchronous HTTP server library based on
|
||||||
* Lightweight and fully asynchronous
|
* Lightweight and fully asynchronous
|
||||||
* Use [libev] as its event backend
|
* Use [libev] as its event backend
|
||||||
* Support HTTPS - OpenSSL, mbedtls and CyaSSl(wolfssl)
|
* Support HTTPS - OpenSSL, mbedtls and CyaSSl(wolfssl)
|
||||||
|
* Support HTTP pipelining
|
||||||
* Support IPv6
|
* Support IPv6
|
||||||
* Support plugin
|
* Support plugin
|
||||||
* Support upload large file
|
* Support upload large file
|
||||||
|
@ -36,7 +37,7 @@ A very flexible, lightweight and fully asynchronous HTTP server library based on
|
||||||
* Code structure is concise and understandable, also suitable for learning
|
* Code structure is concise and understandable, also suitable for learning
|
||||||
|
|
||||||
# Dependencies
|
# Dependencies
|
||||||
* [libev]
|
* [libev] - A full-featured and high-performance event loop
|
||||||
* [http-parser] - A high performance parser for HTTP messages written in C
|
* [http-parser] - A high performance parser for HTTP messages written in C
|
||||||
* [mbedtls] - If you choose mbedtls as your SSL backend
|
* [mbedtls] - If you choose mbedtls as your SSL backend
|
||||||
* [wolfssl] - If you choose wolfssl as your SSL backend
|
* [wolfssl] - If you choose wolfssl as your SSL backend
|
||||||
|
|
|
@ -29,6 +29,7 @@
|
||||||
* 轻量、全异步
|
* 轻量、全异步
|
||||||
* 使用[libev]作为其事件后端
|
* 使用[libev]作为其事件后端
|
||||||
* 支持HTTPS - OpenSSL, mbedtls 和 CyaSSl(wolfssl)
|
* 支持HTTPS - OpenSSL, mbedtls 和 CyaSSl(wolfssl)
|
||||||
|
* 支持 HTTP 流水线
|
||||||
* 支持 IPv6
|
* 支持 IPv6
|
||||||
* 支持插件
|
* 支持插件
|
||||||
* 支持上传大文件
|
* 支持上传大文件
|
||||||
|
@ -36,7 +37,7 @@
|
||||||
* 代码结构简洁通俗易懂,亦适合学习
|
* 代码结构简洁通俗易懂,亦适合学习
|
||||||
|
|
||||||
# 依赖
|
# 依赖
|
||||||
* [libev]
|
* [libev] - 一个全功能和高性能的事件循环库
|
||||||
* [http-parser] - 一个用 C 语言编写的高性能的 HTTP 消息解析器
|
* [http-parser] - 一个用 C 语言编写的高性能的 HTTP 消息解析器
|
||||||
* [mbedtls] - 如果你选择mbedtls作为你的SSL后端
|
* [mbedtls] - 如果你选择mbedtls作为你的SSL后端
|
||||||
* [wolfssl] - 如果你选择wolfssl作为你的SSL后端
|
* [wolfssl] - 如果你选择wolfssl作为你的SSL后端
|
||||||
|
|
Loading…
Reference in New Issue