RESTinio 0.4.3 Released!

2018.03.06

We happy to announce a minor release of our HTTP/Websocket server library RESTinio 0.4.3.

What's new:

  • Add facilities for working with files. See details: File support (sendfile). Now you can use files like this:
        req->create_response()
        .append_header_date_field()
            .append_header( restinio::http_field::content_type, "text/plain; charset=utf-8" )
            .set_body( restinio::sendfile( "data.txt" ) )
            .done();
  • Lots of minor improvements and some fixes.

RESTinio is hosted on bitbucket (github mirror).

Archive is available in download section.

Documentation with helpful information is here.

Bonus: Async processing of incoming and outgoing HTTP-requests with RESTinio and libcurl.