X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=tools%2Fxappmock%2Frmr%2FrmrEndPoint.go;h=82d01bdb7483bab4b311ee5d98e1bfa8f1eda492;hb=3da846d52012fe6fc60228c5e94928d3588eae6b;hp=957d4f039a283f2e78a3ea7e0dcf2b2f6046abf7;hpb=8cdfd6dd0117bd2cec6d596715250dab49ba51dc;p=ric-plt%2Fe2mgr.git diff --git a/tools/xappmock/rmr/rmrEndPoint.go b/tools/xappmock/rmr/rmrEndPoint.go index 957d4f0..82d01bd 100644 --- a/tools/xappmock/rmr/rmrEndPoint.go +++ b/tools/xappmock/rmr/rmrEndPoint.go @@ -32,9 +32,9 @@ func NewService(rmrConfig Config, messenger Messenger) *Service { } } -func (r *Service) SendMessage(messageType int, meid string, msg []byte, transactionId []byte) (*MBuf, error) { +func (r *Service) SendMessage(messageType int, ranName string, msg []byte, transactionId []byte) (*MBuf, error) { mbuf := NewMBuf(messageType, len(msg), msg, transactionId) - mbuf.Meid = meid + mbuf.Meid = ranName return (*r.messenger).SendMsg(mbuf) }