From: aa7133@att.com Date: Mon, 6 Apr 2020 14:13:58 +0000 (+0300) Subject: version 4.0.7.1 X-Git-Tag: 5.4.8~51 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=ab0e0f434145360f985b1d76ede90ad629c6cd4d;p=ric-plt%2Fe2.git version 4.0.7.1 change the receive buffer of RMR to 128K Change-Id: I02f55ea8c785d803e9112b498b18c3e694de0e59 Signed-off-by: aa7133@att.com --- 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;