From 6b03f9605323df23d12e3876feb466f53f8d50c4 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Sat, 17 Aug 2019 21:53:38 +0200 Subject: [PATCH] ubus: increase maximum ubus request size to 64KB Signed-off-by: Jo-Philipp Wich --- ubus.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ubus.c b/ubus.c index 8cfbd97..8578631 100644 --- a/ubus.c +++ b/ubus.c @@ -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 { -- 2.30.2