X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=pkg%2Fxapp%2Ftypes.go;h=2e1eb09934aaad703400904e74996941bc072bf3;hb=5953f7e372df54c71f526e9519e8eb0ee7ee6f72;hp=71338ad2b9189965190940c1e8b7b3c223b59961;hpb=9636bfad71a9d42593c698870a269b02cd67dd48;p=ric-plt%2Fxapp-frame.git diff --git a/pkg/xapp/types.go b/pkg/xapp/types.go old mode 100755 new mode 100644 index 71338ad..2e1eb09 --- a/pkg/xapp/types.go +++ b/pkg/xapp/types.go @@ -27,6 +27,8 @@ import ( type RMRStatistics struct{} type RMRClient struct { + protPort string + numWorkers int 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 }