Skip to content
Snippets Groups Projects
Commit f5511d45 authored by Mergen Imeev's avatar Mergen Imeev Committed by Vladimir Davydov
Browse files

app: increase max configuration parameters length

The maximum length of box.cfg{} string parameters is now 512 instead of
256 before.

NO_DOC=no need to document
NO_TEST=will be added in EE
parent e13f2bf5
No related branches found
No related tags found
No related merge requests found
## feature/box
* The maximum length of `box.cfg{}` string parameters is now 512 instead of 256.
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
#include "tt_static.h" #include "tt_static.h"
#include "lua/uri.h" #include "lua/uri.h"
enum { MAX_OPT_NAME_LEN = 256, MAX_OPT_VAL_LEN = 256 }; enum { MAX_OPT_NAME_LEN = 256, MAX_OPT_VAL_LEN = 512 };
static void static void
cfg_get(const char *param) cfg_get(const char *param)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment