Skip to content

Commit 14f1e46

Browse files
committed
beast2
1 parent 2023c3c commit 14f1e46

File tree

119 files changed

+614
-614
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

119 files changed

+614
-614
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# Distributed under the Boost Software License, Version 1.0. (See accompanying
99
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
1010
#
11-
# Official repository: https://github.com/cppalliance/http_io/
11+
# Official repository: https://github.com/cppalliance/beast2
1212
#
1313

1414
name: CI
@@ -880,7 +880,7 @@ jobs:
880880
buffers-root
881881
rts-root
882882
scan-modules-ignore: |
883-
http_io
883+
beast2
884884
http_proto
885885
buffers
886886
rts
@@ -969,7 +969,7 @@ jobs:
969969
ASAN_OPTIONS: ${{ (startsWith(matrix.compiler, 'apple-clang') && 'detect_invalid_pointer_pairs=0') || 'detect_invalid_pointer_pairs=2' }}
970970
with:
971971
source-dir: boost-root
972-
modules: http_io
972+
modules: beast2
973973
toolset: ${{ matrix.b2-toolset }}
974974
build-variant: ${{ matrix.build-type }}
975975
cxx: ${{ steps.setup-cpp.outputs.cxx || matrix.cxx || '' }}
@@ -982,7 +982,7 @@ jobs:
982982
cxxflags: ${{ (matrix.asan && '-fsanitize=pointer-subtract') || '' }}
983983
user-config: ${{ ((startsWith(matrix.runs-on, 'windows') || startsWith(matrix.runs-on, 'macOS')) && format('{0}/user-config.jam', steps.patch.outputs.workspace_root)) || '' }}
984984
stop-on-error: true
985-
extra-args: "libs/http_io/example" # https://github.com/ashtum/cpp-actions/issues/23
985+
extra-args: "libs/beast2/example" # https://github.com/ashtum/cpp-actions/issues/23
986986

987987
- name: Boost CMake Workflow
988988
uses: ashtum/cpp-actions/[email protected]
@@ -1005,11 +1005,11 @@ jobs:
10051005
extra-args: |
10061006
-D Boost_VERBOSE=ON
10071007
-D BOOST_INCLUDE_LIBRARIES="${{ steps.patch.outputs.module }}"
1008-
-D BOOST_HTTP_IO_BUILD_TESTS=ON
1008+
-D BOOST_BEAST2_BUILD_TESTS=ON
10091009
export-compile-commands: ${{ matrix.time-trace }}
10101010
package: false
10111011
package-artifact: false
1012-
ref-source-dir: boost-root/libs/http_io
1012+
ref-source-dir: boost-root/libs/beast2
10131013
toolchain: ${{ (startsWith(matrix.runs-on, 'windows') && steps.patch-user-config.outputs.toolchain) || '' }}
10141014

10151015
- name: Set Path
@@ -1041,7 +1041,7 @@ jobs:
10411041
extra-args: |
10421042
-D BOOST_CI_INSTALL_TEST=ON
10431043
-D CMAKE_PREFIX_PATH=${{ steps.patch.outputs.workspace_root }}/.local
1044-
ref-source-dir: boost-root/libs/http_io
1044+
ref-source-dir: boost-root/libs/beast2
10451045
trace-commands: true
10461046
toolchain: ${{ (startsWith(matrix.runs-on, 'windows') && steps.patch-user-config.outputs.toolchain) || '' }}
10471047

@@ -1063,7 +1063,7 @@ jobs:
10631063
install: false
10641064
cmake-version: '>=3.20'
10651065
extra-args: -D BOOST_CI_INSTALL_TEST=OFF
1066-
ref-source-dir: boost-root/libs/http_io/test/cmake_test
1066+
ref-source-dir: boost-root/libs/beast2/test/cmake_test
10671067
toolchain: ${{ (startsWith(matrix.runs-on, 'windows') && steps.patch-user-config.outputs.toolchain) || '' }}
10681068

10691069
- name: Root Project CMake Workflow
@@ -1093,7 +1093,7 @@ jobs:
10931093
uses: ashtum/cpp-actions/[email protected]
10941094
if: matrix.time-trace
10951095
with:
1096-
source-dir: boost-root/libs/http_io
1096+
source-dir: boost-root/libs/beast2
10971097
build-dir: boost-root/__build_cmake_test__
10981098
github_token: ${{ secrets.GITHUB_TOKEN }}
10991099

@@ -1209,7 +1209,7 @@ jobs:
12091209
buffers-root
12101210
rts-root
12111211
scan-modules-ignore: |
1212-
http_io
1212+
beast2
12131213
http_proto
12141214
buffers
12151215
rts
@@ -1265,7 +1265,7 @@ jobs:
12651265
12661266
BOOST_SRC_DIR="$(pwd)/boost-root"
12671267
export BOOST_SRC_DIR
1268-
cd boost-root/libs/http_io
1268+
cd boost-root/libs/beast2
12691269
12701270
cd doc
12711271
bash ./build_antora.sh
@@ -1280,4 +1280,4 @@ jobs:
12801280
uses: actions/upload-artifact@v4
12811281
with:
12821282
name: antora-docs-${{ matrix.name }}
1283-
path: boost-root/libs/http_io/doc/build/site
1283+
path: boost-root/libs/beast2/doc/build/site

CMakeLists.txt

Lines changed: 42 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# Distributed under the Boost Software License, Version 1.0. (See accompanying
88
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
99
#
10-
# Official repository: https://github.com/cppalliance/http_io
10+
# Official repository: https://github.com/cppalliance/beast2
1111
#
1212

1313
#-------------------------------------------------
@@ -16,14 +16,14 @@
1616
#
1717
#-------------------------------------------------
1818
cmake_minimum_required(VERSION 3.8...3.20)
19-
set(BOOST_HTTP_IO_VERSION 1)
19+
set(BOOST_BEAST2_VERSION 1)
2020
if (BOOST_SUPERPROJECT_VERSION)
21-
set(BOOST_HTTP_IO_VERSION ${BOOST_SUPERPROJECT_VERSION})
21+
set(BOOST_BEAST2_VERSION ${BOOST_SUPERPROJECT_VERSION})
2222
endif ()
23-
project(boost_http_io VERSION "${BOOST_HTTP_IO_VERSION}" LANGUAGES CXX)
24-
set(BOOST_HTTP_IO_IS_ROOT OFF)
23+
project(boost_beast2 VERSION "${BOOST_BEAST2_VERSION}" LANGUAGES CXX)
24+
set(BOOST_BEAST2_IS_ROOT OFF)
2525
if (CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
26-
set(BOOST_HTTP_IO_IS_ROOT ON)
26+
set(BOOST_BEAST2_IS_ROOT ON)
2727
endif ()
2828
set(__ignore__ ${CMAKE_C_COMPILER})
2929

@@ -32,12 +32,12 @@ set(__ignore__ ${CMAKE_C_COMPILER})
3232
# Options
3333
#
3434
#-------------------------------------------------
35-
if (BOOST_HTTP_IO_IS_ROOT)
35+
if (BOOST_BEAST2_IS_ROOT)
3636
include(CTest)
3737
endif ()
38-
option(BOOST_HTTP_IO_BUILD_TESTS "Build boost::http_io tests" ${BUILD_TESTING})
39-
option(BOOST_HTTP_IO_BUILD_EXAMPLES "Build boost::http_io examples" ${BOOST_HTTP_IO_IS_ROOT})
40-
option(BOOST_HTTP_IO_MRDOCS_BUILD "Build the target for MrDocs: see mrdocs.yml" OFF)
38+
option(BOOST_BEAST2_BUILD_TESTS "Build boost::beast2 tests" ${BUILD_TESTING})
39+
option(BOOST_BEAST2_BUILD_EXAMPLES "Build boost::beast2 examples" ${BOOST_BEAST2_IS_ROOT})
40+
option(BOOST_BEAST2_MRDOCS_BUILD "Build the target for MrDocs: see mrdocs.yml" OFF)
4141

4242

4343
# Check if environment variable BOOST_SRC_DIR is set
@@ -54,7 +54,7 @@ set(BOOST_SRC_DIR ${DEFAULT_BOOST_SRC_DIR} CACHE STRING "Boost source dir to use
5454
#
5555
#-------------------------------------------------
5656
# The boost super-project requires one explicit dependency per-line.
57-
set(BOOST_HTTP_IO_DEPENDENCIES
57+
set(BOOST_BEAST2_DEPENDENCIES
5858
Boost::asio
5959
Boost::assert
6060
Boost::config
@@ -63,28 +63,28 @@ set(BOOST_HTTP_IO_DEPENDENCIES
6363
Boost::throw_exception
6464
)
6565

66-
foreach (BOOST_HTTP_IO_DEPENDENCY ${BOOST_HTTP_IO_DEPENDENCIES})
67-
if (BOOST_HTTP_IO_DEPENDENCY MATCHES "^[ ]*Boost::([A-Za-z0-9_]+)[ ]*$")
68-
list(APPEND BOOST_HTTP_IO_INCLUDE_LIBRARIES ${CMAKE_MATCH_1})
66+
foreach (BOOST_BEAST2_DEPENDENCY ${BOOST_BEAST2_DEPENDENCIES})
67+
if (BOOST_BEAST2_DEPENDENCY MATCHES "^[ ]*Boost::([A-Za-z0-9_]+)[ ]*$")
68+
list(APPEND BOOST_BEAST2_INCLUDE_LIBRARIES ${CMAKE_MATCH_1})
6969
endif ()
7070
endforeach ()
7171
# Conditional dependencies
72-
if (BOOST_HTTP_IO_BUILD_TESTS)
73-
set(BOOST_HTTP_IO_UNIT_TEST_LIBRARIES beast url)
72+
if (BOOST_BEAST2_BUILD_TESTS)
73+
set(BOOST_BEAST2_UNIT_TEST_LIBRARIES beast url)
7474
endif ()
75-
if (BOOST_HTTP_IO_BUILD_EXAMPLES)
76-
set(BOOST_HTTP_IO_EXAMPLE_LIBRARIES json program_options scope url multiprecision)
75+
if (BOOST_BEAST2_BUILD_EXAMPLES)
76+
set(BOOST_BEAST2_EXAMPLE_LIBRARIES json program_options scope url multiprecision)
7777
endif ()
7878
# Complete dependency list
79-
set(BOOST_INCLUDE_LIBRARIES ${BOOST_HTTP_IO_INCLUDE_LIBRARIES} ${BOOST_HTTP_IO_UNIT_TEST_LIBRARIES} ${BOOST_HTTP_IO_EXAMPLE_LIBRARIES})
80-
set(BOOST_EXCLUDE_LIBRARIES http_io)
79+
set(BOOST_INCLUDE_LIBRARIES ${BOOST_BEAST2_INCLUDE_LIBRARIES} ${BOOST_BEAST2_UNIT_TEST_LIBRARIES} ${BOOST_BEAST2_EXAMPLE_LIBRARIES})
80+
set(BOOST_EXCLUDE_LIBRARIES beast2)
8181

8282
#-------------------------------------------------
8383
#
8484
# Add Boost Subdirectory
8585
#
8686
#-------------------------------------------------
87-
if (BOOST_HTTP_IO_IS_ROOT)
87+
if (BOOST_BEAST2_IS_ROOT)
8888
set(CMAKE_FOLDER Dependencies)
8989
# Find absolute BOOST_SRC_DIR
9090
if (NOT IS_ABSOLUTE ${BOOST_SRC_DIR})
@@ -132,50 +132,50 @@ endif ()
132132
#-------------------------------------------------
133133
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
134134

135-
file(GLOB_RECURSE BOOST_HTTP_IO_HEADERS CONFIGURE_DEPENDS include/boost/http_io/*.hpp include/boost/*.natvis)
136-
file(GLOB_RECURSE BOOST_HTTP_IO_SOURCES CONFIGURE_DEPENDS src/*.cpp src/*.hpp)
135+
file(GLOB_RECURSE BOOST_BEAST2_HEADERS CONFIGURE_DEPENDS include/boost/beast2/*.hpp include/boost/*.natvis)
136+
file(GLOB_RECURSE BOOST_BEAST2_SOURCES CONFIGURE_DEPENDS src/*.cpp src/*.hpp)
137137

138-
source_group("" FILES "include/boost/http_io.hpp" "build/Jamfile")
139-
source_group(TREE ${CMAKE_CURRENT_SOURCE_DIR}/include/boost/http_io PREFIX "include" FILES ${BOOST_HTTP_IO_HEADERS})
140-
source_group(TREE ${CMAKE_CURRENT_SOURCE_DIR}/src PREFIX "src" FILES ${BOOST_HTTP_IO_SOURCES})
138+
source_group("" FILES "include/boost/beast2.hpp" "build/Jamfile")
139+
source_group(TREE ${CMAKE_CURRENT_SOURCE_DIR}/include/boost/beast2 PREFIX "include" FILES ${BOOST_BEAST2_HEADERS})
140+
source_group(TREE ${CMAKE_CURRENT_SOURCE_DIR}/src PREFIX "src" FILES ${BOOST_BEAST2_SOURCES})
141141

142142

143-
function(boost_http_io_setup_properties target)
143+
function(boost_beast2_setup_properties target)
144144
target_compile_features(${target} PUBLIC cxx_constexpr)
145145
target_include_directories(${target} PUBLIC "${PROJECT_SOURCE_DIR}/include")
146-
target_link_libraries(${target} PUBLIC ${BOOST_HTTP_IO_DEPENDENCIES})
146+
target_link_libraries(${target} PUBLIC ${BOOST_BEAST2_DEPENDENCIES})
147147
find_package(Threads REQUIRED)
148148
target_link_libraries(${target} PUBLIC Threads::Threads)
149149
if (MINGW)
150150
target_link_libraries(${target} PUBLIC ws2_32 wsock32)
151151
endif()
152-
target_compile_definitions(${target} PUBLIC BOOST_HTTP_IO_NO_LIB)
153-
target_compile_definitions(${target} PRIVATE BOOST_HTTP_IO_SOURCE)
152+
target_compile_definitions(${target} PUBLIC BOOST_BEAST2_NO_LIB)
153+
target_compile_definitions(${target} PRIVATE BOOST_BEAST2_SOURCE)
154154
if (BUILD_SHARED_LIBS)
155-
target_compile_definitions(${target} PUBLIC BOOST_HTTP_IO_DYN_LINK)
155+
target_compile_definitions(${target} PUBLIC BOOST_BEAST2_DYN_LINK)
156156
else ()
157-
target_compile_definitions(${target} PUBLIC BOOST_HTTP_IO_STATIC_LINK)
157+
target_compile_definitions(${target} PUBLIC BOOST_BEAST2_STATIC_LINK)
158158
endif ()
159159
endfunction()
160160

161-
if (BOOST_HTTP_IO_MRDOCS_BUILD)
162-
file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/mrdocs.cpp" "#include <boost/http_io.hpp>\n")
163-
add_library(boost_http_io_mrdocs "${CMAKE_CURRENT_BINARY_DIR}/mrdocs.cpp")
164-
boost_http_io_setup_properties(boost_http_io_mrdocs)
165-
boost_http_io_setup_properties(boost_http_io_mrdocs PUBLIC BOOST_HTTP_IO_MRDOCS)
161+
if (BOOST_BEAST2_MRDOCS_BUILD)
162+
file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/mrdocs.cpp" "#include <boost/beast2.hpp>\n")
163+
add_library(boost_beast2_mrdocs "${CMAKE_CURRENT_BINARY_DIR}/mrdocs.cpp")
164+
boost_beast2_setup_properties(boost_beast2_mrdocs)
165+
boost_beast2_setup_properties(boost_beast2_mrdocs PUBLIC BOOST_BEAST2_MRDOCS)
166166
return()
167167
endif()
168168

169-
add_library(boost_http_io include/boost/http_io.hpp build/Jamfile ${BOOST_HTTP_IO_HEADERS} ${BOOST_HTTP_IO_SOURCES})
170-
add_library(Boost::http_io ALIAS boost_http_io)
171-
boost_http_io_setup_properties(boost_http_io)
169+
add_library(boost_beast2 include/boost/beast2.hpp build/Jamfile ${BOOST_BEAST2_HEADERS} ${BOOST_BEAST2_SOURCES})
170+
add_library(Boost::beast2 ALIAS boost_beast2)
171+
boost_beast2_setup_properties(boost_beast2)
172172

173173
#-------------------------------------------------
174174
#
175175
# Tests
176176
#
177177
#-------------------------------------------------
178-
if (BOOST_HTTP_IO_BUILD_TESTS)
178+
if (BOOST_BEAST2_BUILD_TESTS)
179179
add_subdirectory(test)
180180
endif ()
181181

@@ -184,6 +184,6 @@ endif ()
184184
# Examples
185185
#
186186
#-------------------------------------------------
187-
if (BOOST_HTTP_IO_BUILD_EXAMPLES)
187+
if (BOOST_BEAST2_BUILD_EXAMPLES)
188188
add_subdirectory(example)
189189
endif ()

README.adoc

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,33 +2,33 @@
22
|===
33

44
|Branch
5-
|https://github.com/cppalliance/http_io/tree/master[`master`]
6-
|https://github.com/cppalliance/http_io/tree/develop[`develop`]
5+
|https://github.com/cppalliance/beast2/tree/master[`master`]
6+
|https://github.com/cppalliance/beast2/tree/develop[`develop`]
77

88
|https://develop.http-io.cpp.al/[Docs]
99
|https://master.http-io.cpp.al/[image:https://img.shields.io/badge/docs-master-brightgreen.svg[Documentation]]
1010
|https://develop.http-io.cpp.al/[image:https://img.shields.io/badge/docs-develop-brightgreen.svg[Documentation]]
1111

1212
|https://github.com/[GitHub Actions]
13-
|https://github.com/cppalliance/http_io/actions/workflows/ci.yml?query=branch%3Amaster[image:https://github.com/cppalliance/http_io/actions/workflows/ci.yml/badge.svg?branch=master[CI]]
14-
|https://github.com/cppalliance/http_io/actions/workflows/ci.yml?query=branch%3Adevelop[image:https://github.com/cppalliance/http_io/actions/workflows/ci.yml/badge.svg?branch=develop[CI]]
13+
|https://github.com/cppalliance/beast2/actions/workflows/ci.yml?query=branch%3Amaster[image:https://github.com/cppalliance/beast2/actions/workflows/ci.yml/badge.svg?branch=master[CI]]
14+
|https://github.com/cppalliance/beast2/actions/workflows/ci.yml?query=branch%3Adevelop[image:https://github.com/cppalliance/beast2/actions/workflows/ci.yml/badge.svg?branch=develop[CI]]
1515

1616

1717
|https://drone.io/[Drone]
18-
|https://drone.cpp.al/cppalliance/http_io/branches[image:https://drone.cpp.al/api/badges/cppalliance/http_io/status.svg?ref=refs/heads/master[Build Status]]
19-
|https://drone.cpp.al/cppalliance/http_io/branches[image:https://drone.cpp.al/api/badges/cppalliance/http_io/status.svg?ref=refs/heads/develop[Build Status]]
18+
|https://drone.cpp.al/cppalliance/beast2/branches[image:https://drone.cpp.al/api/badges/cppalliance/beast2/status.svg?ref=refs/heads/master[Build Status]]
19+
|https://drone.cpp.al/cppalliance/beast2/branches[image:https://drone.cpp.al/api/badges/cppalliance/beast2/status.svg?ref=refs/heads/develop[Build Status]]
2020

2121
|https://codecov.io[Codecov]
22-
|https://app.codecov.io/gh/cppalliance/http_io/tree/master[image:https://codecov.io/gh/cppalliance/http_io/branch/master/graph/badge.svg[codecov]]
23-
|https://app.codecov.io/gh/cppalliance/http_io/tree/develop[image:https://codecov.io/gh/cppalliance/http_io/branch/develop/graph/badge.svg[codecov]]
22+
|https://app.codecov.io/gh/cppalliance/beast2/tree/master[image:https://codecov.io/gh/cppalliance/beast2/branch/master/graph/badge.svg[codecov]]
23+
|https://app.codecov.io/gh/cppalliance/beast2/tree/develop[image:https://codecov.io/gh/cppalliance/beast2/branch/develop/graph/badge.svg[codecov]]
2424

2525
|===
2626

27-
== boost.http_io
27+
== boost.beast2
2828

2929
=== Visual Studio Solution
3030

3131
```cpp
32-
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_io/cmake/toolchains/msvc.cmake"
33-
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_io/cmake/toolchains/msvc.cmake"
32+
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/beast2/cmake/toolchains/msvc.cmake"
33+
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/beast2/cmake/toolchains/msvc.cmake"
3434
```

build/Jamfile

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Distributed under the Boost Software License, Version 1.0. (See accompanying
55
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
66
#
7-
# Official repository: https://github.com/CPPAlliance/http_io
7+
# Official repository: https://github.com/cppalliance/beast2
88
#
99

1010
import ../../config/checks/config : requires ;
@@ -19,38 +19,38 @@ constant c11-requires :
1919
]
2020
;
2121

22-
path-constant HTTP_IO_ROOT : .. ;
22+
path-constant BEAST2_ROOT : .. ;
2323

2424
explicit
2525
[ searched-lib ws2_32 : : <target-os>windows ] # NT
2626
[ searched-lib mswsock : : <target-os>windows ] # NT
2727
;
2828

29-
project boost/http_io
29+
project boost/beast2
3030
: common-requirements
3131
$(c11-requires)
32-
<link>shared:<define>BOOST_HTTP_IO_DYN_LINK=1
33-
<link>static:<define>BOOST_HTTP_IO_STATIC_LINK=1
32+
<link>shared:<define>BOOST_BEAST2_DYN_LINK=1
33+
<link>static:<define>BOOST_BEAST2_STATIC_LINK=1
3434
<target-os>windows:<define>_WIN32_WINNT=0x0601 # VFALCO?
3535
<target-os>windows,<toolset>gcc:<library>ws2_32
3636
<target-os>windows,<toolset>gcc:<library>mswsock
3737
<target-os>windows,<toolset>gcc-cygwin:<define>__USE_W32_SOCKETS
38-
: source-location $(HTTP_IO_ROOT)
38+
: source-location $(BEAST2_ROOT)
3939
;
4040

41-
alias http_io_sources : [ glob-tree-ex ./src : *.cpp ] ;
41+
alias beast2_sources : [ glob-tree-ex ./src : *.cpp ] ;
4242

43-
explicit http_io_sources ;
43+
explicit beast2_sources ;
4444

45-
lib boost_http_io
46-
: http_io_sources
45+
lib boost_beast2
46+
: beast2_sources
4747
: requirements
4848
<library>/boost//http_proto
4949
<library>/boost//url
5050
<include>../
51-
<define>BOOST_HTTP_IO_SOURCE
51+
<define>BOOST_BEAST2_SOURCE
5252
: usage-requirements
5353
<library>/boost//http_proto
5454
;
5555

56-
boost-install boost_http_io ;
56+
boost-install boost_beast2 ;

doc/antora.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
name: http_io
1+
name: beast2
22
version: ~
3-
title: Boost.Http.Io
3+
title: Boost.Beast2
44
start_page: index.adoc
55
asciidoc:
66
attributes:

0 commit comments

Comments
 (0)