Merge pull request #13542 from rabbitmq/rabbitmq-server-13541

Increase initial AMQP 0-9-1 connection frame size limit
This commit is contained in:
Michael Klishin 2025-03-15 19:55:47 -04:00 committed by GitHub
commit cc0989f679
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@
-define(FRAME_HEADER, 2).
-define(FRAME_BODY, 3).
-define(FRAME_HEARTBEAT, 8).
-define(FRAME_MIN_SIZE, 4096).
-define(FRAME_MIN_SIZE, 8192).
-define(FRAME_END, 206).
-define(REPLY_SUCCESS, 200).
-define(CONTENT_TOO_LARGE, 311).