X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=pkg%2Fcontrol%2Ftransaction.go;h=867b85447bb17b27d19dc64c50c5084c428fbf4a;hb=63284a2eed02f5bfec0a237f83aae95adc702c43;hp=b0da077d4a56cf99179ad24e7578e9ca2288807f;hpb=9340072742db74b6f93ca43d73841c388dd80e02;p=ric-plt%2Fsubmgr.git diff --git a/pkg/control/transaction.go b/pkg/control/transaction.go index b0da077..867b854 100644 --- a/pkg/control/transaction.go +++ b/pkg/control/transaction.go @@ -47,7 +47,6 @@ type Transaction struct { tracker *Tracker //tracker instance Subs *Subscription //related subscription RmrEndpoint RmrEndpoint //xapp endpoint - Mtype int //type of initiating message Xid string //xapp xid in req Meid *xapp.RMRMeid //meid transaction related SubReqMsg *e2ap.E2APSubscriptionRequest //SubReq TODO: maybe own transactions per type @@ -56,7 +55,8 @@ type Transaction struct { SubDelReqMsg *e2ap.E2APSubscriptionDeleteRequest //SubDelReq TODO: maybe own transactions per type SubDelRespMsg *e2ap.E2APSubscriptionDeleteResponse //SubDelResp TODO: maybe own transactions per type SubDelFailMsg *e2ap.E2APSubscriptionDeleteFailure //SubDelFail TODO: maybe own transactions per type - Payload *packer.PackedData //Encoded message to be send. Optimized + Mtype int //Encoded message type to be send + Payload *packer.PackedData //Encoded message to be send RespReceived bool ForwardRespToXapp bool }