Commit d6c128ee authored by juvancic's avatar juvancic
Browse files

NGNAS component vars

parent 9551509f
Loading
Loading
Loading
Loading
+10 −5
Original line number Diff line number Diff line
@@ -14,6 +14,9 @@ module Lib_NG_NAS_Interface {
    // LibCommon
    import from LibCommon_Sync all;
    
    //Lib3GPP
    import from NG_NAS_MsgContainers {type NG_NAS_DL_Message_Type, NG_NAS_UL_Message_Type};

    // LibNGAP
    //import from NGAP_IEs language "ASN.1:1997" all;
    //import from NGAP_PDU_Descriptions language "ASN.1:1997" all;
@@ -24,14 +27,16 @@ module Lib_NG_NAS_Interface {
    } // End of group portDefinitions 

    group interfacePorts {
        type component NASComponent extends NGAPComponent {//extends SelfSyncComp {
        type component NGNASComponent extends NGAPComponent {//extends SelfSyncComp {
            // Port
            //port NGAPPort N2_gNBaMF_P;

            // Global variables

            
            var octetstring vc_recvNAS_PDUDefault ; 
            var template NG_NAS_UL_Message_Type vt_NgNasUl_Msg := omit;
            var template NG_NAS_DL_Message_Type vt_NgNasDl_Msg := omit;
            var octetstring vc_sendNAS_PDU       :=''O;
            var octetstring vc_recvNAS_PDU       :=''O;
            var octetstring vc_recvNAS_PDUDefault:=''O; 
            
            // Init of values at component started
            
@@ -47,5 +52,5 @@ module Lib_NG_NAS_Interface {

    } // End of group interfacePorts 

} // End of module LibNAS_Interface
} // End of module Lib_NG_NAS_Interface