X2ControlInfo.msg
Msg File src/simu5g/x2/packet/X2ControlInfo.msg
| Name | Type | Description |
|---|---|---|
| DestinationIdList | class | (no description) |
| X2ControlInfoTag | class |
X2 Control Info usage: |
Source code
// // Simu5G // // Copyright (C) 2012-2021 Giovanni Nardini, Giovanni Stea, Antonio Virdis et al. (University of Pisa) // Copyright (C) 2022-2026 Giovanni Nardini, Giovanni Stea et al. (University of Pisa) // // This file is part of a software released under the license included in file // "license.pdf". Please read LICENSE and README files before using it. // The above files and the present reference are part of the software itself, // and cannot be removed from it. // import inet.common.TagBase; import simu5g.common.LteCommon; cplusplus {{ namespace simu5g { typedef std::list<X2NodeId> DestinationIdList; } }} namespace simu5g; class DestinationIdList { @existingClass; } // // X2 Control Info usage: // // The X2 Control Info handles communication between the X2 Manager and its users. // It is attached to the X2InformationElement and contains: // - The X2 ID of the source eNodeB // - The X2 IDs of the destination eNodeBs (as a user can send an InformationElement to several peers) // - 'init' flag: if set, the X2 Manager uses the IE and the incoming gate to register the user module // into its internal data structures. This allows the X2 Manager to know which user is // connected to which gate, so as to forward messages coming from X2 to the correct // user module. // class X2ControlInfoTag extends inet::TagBase { MacNodeId sourceId; // Source X2NodeId DestinationIdList destIdList; // List of destination X2NodeId bool init = false; }