X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=pkg%2Frtmgr%2Ftypes.go;h=284617349124176e818d3159415fd8dde3136201;hb=refs%2Fchanges%2F65%2F3065%2F1;hp=9378656100997598ca27017285682f28a5427bd5;hpb=da0fd3afb09b447a54a4b84b67e0965d7d85b8ff;p=ric-plt%2Frtmgr.git diff --git a/pkg/rtmgr/types.go b/pkg/rtmgr/types.go index 9378656..2846173 100644 --- a/pkg/rtmgr/types.go +++ b/pkg/rtmgr/types.go @@ -53,6 +53,7 @@ type Endpoint struct { Socket interface{} IsReady bool Keepalive bool + Whid int } type RouteTableEntry struct { @@ -92,6 +93,11 @@ type E2TInstance struct { Ranlist []string `json:"ranlist"` } +type E2tIdentity struct { + E2taddress string `json:"e2tAddress"` + Rannames []string `json:"ranNames"` +} + type ConfigRtmgr struct { Pcs PlatformComponents `json:"PlatformComponents"` } @@ -99,13 +105,14 @@ type ConfigRtmgr struct { type RicComponents struct { XApps []XApp E2Ts map [string]E2TInstance + MeidMap []string Pcs PlatformComponents } type Subscription struct { SubID int32 - Fqdn string - Port uint16 + Fqdn string + Port uint16 } type PlatformRoutes []struct { @@ -120,4 +127,16 @@ type RtmgrRoutes struct { Prs PlatformRoutes `json:"PlatformRoutes"` } +type FqDn struct { + Address *string + Port *uint16 +} + +type XappList struct { + SubscriptionID uint16 + FqdnList []FqDn +} +var ( + Rtmgr_ready bool +)