0c2d85450e
Static build with a zlib-enabled mbedtls fails on: [100%] Linking C executable example /home/buildroot/autobuild/instance-3/output-1/host/opt/ext-toolchain/arm-buildroot-uclinux-uclibcgnueabi/bin/ld.real: /home/buildroot/autobuild/instance-3/output-1/host/arm-buildroot-uclinux-uclibcgnueabi/sysroot/usr/lib/libmbedtls.a(ssl_tls.c.o): in function `mbedtls_ssl_transform_free.part.24': ssl_tls.c:(.text+0xbc6): undefined reference to `deflateEnd' As mbedtls does not provide a pkg-config file, search for zlib and link with it if necessary Fixes: - http://autobuild.buildroot.org/results/5891d12e90182460cde1ddfa0ca75e9fd55e3dff Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> |
||
---|---|---|
cmake/Modules | ||
example | ||
src | ||
.gitignore | ||
.gitmodules | ||
.travis.yml | ||
BUILDOPENWRT.md | ||
BUILDOPENWRT_ZH.md | ||
CMakeLists.txt | ||
CONTRIBUTING.md | ||
CONTRIBUTING_ZH.md | ||
LICENSE | ||
README.md | ||
README_ZH.md | ||
gen_cert.sh | ||
openssl.cnf |
README.md
libuhttpd(中文)
A very flexible, lightweight and fully asynchronous HTTP server library based on libev and http-parser for Embedded Linux.
Features
- Lightweight and fully asynchronous
- Use libev as its event backend
- Support HTTPS - OpenSSL, mbedtls and CyaSSl(wolfssl)
- Support plugin
- Flexible - you can easily extend your application to have HTTP/HTTPS services
- Code structure is concise and understandable, also suitable for learning
Dependencies
- libev
- http-parser - A parser for HTTP messages written in C
- mbedtls - If you choose mbedtls as your SSL backend
- wolfssl - If you choose wolfssl as your SSL backend
- openssl - If you choose openssl as your SSL backend
Configure
See which configuration are supported
~/libuhttpd/$ mkdir build && cd build
~/libuhttpd/build$ cmake .. -L
~/libuhttpd/build$ cmake .. -LH
Build and install
~/libuhttpd/build$ make && sudo make install
Run Example
Run
~/libuhttpd/build$ ./example/example
Then use the command curl or browser to test
$ curl 'https://127.0.0.1:8000' -v
Install on OpenWrt
opkg update
opkg list | grep libuhttpd
opkg install libuhttpd-nossl
If the install command fails, you can compile it yourself.
Example
Contributing
If you would like to help making libuhttpd better, see the CONTRIBUTING.md file.