Skip to content

tokuhirom/nanowww

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

C++ lightweight, fast, portable HTTP client library

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published