Boost.Http.Proto is a portable, low-level C++ library which provides containers and algorithms for implementing the HTTP/1.1 protocol described in the document Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing, henceforth referred to as rfc7232.
Boost.Http.Proto offers these features:
- Require only C++11
- Works without exceptions
- Fast compilation, no templates
- Strict compliance with rfc7230
- Requires Boost and a compiler supporting at least C++11
- Aliases for standard types use their Boost equivalents
- Link to a built static or dynamic Boost library, or use header-only (see below)
- Supports -fno-exceptions, detected automatically
To use as header-only; that is, to eliminate the requirement to link a program to a static or dynamic Boost.Http.Proto library, simply place the following line in exactly one new or existing source file in your project.
#include <boost/http_proto/src.hpp>
Boost.Http.Proto works great on embedded devices. It is designed to work without exceptions if desired.
Boost.Http.Proto has been tested with the following compilers:
- clang: 3.8, 4, 5, 6, 7, 8, 9, 10, 11, 12
- gcc: 4.8, 4.9, 5, 6, 7, 8, 9, 10, 11
- msvc: 14.0, 14.1, 14.2, 14.3
The development infrastructure for the library includes these per-commit analyses:
- Coverage reports
- Benchmark performance comparisons
- Compilation and tests on Drone.io, Azure Pipelines, Appveyor
- Fuzzing using clang-llvm and machine learning
cmake -G "Visual Studio 16 2019" -A Win32 -B bin -DCMAKE_TOOLCHAIN_FILE=cmake/toolchains/msvc.cmake
cmake -G "Visual Studio 16 2019" -A x64 -B bin64 -DCMAKE_TOOLCHAIN_FILE=cmake/toolchains/msvc.cmake
Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt)