summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorEd Tanous <ed@tanous.net>2020-10-07 21:57:19 +0300
committerEd Tanous <ed@tanous.net>2020-10-07 21:58:45 +0300
commitb9c0b581bb5e032dd64f27fc3d89c73758ca96a0 (patch)
treefdabf0783b9300f134188a31f09a477d063a81e4 /meson_options.txt
parentb0bb6f256214ee33782c7c8d00bcf3fa52ae63c1 (diff)
downloadbmcweb-b9c0b581bb5e032dd64f27fc3d89c73758ca96a0.tar.xz
Allow a max payload size of 512MB
It's probably not a great idea to allow that big of a payload on the BMC, but it was supported before, so lets push that discussion to another time. Tested: code builds. Attempting to resolve CI, which will test itself. Signed-off-by: Ed Tanous <ed@tanous.net> Change-Id: I1f9e489075857621f5295d4870dea9f5767666f0
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson_options.txt b/meson_options.txt
index e808f46a03..1b148f45be 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -17,7 +17,7 @@ option('redfish-provisioning-feature', type : 'feature', value : 'disabled', des
option('bmcweb-logging', type : 'feature', value : 'disabled', description : 'Enable output the extended debug logs')
option('mutual-tls-auth', type : 'feature', value : 'enabled', description : '''Enables authenticating users through TLS client certificates. The insecure-disable-ssl must be disabled for this option to take effect.''')
option('ibm-management-console', type : 'feature', value : 'disabled', description : 'Enable the IBM management console specific functionality. Paths are under \'/ibm/v1/\'')
-option('http-body-limit', type: 'integer', min : 0, max : 30, value : 30, description : 'Specifies the http request body length limit')
+option('http-body-limit', type: 'integer', min : 0, max : 512, value : 30, description : 'Specifies the http request body length limit')
# Insecure options. Every option that starts with a `insecure` flag should
# not be enabled by default for any platform, unless the author fully comprehends