Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.