Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tokuhirom/nanowww
C++ lightweight, fast, portable HTTP client library
https://github.com/tokuhirom/nanowww
Last synced: 18 days ago
JSON representation
C++ lightweight, fast, portable HTTP client library
- Host: GitHub
- URL: https://github.com/tokuhirom/nanowww
- Owner: tokuhirom
- Created: 2009-10-08T07:58:46.000Z (about 15 years ago)
- Default Branch: master
- Last Pushed: 2016-06-24T23:25:48.000Z (over 8 years ago)
- Last Synced: 2024-10-11T20:59:49.146Z (about 1 month ago)
- Language: Perl
- Homepage:
- Size: 80.1 KB
- Stars: 17
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.mkdn
Awesome Lists containing this project
README
# NAME
nanowww - tiny HTTP client library for C/C++
# SYNOPSIS
#include "nanowww.h"
nanowww::Client www;
nanowww::Response;
if (www.send_get(&res, "http://google.com")) {
if (res.is_success()) {
cout << res.content() << endl;
}
} else {
cerr << res.errstr() << endl;
}# FAQ
- how to use I/O multiplexing request
use thread, instead.
- how to use gopher/telnet/ftp.
I don't want to support gopher/telnet/ftp in nanowww.