From 641fcd2b2615c226bba8b04d30bc7b5d964b7106 Mon Sep 17 00:00:00 2001 From: mahald Date: Fri, 27 Aug 2021 17:48:32 +0200 Subject: [PATCH] [mod_amqp] Increase max command size --- src/mod/event_handlers/mod_amqp/mod_amqp_command.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mod/event_handlers/mod_amqp/mod_amqp_command.c b/src/mod/event_handlers/mod_amqp/mod_amqp_command.c index f467001f3d..c98c123c07 100644 --- a/src/mod/event_handlers/mod_amqp/mod_amqp_command.c +++ b/src/mod/event_handlers/mod_amqp/mod_amqp_command.c @@ -387,7 +387,7 @@ void * SWITCH_THREAD_FUNC mod_amqp_command_thread(switch_thread_t *thread, void amqp_rpc_reply_t res; amqp_envelope_t envelope; struct timeval timeout = {0}; - char command[1024]; + char command[10240]; enum ECommandFormat { COMMAND_FORMAT_UNKNOWN, COMMAND_FORMAT_PLAINTEXT