Commit 15b63755 authored by Iztok Juvancic's avatar Iztok Juvancic
Browse files

added m_n2_NGSetupRequest template

parent ceeed28a
Loading
Loading
Loading
Loading
+33 −0
Original line number Diff line number Diff line
@@ -484,6 +484,39 @@ module LibNGAP_Templates {
            //9.2.6.1
            group NG_SETUP_REQUEST{
                group Send{/*m_*/
                    
                    template (value) InitiatingMessage m_n2_NGSetupRequest(
                                                                            in template (value) GlobalRANNodeID p_globalRANNodeID,
                                                                            in template (value) SupportedTAList p_supportedTAs,
                                                                            in template (value) PagingDRX p_pagingDRX
                        ) := {
                               procedureCode := id_NGSetup,
                               criticality   := reject,
                               value_        := {
                                      NGSetupRequest := {
                                             protocolIEs := {
                                                    {
                                                      id := id_GlobalRANNodeID,
                                                      criticality := reject,
                                                       value_ := { globalRANNodeID := p_globalRANNodeID }
                                                    },
                                                    {
                                                      id := id_SupportedTAList,
                                                      criticality := reject,
                                                      value_ := { supportedTAList := p_supportedTAs }

                                                    },
                                                    {
                                                      id := id_DefaultPagingDRX,
                                                      criticality := ignore,
                                                      value_ := { pagingDRX := p_pagingDRX
                                                    }
                                              }
                                      }
                               }
                            }
                        }//end of template m_n2_NGSetupRequest
                    
                }
                group Receive{/*mw_*/
                }