Ed Tanous | 0260d9d | 2021-02-07 19:31:07 +0000 | [diff] [blame] | 1 | #pragma once |
| 2 | |
| 3 | #include <cstdint> |
Ed Tanous | 2205bbf | 2021-06-17 13:33:47 -0700 | [diff] [blame] | 4 | #include <cstddef> |
Ed Tanous | 0260d9d | 2021-02-07 19:31:07 +0000 | [diff] [blame] | 5 | |
| 6 | // clang-format off |
| 7 | constexpr const int bmcwebInsecureDisableXssPrevention = |
| 8 | @BMCWEB_INSECURE_DISABLE_XSS_PREVENTION@; |
| 9 | |
Ed Tanous | fa0b217 | 2022-03-24 10:25:03 -0700 | [diff] [blame] | 10 | constexpr const bool bmcwebInsecureEnableQueryParams = @BMCWEB_INSECURE_ENABLE_QUERY_PARAMS@ == 1; |
| 11 | |
Ed Tanous | 0260d9d | 2021-02-07 19:31:07 +0000 | [diff] [blame] | 12 | constexpr const size_t bmcwebHttpReqBodyLimitMb = @BMCWEB_HTTP_REQ_BODY_LIMIT_MB@; |
| 13 | |
| 14 | constexpr const char* mesonInstallPrefix = "@MESON_INSTALL_PREFIX@"; |
Ed Tanous | fa0b217 | 2022-03-24 10:25:03 -0700 | [diff] [blame] | 15 | |
Ed Tanous | eb1c47d | 2022-02-09 11:47:27 -0800 | [diff] [blame] | 16 | constexpr const bool bmcwebInsecureEnableHttpPushStyleEventing = @BMCWEB_INSECURE_ENABLE_HTTP_PUSH_STYLE_EVENTING@ == 1; |
Ed Tanous | 0260d9d | 2021-02-07 19:31:07 +0000 | [diff] [blame] | 17 | // clang-format on |