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 /src | |
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 'src')
-rw-r--r-- | src/crow_getroutes_test.cpp | 2 | ||||
-rw-r--r-- | src/security_headers_middleware_test.cpp | 2 | ||||
-rw-r--r-- | src/webassets_test.cpp | 2 | ||||
-rw-r--r-- | src/webserver_main.cpp | 2 |
4 files changed, 4 insertions, 4 deletions
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> |