X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=pkg%2Fcontrol%2Ftypes.go;h=febd41a2a3422790e4c861e90222a47f78d01e2d;hb=47b842bf6afc45313a0edadc78f87bff06ddf2b4;hp=3a9587f2ab2728037f1bc26f89fd34b72114bbd2;hpb=1455c85dea3fba44cdcba8a92864be730691a6ec;p=ric-plt%2Fsubmgr.git diff --git a/pkg/control/types.go b/pkg/control/types.go index 3a9587f..febd41a 100644 --- a/pkg/control/types.go +++ b/pkg/control/types.go @@ -19,10 +19,6 @@ package control -import ( - "gerrit.o-ran-sc.org/r/ric-plt/xapp-frame/pkg/xapp" -) - type RmrDatagram struct { MessageType int SubscriptionId uint16 @@ -36,15 +32,8 @@ type SubRouteInfo struct { SubID uint16 } -type Action int - -type TransactionKey struct { - SubID uint16 - transType Action -} - -type Transaction struct { - XappInstanceAddress string - XappPort uint16 - OrigParams *xapp.RMRParams +type RmrEndpoint struct { + Addr string // xapp addr + Port uint16 // xapp port } +type Action int