1.3 KiB
Executable File
1.3 KiB
Executable File
libuhttp
A very tiny and fast HTTP library based on libev and http-parser for Embedded Linux.
Features
- Tiny and fast
- SSL support: Optional OpenSSL and CyaSSl(wolfssl)
- Highly customizable, and can be easily integrated into your application
How To Compile on Ubuntu
Install dependency Tools and Libraries
sudo apt install cmake libev-dev libhttp-parser-dev
Compile libuhttp
git clone https://github.com/zhaojh329/libuhttp.git
cd libuhttp
mkdir build
cd build
cmake ../
make && sudo make install
Test
$ ./example/helloworld
Then use the command curl or browser to access https://127.0.0.1:8000/test
$ curl -k https://127.0.0.1:8000/test -v
Example
Contributing
If you would like to help making libuhttp better, see the CONTRIBUTING.md file.