Make references to crow less obvious
Recently, a number of people in the community have made the (admittedly
easy) mistake that we use a significant portion of crow.
Today, we use crow for the router, and the "app" structure, and even
those have been significantly modified to meet the bmc needs. All other
components have been replaced with Boost beast. This commit removes the
crow mentions from the Readme, and moves the crow folder to "http" to
camouflage it a little. No code content has changed.
Tested:
Code compiles. No functional change made to any executable code.
Signed-off-by: Ed Tanous <ed.tanous@intel.com>
Change-Id: Iceb57b26306cc8bdcfc77f3874246338864fd118
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 0268ed8..9a69704 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -202,7 +202,7 @@
if (NOT "${BMCWEB_INSECURE_DISABLE_SSL}")
add_definitions (-DBMCWEB_ENABLE_SSL)
endif (NOT "${BMCWEB_INSECURE_DISABLE_SSL}")
-include_directories (${CMAKE_CURRENT_SOURCE_DIR}/crow/include)
+include_directories (${CMAKE_CURRENT_SOURCE_DIR}/http)
# Zlib
find_package (ZLIB REQUIRED)
diff --git a/README.md b/README.md
index 9fb5d54..93660ed 100644
--- a/README.md
+++ b/README.md
@@ -34,24 +34,3 @@
- has a random serial number, and
- is signed using the `SHA-256` algorithm.
-## Crow patches ##
-The crow project has had a number of additions to make it more useful for use in the OpenBmc Project. A non-exhaustive list is below. At the time of this writing, the crow project is not accepting patches, so for the time being crow will simply be checked in as is.
-
-+ Applied clang-format to the whole crow tree. This was done without regard for arrays and fixed data structures, but was deemed to be overall better than the inconsistent formatting that existed in upstream previously.
-+ Crow server now calls stop before destruction of the Crow app object.
-+ Fixed a bug where timed out websockets would seg fault the system by accessing a destroyed socket object without null checks when in SSL mode.
-+ Added a TestSocketAdapter class that could be used to unit test server behavior without utilizing a socket.
-+ Added the "getRoutes" call to both the app and the routing Trie class that allows consumers to poll the server for all (or a subset of) registered web routes in the system.
-+ Hardcoded the websocket implementation for binary mode, instead of leaving protocol unspecified.
-+ Move most uses of std::unordered_map to boost::flat_map to lower memory consumption, and (in some cases) to improve memory locality.
-+ Adjust the addHeaders mechanism to use a fixed string instead of a full map implementation to avoid unnecessary mallocs and reduce the number of scatter gather buffers on an http response.
-+ Change server name header from Crow/0.1 to iBMC
-+ Starts the http server io_context inside the main thread, instead of creating a new thread.
-+ Removes all BMCWEB_MSVC_WORKAROUND flags.
-+ Removes the behavior that causes a 301 redirect for paths that end in "/", and simply returns the endpoint requested. This was done for redfish compatibility.
-+ Removes the built in crow/json.hpp package and adds nlohmann json package as the first class json package for crow.
-+ Move uses of boost::array to std::array where possible.
-+ Add the ability to get a reference to the crow::Request object on websocket connection to allow checking header values.
-+ Patch http handler to call middlewares on websocket connections to allow authentication to be applied appropriately.
-+ Adds an is_secure flag to provide information about whether or not the payload was delivered over ssl.
-
diff --git a/crow/README.md b/crow/README.md
deleted file mode 100644
index 4fd4492..0000000
--- a/crow/README.md
+++ /dev/null
@@ -1,184 +0,0 @@
-
-
-Crow is C++ microframework for web. (inspired by Python Flask)
-
-[](https://travis-ci.org/ipkn/crow)
-[](https://coveralls.io/r/ipkn/crow?branch=master)
-
-```c++
-#include "crow.h"
-
-int main()
-{
- crow::SimpleApp app;
-
- BMCWEB_ROUTE(app, "/")([](){
- return "Hello world";
- });
-
- app.port(18080).multithreaded().run();
-}
-```
-
-## Features
-
- - Easy routing
- - Similiar to Flask
- - Type-safe Handlers (see Example)
- - Very Fast
- - 
- - More data on [crow-benchmark](https://github.com/ipkn/crow-benchmark)
- - Fast built-in JSON parser (crow::json)
- - You can also use [json11](https://github.com/dropbox/json11) or [rapidjson](https://github.com/miloyip/rapidjson) for better speed or readability
- - [Mustache](http://mustache.github.io/) based templating library (crow::mustache)
- - Header only
- - Provide an amalgamated header file `BMCWEB_all.h' with every features
- - Middleware support
- - Websocket support
-
-## Still in development
- - ~~Built-in ORM~~
- - Check [sqlpp11](https://github.com/rbock/sqlpp11) if you want one.
-
-## Examples
-
-#### JSON Response
-```c++
-BMCWEB_ROUTE(app, "/json")
-([]{
- crow::json::wvalue x;
- x["message"] = "Hello, World!";
- return x;
-});
-```
-
-#### Arguments
-```c++
-BMCWEB_ROUTE(app,"/hello/<int>")
-([](int count){
- if (count > 100)
- return crow::Response(400);
- std::ostringstream os;
- os << count << " bottles of beer!";
- return crow::Response(os.str());
-});
-```
-Handler arguments type check at compile time
-```c++
-// Compile error with message "Handler type is mismatched with URL paramters"
-BMCWEB_ROUTE(app,"/another/<int>")
-([](int a, int b){
- return crow::Response(500);
-});
-```
-
-#### Handling JSON Requests
-```c++
-BMCWEB_ROUTE(app, "/add_json")
-.methods("POST"_method)
-([](const crow::Request& req){
- auto x = crow::json::load(req.body);
- if (!x)
- return crow::Response(400);
- int sum = x["a"].i()+x["b"].i();
- std::ostringstream os;
- os << sum;
- return crow::Response{os.str()};
-});
-```
-
-## How to Build
-
-If you just want to use crow, copy amalgamate/BMCWEB_all.h and include it.
-
-### Requirements
-
- - C++ compiler with good C++11 support (tested with g++>=4.8)
- - boost library
- - CMake for build examples
- - Linking with tcmalloc/jemalloc is recommended for speed.
-
- - Now supporting VS2013 with limited functionality (only run-time check for url is available.)
-
-### Building (Tests, Examples)
-
-Out-of-source build with CMake is recommended.
-
-```
-mkdir build
-cd build
-cmake ..
-make
-```
-
-You can run tests with following commands:
-```
-ctest
-```
-
-
-### Installing missing dependencies
-
-#### Ubuntu
- sudo apt-get install build-essential libtcmalloc-minimal4 && sudo ln -s /usr/lib/libtcmalloc_minimal.so.4 /usr/lib/libtcmalloc_minimal.so
-
-#### OSX
- brew install boost google-perftools
-
-### Attributions
-
-Crow uses the following libraries.
-
- http-parser
-
- https://github.com/nodejs/http-parser
-
- http_parser.c is based on src/http/ngx_http_parse.c from NGINX copyright
- Igor Sysoev.
-
- Additional changes are licensed under the same terms as NGINX and
- copyright Joyent, Inc. and other Node contributors. All rights reserved.
-
- Permission is hereby granted, free of charge, to any person obtaining a copy
- of this software and associated documentation files (the "Software"), to
- deal in the Software without restriction, including without limitation the
- rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
- sell copies of the Software, and to permit persons to whom the Software is
- furnished to do so, subject to the following conditions:
-
- The above copyright notice and this permission notice shall be included in
- all copies or substantial portions of the Software.
-
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
- IN THE SOFTWARE.
-
-
- qs_parse
-
- https://github.com/bartgrantham/qs_parse
-
- Copyright (c) 2010 Bart Grantham
- Permission is hereby granted, free of charge, to any person obtaining a copy
- of this software and associated documentation files (the "Software"), to deal
- in the Software without restriction, including without limitation the rights
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- copies of the Software, and to permit persons to whom the Software is
- furnished to do so, subject to the following conditions:
- The above copyright notice and this permission notice shall be included in
- all copies or substantial portions of the Software.
-
-
- TinySHA1
-
- https://github.com/mohaps/TinySHA1
-
- TinySHA1 - a header only implementation of the SHA1 algorithm. Based on the implementation in boost::uuid::details
-
- Copyright (c) 2012-22 SAURAV MOHAPATRA mohaps@gmail.com
- Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
diff --git a/crow/include/crow.h b/crow/include/crow.h
deleted file mode 100644
index 7fe640a..0000000
--- a/crow/include/crow.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#pragma once
-#include "boost/beast/core.hpp"
-
-#include "crow/app.h"
-#include "crow/common.h"
-#include "crow/http_connection.h"
-#include "crow/http_request.h"
-#include "crow/http_response.h"
-#include "crow/http_server.h"
-#include "crow/logging.h"
-#include "crow/middleware_context.h"
-#include "crow/query_string.h"
-#include "crow/routing.h"
-#include "crow/timer_queue.h"
-#include "crow/utility.h"
-#include "crow/websocket.h"
diff --git a/crow/include/crow/settings.h b/crow/include/crow/settings.h
deleted file mode 100644
index 959eb95..0000000
--- a/crow/include/crow/settings.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#pragma once
-// settings for crow
-// TODO - replace with runtime config. libucl?
-
-/* #define - specifies log level */
-/*
- Debug = 0
- Info = 1
- Warning = 2
- Error = 3
- Critical = 4
-
- default to INFO
-*/
-#define BMCWEB_LOG_LEVEL 1
-
-#if defined(_MSC_VER)
-#error "MSVC is not supported"
-#endif
diff --git a/crow/LICENSE b/http/LICENSE
similarity index 100%
rename from crow/LICENSE
rename to http/LICENSE
diff --git a/crow/include/crow/app.h b/http/app.h
similarity index 97%
rename from crow/include/crow/app.h
rename to http/app.h
index 7885c02..fd01340 100644
--- a/crow/include/crow/app.h
+++ b/http/app.h
@@ -10,12 +10,12 @@
#include <string>
#include <utility>
-#include "crow/http_request.h"
-#include "crow/http_server.h"
-#include "crow/logging.h"
-#include "crow/middleware_context.h"
-#include "crow/routing.h"
-#include "crow/utility.h"
+#include "http_request.h"
+#include "http_server.h"
+#include "logging.h"
+#include "middleware_context.h"
+#include "routing.h"
+#include "utility.h"
#define BMCWEB_ROUTE(app, url) \
app.template route<crow::black_magic::get_parameter_tag(url)>(url)
diff --git a/crow/include/crow/common.h b/http/common.h
similarity index 98%
rename from crow/include/crow/common.h
rename to http/common.h
index 9dc8220..77c2074 100644
--- a/crow/include/crow/common.h
+++ b/http/common.h
@@ -6,7 +6,7 @@
#include <string>
#include <vector>
-#include "crow/utility.h"
+#include "utility.h"
namespace crow
{
diff --git a/crow/include/crow/http_connection.h b/http/http_connection.h
similarity index 98%
rename from crow/include/crow/http_connection.h
rename to http/http_connection.h
index 5c9be09..ef42f84 100644
--- a/crow/include/crow/http_connection.h
+++ b/http/http_connection.h
@@ -18,11 +18,11 @@
#include <chrono>
#include <vector>
-#include "crow/http_response.h"
-#include "crow/logging.h"
-#include "crow/middleware_context.h"
-#include "crow/timer_queue.h"
-#include "crow/utility.h"
+#include "http_response.h"
+#include "logging.h"
+#include "middleware_context.h"
+#include "timer_queue.h"
+#include "utility.h"
namespace crow
{
diff --git a/crow/include/crow/http_request.h b/http/http_request.h
similarity index 95%
rename from crow/include/crow/http_request.h
rename to http/http_request.h
index c8551cd..caae93a 100644
--- a/crow/include/crow/http_request.h
+++ b/http/http_request.h
@@ -6,8 +6,8 @@
#include <boost/beast/http.hpp>
#include <boost/beast/websocket.hpp>
-#include "crow/common.h"
-#include "crow/query_string.h"
+#include "common.h"
+#include "query_string.h"
namespace crow
{
diff --git a/crow/include/crow/http_response.h b/http/http_response.h
similarity index 97%
rename from crow/include/crow/http_response.h
rename to http/http_response.h
index 640197f..6d7ca26 100644
--- a/crow/include/crow/http_response.h
+++ b/http/http_response.h
@@ -4,8 +4,8 @@
#include <boost/beast/http.hpp>
#include <string>
-#include "crow/http_request.h"
-#include "crow/logging.h"
+#include "http_request.h"
+#include "logging.h"
namespace crow
{
diff --git a/crow/include/crow/http_server.h b/http/http_server.h
similarity index 98%
rename from crow/include/crow/http_server.h
rename to http/http_server.h
index 2e43056..ef50bf7 100644
--- a/crow/include/crow/http_server.h
+++ b/http/http_server.h
@@ -22,9 +22,9 @@
#include <utility>
#include <vector>
-#include "crow/http_connection.h"
-#include "crow/logging.h"
-#include "crow/timer_queue.h"
+#include "http_connection.h"
+#include "logging.h"
+#include "timer_queue.h"
namespace crow
{
diff --git a/crow/include/crow/logging.h b/http/logging.h
similarity index 100%
rename from crow/include/crow/logging.h
rename to http/logging.h
diff --git a/crow/include/crow/middleware_context.h b/http/middleware_context.h
similarity index 95%
rename from crow/include/crow/middleware_context.h
rename to http/middleware_context.h
index 2247ca6..fbe1d80 100644
--- a/crow/include/crow/middleware_context.h
+++ b/http/middleware_context.h
@@ -1,8 +1,8 @@
#pragma once
-#include "crow/http_request.h"
-#include "crow/http_response.h"
-#include "crow/utility.h"
+#include "http_request.h"
+#include "http_response.h"
+#include "utility.h"
namespace crow
{
diff --git a/crow/include/crow/query_string.h b/http/query_string.h
similarity index 100%
rename from crow/include/crow/query_string.h
rename to http/query_string.h
diff --git a/crow/include/crow/routing.h b/http/routing.h
similarity index 99%
rename from crow/include/crow/routing.h
rename to http/routing.h
index 6297448..b2355e9 100644
--- a/crow/include/crow/routing.h
+++ b/http/routing.h
@@ -15,12 +15,12 @@
#include <utility>
#include <vector>
-#include "crow/common.h"
-#include "crow/http_request.h"
-#include "crow/http_response.h"
-#include "crow/logging.h"
-#include "crow/utility.h"
-#include "crow/websocket.h"
+#include "common.h"
+#include "http_request.h"
+#include "http_response.h"
+#include "logging.h"
+#include "utility.h"
+#include "websocket.h"
namespace crow
{
diff --git a/crow/include/crow/timer_queue.h b/http/timer_queue.h
similarity index 98%
rename from crow/include/crow/timer_queue.h
rename to http/timer_queue.h
index 35e4048..26eea13 100644
--- a/crow/include/crow/timer_queue.h
+++ b/http/timer_queue.h
@@ -5,7 +5,7 @@
#include <chrono>
#include <functional>
-#include "crow/logging.h"
+#include "logging.h"
namespace crow
{
diff --git a/crow/include/crow/utility.h b/http/utility.h
similarity index 100%
rename from crow/include/crow/utility.h
rename to http/utility.h
diff --git a/crow/include/crow/websocket.h b/http/websocket.h
similarity index 99%
rename from crow/include/crow/websocket.h
rename to http/websocket.h
index 7166c82..61b3e5a 100644
--- a/crow/include/crow/websocket.h
+++ b/http/websocket.h
@@ -5,7 +5,7 @@
#include <boost/beast/websocket.hpp>
#include <functional>
-#include "crow/http_request.h"
+#include "http_request.h"
#ifdef BMCWEB_ENABLE_SSL
#include <boost/beast/websocket/ssl.hpp>
diff --git a/include/dbus_monitor.hpp b/include/dbus_monitor.hpp
index 8c46cf4..662d3c6 100644
--- a/include/dbus_monitor.hpp
+++ b/include/dbus_monitor.hpp
@@ -1,6 +1,6 @@
#pragma once
-#include <crow/app.h>
-#include <crow/websocket.h>
+#include <app.h>
+#include <websocket.h>
#include <boost/container/flat_map.hpp>
#include <boost/container/flat_set.hpp>
diff --git a/include/http_utility.hpp b/include/http_utility.hpp
index b20952b..6f55c59 100644
--- a/include/http_utility.hpp
+++ b/include/http_utility.hpp
@@ -1,7 +1,7 @@
#pragma once
#include <boost/algorithm/string.hpp>
-#include "crow/http_request.h"
+#include "http_request.h"
namespace http_helpers
{
diff --git a/include/image_upload.hpp b/include/image_upload.hpp
index 529e056..ba9c403 100644
--- a/include/image_upload.hpp
+++ b/include/image_upload.hpp
@@ -1,6 +1,6 @@
#pragma once
-#include <crow/app.h>
+#include <app.h>
#include <boost/uuid/uuid.hpp>
#include <boost/uuid/uuid_generators.hpp>
diff --git a/include/kvm_websocket.hpp b/include/kvm_websocket.hpp
index 9fc3926..817f7c4 100644
--- a/include/kvm_websocket.hpp
+++ b/include/kvm_websocket.hpp
@@ -1,7 +1,7 @@
#pragma once
-#include <crow/app.h>
-#include <crow/websocket.h>
+#include <app.h>
#include <sys/socket.h>
+#include <websocket.h>
#include <boost/container/flat_map.hpp>
#include <webserver_common.hpp>
diff --git a/include/obmc_console.hpp b/include/obmc_console.hpp
index 25f3b39..b8afba6 100644
--- a/include/obmc_console.hpp
+++ b/include/obmc_console.hpp
@@ -1,7 +1,7 @@
#pragma once
-#include <crow/app.h>
-#include <crow/websocket.h>
+#include <app.h>
#include <sys/socket.h>
+#include <websocket.h>
#include <boost/container/flat_map.hpp>
#include <boost/container/flat_set.hpp>
diff --git a/include/openbmc_dbus_rest.hpp b/include/openbmc_dbus_rest.hpp
index 749e899..93c198e 100644
--- a/include/openbmc_dbus_rest.hpp
+++ b/include/openbmc_dbus_rest.hpp
@@ -13,7 +13,7 @@
// limitations under the License.
#pragma once
-#include <crow/app.h>
+#include <app.h>
#include <tinyxml2.h>
#include <async_resp.hpp>
diff --git a/include/persistent_data_middleware.hpp b/include/persistent_data_middleware.hpp
index 5d7e97c..c368ab2 100644
--- a/include/persistent_data_middleware.hpp
+++ b/include/persistent_data_middleware.hpp
@@ -1,8 +1,8 @@
#pragma once
-#include <crow/app.h>
-#include <crow/http_request.h>
-#include <crow/http_response.h>
+#include <app.h>
+#include <http_request.h>
+#include <http_response.h>
#include <boost/container/flat_map.hpp>
#include <boost/uuid/uuid.hpp>
diff --git a/include/redfish_v1.hpp b/include/redfish_v1.hpp
index f1dbfd2..3e97ad1 100644
--- a/include/redfish_v1.hpp
+++ b/include/redfish_v1.hpp
@@ -1,6 +1,6 @@
#pragma once
-#include <crow/app.h>
+#include <app.h>
#include <boost/algorithm/string.hpp>
#include <dbus_singleton.hpp>
diff --git a/include/security_headers_middleware.hpp b/include/security_headers_middleware.hpp
index a89acaa..f60ce76 100644
--- a/include/security_headers_middleware.hpp
+++ b/include/security_headers_middleware.hpp
@@ -1,7 +1,7 @@
#pragma once
-#include <crow/http_request.h>
-#include <crow/http_response.h>
+#include <http_request.h>
+#include <http_response.h>
namespace crow
{
diff --git a/include/sessions.hpp b/include/sessions.hpp
index b183a0e..df65d61 100644
--- a/include/sessions.hpp
+++ b/include/sessions.hpp
@@ -10,7 +10,7 @@
#include <random>
#include <sdbusplus/bus/match.hpp>
-#include "crow/logging.h"
+#include "logging.h"
namespace crow
{
diff --git a/include/token_authorization_middleware.hpp b/include/token_authorization_middleware.hpp
index 2ff3879..0a44050 100644
--- a/include/token_authorization_middleware.hpp
+++ b/include/token_authorization_middleware.hpp
@@ -1,9 +1,9 @@
#pragma once
-#include <crow/app.h>
-#include <crow/common.h>
-#include <crow/http_request.h>
-#include <crow/http_response.h>
+#include <app.h>
+#include <common.h>
+#include <http_request.h>
+#include <http_response.h>
#include <boost/container/flat_set.hpp>
#include <pam_authenticate.hpp>
diff --git a/include/vm_websocket.hpp b/include/vm_websocket.hpp
index 6485920..57a690c 100644
--- a/include/vm_websocket.hpp
+++ b/include/vm_websocket.hpp
@@ -1,8 +1,8 @@
#pragma once
-#include <crow/app.h>
-#include <crow/websocket.h>
+#include <app.h>
#include <signal.h>
+#include <websocket.h>
#include <boost/beast/core/flat_static_buffer.hpp>
#include <boost/process.hpp>
diff --git a/include/webassets.hpp b/include/webassets.hpp
index daead98..aec7dba 100644
--- a/include/webassets.hpp
+++ b/include/webassets.hpp
@@ -1,9 +1,9 @@
#pragma once
-#include <crow/app.h>
-#include <crow/http_request.h>
-#include <crow/http_response.h>
-#include <crow/routing.h>
+#include <app.h>
+#include <http_request.h>
+#include <http_response.h>
+#include <routing.h>
#include <boost/algorithm/string/replace.hpp>
#include <boost/container/flat_set.hpp>
diff --git a/redfish-core/include/error_messages.hpp b/redfish-core/include/error_messages.hpp
index d92a2b4..0295d49 100644
--- a/redfish-core/include/error_messages.hpp
+++ b/redfish-core/include/error_messages.hpp
@@ -24,7 +24,7 @@
#pragma once
#include <nlohmann/json.hpp>
-#include "crow/http_response.h"
+#include "http_response.h"
namespace redfish
{
diff --git a/redfish-core/include/node.hpp b/redfish-core/include/node.hpp
index 4c78eef..936e19f 100644
--- a/redfish-core/include/node.hpp
+++ b/redfish-core/include/node.hpp
@@ -22,8 +22,8 @@
#include <error_messages.hpp>
#include <vector>
-#include "crow/http_request.h"
-#include "crow/http_response.h"
+#include "http_request.h"
+#include "http_response.h"
namespace redfish
{
diff --git a/redfish-core/include/privileges.hpp b/redfish-core/include/privileges.hpp
index 09fa05a..61253b8 100644
--- a/redfish-core/include/privileges.hpp
+++ b/redfish-core/include/privileges.hpp
@@ -15,7 +15,7 @@
*/
#pragma once
-#include <crow/logging.h>
+#include <logging.h>
#include <array>
#include <bitset>
diff --git a/redfish-core/include/utils/json_utils.hpp b/redfish-core/include/utils/json_utils.hpp
index cf3227a..5f3f098 100644
--- a/redfish-core/include/utils/json_utils.hpp
+++ b/redfish-core/include/utils/json_utils.hpp
@@ -15,8 +15,8 @@
*/
#pragma once
-#include <crow/http_request.h>
-#include <crow/http_response.h>
+#include <http_request.h>
+#include <http_response.h>
#include <bitset>
#include <error_messages.hpp>
diff --git a/redfish-core/src/error_messages.cpp b/redfish-core/src/error_messages.cpp
index ca99870..b9d72ea 100644
--- a/redfish-core/src/error_messages.cpp
+++ b/redfish-core/src/error_messages.cpp
@@ -13,7 +13,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
*/
-#include <crow/logging.h>
+#include <logging.h>
#include <error_messages.hpp>
diff --git a/src/crow_getroutes_test.cpp b/src/crow_getroutes_test.cpp
index e76d221..20c14ea 100644
--- a/src/crow_getroutes_test.cpp
+++ b/src/crow_getroutes_test.cpp
@@ -1,4 +1,4 @@
-#include <crow/app.h>
+#include <app.h>
#include "gmock/gmock.h"
#include "gtest/gtest.h"
diff --git a/src/security_headers_middleware_test.cpp b/src/security_headers_middleware_test.cpp
index 4fa3003..500839a 100644
--- a/src/security_headers_middleware_test.cpp
+++ b/src/security_headers_middleware_test.cpp
@@ -1,4 +1,4 @@
-#include <crow/app.h>
+#include <app.h>
#include <security_headers_middleware.hpp>
diff --git a/src/webassets_test.cpp b/src/webassets_test.cpp
index 3df7542..4f010a6 100644
--- a/src/webassets_test.cpp
+++ b/src/webassets_test.cpp
@@ -1,4 +1,4 @@
-#include <crow/app.h>
+#include <app.h>
#include <boost/algorithm/string/predicate.hpp>
#include <boost/lexical_cast.hpp>
diff --git a/src/webserver_main.cpp b/src/webserver_main.cpp
index c477581..78b4a41 100644
--- a/src/webserver_main.cpp
+++ b/src/webserver_main.cpp
@@ -1,4 +1,4 @@
-#include <crow/app.h>
+#include <app.h>
#include <systemd/sd-daemon.h>
#include <boost/asio/io_context.hpp>