mirror of
https://github.com/ZeroTier/ZeroTierOne
synced 2025-08-20 13:24:09 -07:00
Fix path typo: 3rdpatry
This commit is contained in:
parent
47e05d5a23
commit
dcb4bc5ef4
8 changed files with 32 additions and 22 deletions
|
@ -1,30 +0,0 @@
|
|||
# HTTP Client lite: C++ Cross-platform library only from single-file header-only
|
||||
|
||||
This is a lite, C++ cross-platform header-only client library for http request based
|
||||
on [csachs/picohttpclient](https://github.com/csachs/picohttpclient) project.
|
||||
|
||||
A Lightweight HTTP 1.1 client where to quickly do very simple HTTP requests,
|
||||
without adding larger dependencies to a project.
|
||||
|
||||
|
||||
## License
|
||||
|
||||
http client lite is distributed under the [MIT License](https://github.com/john-jasper-doe/http-client-lite/blob/master/LICENSE).
|
||||
|
||||
|
||||
## Example usage
|
||||
|
||||
To see how this can be used see the examples folders.
|
||||
|
||||
|
||||
**Example:**
|
||||
```C++
|
||||
#include <jdl/httpclientlite.hpp>
|
||||
...
|
||||
using namespace jdl;
|
||||
...
|
||||
HTTPResponse response = HTTPClient::request(HTTPClient::GET, URI("http://example.com"));
|
||||
cout << response.body << endl;
|
||||
...
|
||||
```
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue