X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=pkg%2Fcontrol%2Ftypes.go;h=64fd15f1fcfe67567dddc8e118fb7cc51da8167c;hb=0d064ecdb5239a875857b5910f7f6e83f827d7a6;hp=1a2c92fd5084363c2a1762960e4580a0a6aaa3cb;hpb=93cc3e245f87798c8753209980817727e0648401;p=ric-plt%2Fsubmgr.git diff --git a/pkg/control/types.go b/pkg/control/types.go index 1a2c92f..64fd15f 100644 --- a/pkg/control/types.go +++ b/pkg/control/types.go @@ -19,29 +19,30 @@ package control +import ( + "strconv" +) + type RmrDatagram struct { MessageType int SubscriptionId uint16 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 RmrEndpoint struct { + Addr string // xapp addr + Port uint16 // xapp port } -type Transaction struct { -// Xapp_address string - Xapp_instance_address string - Xapp_port uint16 - Ric_sub_req []byte +func (endpoint RmrEndpoint) String() string { + return endpoint.Addr + ":" + strconv.FormatUint(uint64(endpoint.Port), 10) } + +type Action int