X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=pkg%2Fxapp%2Ftypes.go;h=f3c47eb721d05f15e64ef9741b7f49bc212eac48;hb=065fa1d2c42d0bdf6863e634a75f470fb532f612;hp=71338ad2b9189965190940c1e8b7b3c223b59961;hpb=9636bfad71a9d42593c698870a269b02cd67dd48;p=ric-plt%2Fxapp-frame.git diff --git a/pkg/xapp/types.go b/pkg/xapp/types.go index 71338ad..f3c47eb 100755 --- a/pkg/xapp/types.go +++ b/pkg/xapp/types.go @@ -27,6 +27,8 @@ import ( type RMRStatistics struct{} type RMRClient struct { + protPort string + contextMux sync.Mutex context unsafe.Pointer ready int wg sync.WaitGroup @@ -38,10 +40,11 @@ type RMRClient struct { } type RMRMeid struct { - PlmnID string - EnbID string + PlmnID string + EnbID string + RanName string } type MessageConsumer interface { - Consume(mtype int, sid int, payload []byte, meid *RMRMeid) error + Consume(params *RMRParams) error }