increase MAX_NPL_MSG_QUEUE_SIZE and MAX_CONTROL_MSG_QUEUE_SIZE

Increased to accommodate 64 member UNL and the additional messaging that brings.
This commit is contained in:
onledger.net
2025-06-15 13:34:00 +12:00
committed by GitHub
parent ae9c5cf208
commit 9153e5d43b

View File

@@ -16,8 +16,8 @@
*/
namespace sc
{
constexpr uint16_t MAX_NPL_MSG_QUEUE_SIZE = 255; // Maximum npl message queue size, The size passed is rounded to next number in binary sequence 1(1),11(3),111(7),1111(15),11111(31)....
constexpr uint16_t MAX_CONTROL_MSG_QUEUE_SIZE = 255; // Maximum out message queue size, The size passed is rounded to next number in binary sequence 1(1),11(3),111(7),1111(15),11111(31)....
constexpr uint16_t MAX_NPL_MSG_QUEUE_SIZE = 1023; // Maximum npl message queue size, The size passed is rounded to next number in binary sequence 1(1),11(3),111(7),1111(15),11111(31)....
constexpr uint16_t MAX_CONTROL_MSG_QUEUE_SIZE = 1023; // Maximum out message queue size, The size passed is rounded to next number in binary sequence 1(1),11(3),111(7),1111(15),11111(31)....
struct fd_pair
{
@@ -216,4 +216,4 @@ namespace sc
} // namespace sc
#endif
#endif