diff options
| author | Ed Tanous <ed.tanous@intel.com> | 2019-10-10 15:39:33 -0700 |
|---|---|---|
| committer | Ed Tanous <ed.tanous@intel.com> | 2019-10-18 16:20:11 +0000 |
| commit | c94ad49bc747e7a7170287b9f4c859e3638cf432 (patch) | |
| tree | 17ca83806e5b546f20c3478862fe1aa699e2ae22 /redfish-core/include | |
| parent | 789771dda22c256afa9e46ffe4c859bb87532af1 (diff) | |
| download | bmcweb-c94ad49bc747e7a7170287b9f4c859e3638cf432.tar.gz bmcweb-c94ad49bc747e7a7170287b9f4c859e3638cf432.zip | |
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
Diffstat (limited to 'redfish-core/include')
| -rw-r--r-- | redfish-core/include/error_messages.hpp | 2 | ||||
| -rw-r--r-- | redfish-core/include/node.hpp | 4 | ||||
| -rw-r--r-- | redfish-core/include/privileges.hpp | 2 | ||||
| -rw-r--r-- | redfish-core/include/utils/json_utils.hpp | 4 |
4 files changed, 6 insertions, 6 deletions
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> |

