Branch | master |
develop |
---|---|---|
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 rfc7230.
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 eliminate the requirement to link a program to a static or dynamic Boost.Http.Proto library, simply place the following line in exactly one 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: 5, 6, 7, 8, 9, 10, 11, 12
-
msvc: 14.0, 14.1, 14.2, 14.3
cmake -G "Visual Studio 17 2022" -A win32 -B bin -DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake -DVCPKG_CHAINLOAD_TOOLCHAIN_FILE="C:/Users/vinnie/src/boost/libs/http_proto/cmake/toolchains/msvc.cmake"
cmake -G "Visual Studio 17 2022" -A x64 -B bin64 -DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake -DVCPKG_CHAINLOAD_TOOLCHAIN_FILE="C:/Users/vinnie/src/boost/libs/http_proto/cmake/toolchains/msvc.cmake"
Distributed under the Boost Software License, Version 1.0. (See accompanying file [LICENSE_1_0.txt](LICENSE_1_0.txt) or copy at https://www.boost.org/LICENSE_1_0.txt)