X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2Fcm%2Flsctp.c;h=12f673dcd73fd9b344fbc17c57496074e39de089;hb=d84801d796815c8d5ad3be643687b470511af945;hp=c28cc1d8478a742e4938a7f0c29e01aa56dc092e;hpb=4d45b914f9e94203603d3b9fdbcb1aad361301dd;p=o-du%2Fl2.git diff --git a/src/cm/lsctp.c b/src/cm/lsctp.c index c28cc1d84..12f673dcd 100644 --- a/src/cm/lsctp.c +++ b/src/cm/lsctp.c @@ -41,9 +41,9 @@ uint8_t cmPkSctpNtfy(Pst *pst, CmInetSctpNotification *ntfy) { Buffer *mBuf; - if(ODU_GET_MSG(pst->region, pst->pool, &mBuf) != ROK) + if(ODU_GET_MSG_BUF(pst->region, pst->pool, &mBuf) != ROK) { - printf("\nSCTP : Failed to allocate memory"); + DU_LOG("\nERROR --> SCTP : Failed to allocate memory"); return RFAILED; } @@ -56,7 +56,7 @@ uint8_t cmPkSctpNtfy(Pst *pst, CmInetSctpNotification *ntfy) if (ODU_POST_TASK(pst, mBuf) != ROK) { - printf("\nSCTP : ODU_POST_TASK failed while sending SCTP notification"); + DU_LOG("\nERROR --> SCTP : ODU_POST_TASK failed while sending SCTP notification"); return RFAILED; } @@ -83,7 +83,7 @@ uint8_t cmPkSctpNtfy(Pst *pst, CmInetSctpNotification *ntfy) uint8_t cmUnpkSctpNtfy(SctpNtfy func, Pst *pst, Buffer *mBuf) { CmInetSctpNotification ntfy; - memset((uint8_t*)&ntfy, 0, sizeof(CmInetSctpNotification)); + memset(&ntfy, 0, sizeof(CmInetSctpNotification)); oduPackUInt16(&(ntfy.header.nType), mBuf); if(ntfy.header.nType == CM_INET_SCTP_ASSOC_CHANGE)