diff options
Diffstat (limited to 'src/webserver_main.cpp')
-rw-r--r-- | src/webserver_main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/webserver_main.cpp b/src/webserver_main.cpp index 7c64f4c..b357b4e 100644 --- a/src/webserver_main.cpp +++ b/src/webserver_main.cpp @@ -5,6 +5,7 @@ #include <dbus_monitor.hpp> #include <dbus_singleton.hpp> #include <image_upload.hpp> +#include <kvm_websocket.hpp> #include <memory> #include <obmc_console.hpp> #include <openbmc_dbus_rest.hpp> @@ -18,7 +19,6 @@ #include <ssl_key_handler.hpp> #include <string> #include <token_authorization_middleware.hpp> -#include <web_kvm.hpp> #include <webassets.hpp> #include <webserver_common.hpp> @@ -77,7 +77,7 @@ int main(int argc, char** argv) #endif #ifdef BMCWEB_ENABLE_KVM - crow::kvm::requestRoutes(app); + crow::obmc_kvm::requestRoutes(app); #endif #ifdef BMCWEB_ENABLE_REDFISH |