mirror of
https://github.com/boostorg/beast.git
synced 2025-07-29 20:37:31 +02:00
Rename to http-server-fast
This commit is contained in:
@ -4,6 +4,7 @@ Version 67:
|
||||
* Add http-server-small example
|
||||
* Merge stream_base to stream and tidy
|
||||
* Use boost::string_view
|
||||
* Rename to http-server-fast
|
||||
|
||||
API Changes:
|
||||
|
||||
|
@ -71,8 +71,8 @@ over a TLS connection. Requires OpenSSL to build.
|
||||
This example implements a very simple HTTP server with
|
||||
some optimizations suitable for calculating benchmarks.
|
||||
|
||||
* [repo_file example/http-server/fields_alloc.hpp]
|
||||
* [repo_file example/http-server/http_server.cpp]
|
||||
* [repo_file example/http-server-fast/fields_alloc.hpp]
|
||||
* [repo_file example/http-server-fast/http_server.cpp]
|
||||
|
||||
[endsect]
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
add_subdirectory (echo-op)
|
||||
add_subdirectory (http-client)
|
||||
add_subdirectory (http-crawl)
|
||||
add_subdirectory (http-server)
|
||||
add_subdirectory (http-server-fast)
|
||||
add_subdirectory (http-server-small)
|
||||
add_subdirectory (server-framework)
|
||||
add_subdirectory (websocket-client)
|
||||
|
@ -8,7 +8,8 @@
|
||||
build-project echo-op ;
|
||||
build-project http-client ;
|
||||
build-project http-crawl ;
|
||||
build-project http-server ;
|
||||
build-project http-server-fast ;
|
||||
build-project http-server-small ;
|
||||
build-project server-framework ;
|
||||
build-project websocket-client ;
|
||||
|
||||
|
@ -2,15 +2,15 @@
|
||||
|
||||
GroupSources(include/beast beast)
|
||||
|
||||
GroupSources(example/http-server "/")
|
||||
GroupSources(example/http-server-fast "/")
|
||||
|
||||
add_executable (http-server
|
||||
add_executable (http-server-fast
|
||||
${BEAST_INCLUDES}
|
||||
fields_alloc.hpp
|
||||
http_server.cpp
|
||||
http_server_fast.cpp
|
||||
)
|
||||
|
||||
target_link_libraries(http-server
|
||||
target_link_libraries(http-server-fast
|
||||
Beast
|
||||
${Boost_FILESYSTEM_LIBRARY}
|
||||
)
|
@ -5,8 +5,8 @@
|
||||
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
||||
#
|
||||
|
||||
exe http-server :
|
||||
http_server.cpp
|
||||
exe http-server-fast :
|
||||
http_server_fast.cpp
|
||||
:
|
||||
<variant>coverage:<build>no
|
||||
<variant>ubasan:<build>no
|
Reference in New Issue
Block a user