Rename to http-server-fast

This commit is contained in:
Vinnie Falco
2017-06-24 12:45:38 -07:00
parent e7b01dc5c4
commit 84d7601bdf
8 changed files with 12 additions and 10 deletions

View File

@ -4,6 +4,7 @@ Version 67:
* Add http-server-small example * Add http-server-small example
* Merge stream_base to stream and tidy * Merge stream_base to stream and tidy
* Use boost::string_view * Use boost::string_view
* Rename to http-server-fast
API Changes: API Changes:

View File

@ -71,8 +71,8 @@ over a TLS connection. Requires OpenSSL to build.
This example implements a very simple HTTP server with This example implements a very simple HTTP server with
some optimizations suitable for calculating benchmarks. some optimizations suitable for calculating benchmarks.
* [repo_file example/http-server/fields_alloc.hpp] * [repo_file example/http-server-fast/fields_alloc.hpp]
* [repo_file example/http-server/http_server.cpp] * [repo_file example/http-server-fast/http_server.cpp]
[endsect] [endsect]

View File

@ -3,7 +3,7 @@
add_subdirectory (echo-op) add_subdirectory (echo-op)
add_subdirectory (http-client) add_subdirectory (http-client)
add_subdirectory (http-crawl) add_subdirectory (http-crawl)
add_subdirectory (http-server) add_subdirectory (http-server-fast)
add_subdirectory (http-server-small) add_subdirectory (http-server-small)
add_subdirectory (server-framework) add_subdirectory (server-framework)
add_subdirectory (websocket-client) add_subdirectory (websocket-client)

View File

@ -8,7 +8,8 @@
build-project echo-op ; build-project echo-op ;
build-project http-client ; build-project http-client ;
build-project http-crawl ; build-project http-crawl ;
build-project http-server ; build-project http-server-fast ;
build-project http-server-small ;
build-project server-framework ; build-project server-framework ;
build-project websocket-client ; build-project websocket-client ;

View File

@ -2,15 +2,15 @@
GroupSources(include/beast beast) GroupSources(include/beast beast)
GroupSources(example/http-server "/") GroupSources(example/http-server-fast "/")
add_executable (http-server add_executable (http-server-fast
${BEAST_INCLUDES} ${BEAST_INCLUDES}
fields_alloc.hpp fields_alloc.hpp
http_server.cpp http_server_fast.cpp
) )
target_link_libraries(http-server target_link_libraries(http-server-fast
Beast Beast
${Boost_FILESYSTEM_LIBRARY} ${Boost_FILESYSTEM_LIBRARY}
) )

View File

@ -5,8 +5,8 @@
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
# #
exe http-server : exe http-server-fast :
http_server.cpp http_server_fast.cpp
: :
<variant>coverage:<build>no <variant>coverage:<build>no
<variant>ubasan:<build>no <variant>ubasan:<build>no