diff options
| author | Jo-Philipp Wich | 2019-08-17 19:53:38 +0000 |
|---|---|---|
| committer | Jo-Philipp Wich | 2019-08-17 19:53:38 +0000 |
| commit | 6b03f9605323df23d12e3876feb466f53f8d50c4 (patch) | |
| tree | f915d3c68059af0a93ebc99bd0f4242d3866129d | |
| parent | 91fcac34ac014a565fdd6312de088d312b5ba7ec (diff) | |
| download | uhttpd-6b03f9605323df23d12e3876feb466f53f8d50c4.tar.gz | |
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 { |