From ab0e0f434145360f985b1d76ede90ad629c6cd4d Mon Sep 17 00:00:00 2001 From: "aa7133@att.com" Date: Mon, 6 Apr 2020 17:13:58 +0300 Subject: [PATCH] version 4.0.7.1 change the receive buffer of RMR to 128K Change-Id: I02f55ea8c785d803e9112b498b18c3e694de0e59 Signed-off-by: aa7133@att.com --- RIC-E2-TERMINATION/sctpThread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RIC-E2-TERMINATION/sctpThread.cpp b/RIC-E2-TERMINATION/sctpThread.cpp index d484f71..b65b1be 100644 --- a/RIC-E2-TERMINATION/sctpThread.cpp +++ b/RIC-E2-TERMINATION/sctpThread.cpp @@ -1874,7 +1874,7 @@ int sendRequestToXapp(ReportingMessages_t &message, void getRmrContext(sctp_params_t &pSctpParams) { pSctpParams.rmrCtx = nullptr; - pSctpParams.rmrCtx = rmr_init(pSctpParams.rmrAddress, RMR_MAX_RCV_BYTES, RMRFL_NONE); + pSctpParams.rmrCtx = rmr_init(pSctpParams.rmrAddress, RECEIVE_XAPP_BUFFER_SIZE, RMRFL_NONE); if (pSctpParams.rmrCtx == nullptr) { mdclog_write(MDCLOG_ERR, "Failed to initialize RMR"); return; -- 2.16.6