version 4.0.7.1 61/3161/1
authoraa7133@att.com <aa7133@att.com>
Mon, 6 Apr 2020 14:13:58 +0000 (17:13 +0300)
committeraa7133@att.com <aa7133@att.com>
Mon, 6 Apr 2020 14:14:12 +0000 (17:14 +0300)
change the receive buffer of RMR to 128K

Change-Id: I02f55ea8c785d803e9112b498b18c3e694de0e59
Signed-off-by: aa7133@att.com <aa7133@att.com>
RIC-E2-TERMINATION/sctpThread.cpp

index d484f71..b65b1be 100644 (file)
@@ -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;