diff options
author | Jo-Philipp Wich <jo@mein.io> | 2019-08-17 21:53:38 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2019-08-17 21:53:38 +0200 |
commit | 6b03f9605323df23d12e3876feb466f53f8d50c4 (patch) | |
tree | f915d3c68059af0a93ebc99bd0f4242d3866129d | |
parent | 91fcac34ac014a565fdd6312de088d312b5ba7ec (diff) |
ubus: increase maximum ubus request size to 64KB
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
-rw-r--r-- | ubus.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -34,7 +34,7 @@ static struct config *_conf; static struct ubus_context *ctx; static struct blob_buf buf; -#define UH_UBUS_MAX_POST_SIZE 4096 +#define UH_UBUS_MAX_POST_SIZE 65536 #define UH_UBUS_DEFAULT_SID "00000000000000000000000000000000" enum { |