mirror of https://git.48k.eu/ogserver
#915 increase maximum API REST response size
GET /scope could generate a response larger than 64 Kbytes. Rise the maximum API REST response size to 256 Kbytes.master
parent
90eab86796
commit
49fc6c5c5c
|
@ -348,7 +348,7 @@ struct og_buffer {
|
||||||
int len;
|
int len;
|
||||||
};
|
};
|
||||||
|
|
||||||
#define OG_MSG_RESPONSE_MAXLEN 65536
|
#define OG_MSG_RESPONSE_MAXLEN 262144
|
||||||
|
|
||||||
static int og_json_dump_clients(const char *buffer, size_t size, void *data)
|
static int og_json_dump_clients(const char *buffer, size_t size, void *data)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue