RICPLT-2805 Test Subscription timer, RICPLT-2806 Test Subscription Delete timer
[ric-plt/submgr.git] / pkg / control / types.go
index d12233c..febd41a 100644 (file)
 
 package control
 
-import (
-       "gerrit.o-ran-sc.org/r/ric-plt/xapp-frame/pkg/xapp"
-)
-
 type RmrDatagram struct {
        MessageType    int
        SubscriptionId uint16
        Payload        []byte
 }
 
-type subRouteInfo struct {
-       Command  Action
-       Address  string
-       Port     uint16
-       SubID    uint16
-}
-
-type Action int
-
-type Transaction_key struct {
-       SubID      uint16
-       trans_type Action
+type SubRouteInfo struct {
+       Command Action
+       Address string
+       Port    uint16
+       SubID   uint16
 }
 
-type Transaction struct {
-//     Xapp_address          string
-       Xapp_instance_address string
-       Xapp_port             uint16
-       Ric_sub_req           []byte
-       Mbuf                  *xapp.RMRMbuf
+type RmrEndpoint struct {
+       Addr string // xapp addr
+       Port uint16 // xapp port
 }
+type Action int