blob: b0a3a7bf511eb43bde3b8507bd42b765269f0597 [file] [log] [blame]
Ed Tanous0260d9d2021-02-07 19:31:07 +00001#pragma once
2
3#include <cstdint>
Ed Tanous2205bbf2021-06-17 13:33:47 -07004#include <cstddef>
Ed Tanous0260d9d2021-02-07 19:31:07 +00005
6// clang-format off
7constexpr const int bmcwebInsecureDisableXssPrevention =
8 @BMCWEB_INSECURE_DISABLE_XSS_PREVENTION@;
9
Ed Tanousfa0b2172022-03-24 10:25:03 -070010constexpr const bool bmcwebInsecureEnableQueryParams = @BMCWEB_INSECURE_ENABLE_QUERY_PARAMS@ == 1;
11
Ed Tanous0260d9d2021-02-07 19:31:07 +000012constexpr const size_t bmcwebHttpReqBodyLimitMb = @BMCWEB_HTTP_REQ_BODY_LIMIT_MB@;
13
14constexpr const char* mesonInstallPrefix = "@MESON_INSTALL_PREFIX@";
Ed Tanousfa0b2172022-03-24 10:25:03 -070015
Ed Tanouseb1c47d2022-02-09 11:47:27 -080016constexpr const bool bmcwebInsecureEnableHttpPushStyleEventing = @BMCWEB_INSECURE_ENABLE_HTTP_PUSH_STYLE_EVENTING@ == 1;
Ed Tanous0260d9d2021-02-07 19:31:07 +000017// clang-format on