X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=pkg%2Fcontrol%2Ftypes.go;h=3a9587f2ab2728037f1bc26f89fd34b72114bbd2;hb=1a50344b88201d4620b74d50d658a51117173636;hp=d12233c08107a0fa69daf03579331419d8942f14;hpb=e00186861608731e2390055a0e1b1cf455670508;p=ric-plt%2Fsubmgr.git diff --git a/pkg/control/types.go b/pkg/control/types.go index d12233c..3a9587f 100644 --- a/pkg/control/types.go +++ b/pkg/control/types.go @@ -29,24 +29,22 @@ type RmrDatagram struct { Payload []byte } -type subRouteInfo struct { - Command Action - Address string - Port uint16 - SubID uint16 +type SubRouteInfo struct { + Command Action + Address string + Port uint16 + SubID uint16 } type Action int -type Transaction_key struct { - SubID uint16 - trans_type Action +type TransactionKey struct { + SubID uint16 + transType Action } type Transaction struct { -// Xapp_address string - Xapp_instance_address string - Xapp_port uint16 - Ric_sub_req []byte - Mbuf *xapp.RMRMbuf + XappInstanceAddress string + XappPort uint16 + OrigParams *xapp.RMRParams }