├── .DS_Store ├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── boot └── init.go ├── config ├── gnb.yaml ├── nf.yaml ├── qos.yaml ├── subscriber.yaml └── subscriber_ue.yaml ├── context └── prompt.go ├── factory ├── config.go ├── factory.go └── prompt.go ├── freecli.go ├── freecli ├── completer_main.go ├── executor.go ├── freecli_init.go ├── live_prefix.go └── prompt.go ├── go.mod ├── go.sum ├── lib ├── MongoDBLibrary │ ├── CHANGELOG.md │ ├── api_mongoDB.go │ ├── logger │ │ └── logger.go │ └── version │ │ ├── version.go │ │ └── version_test.go ├── UeauCommon │ ├── .gitignore │ ├── CHANGELOG.md │ ├── UeauCommon.go │ ├── UeauCommon_test.go │ └── version │ │ ├── version.go │ │ └── version_test.go ├── aper │ ├── .gitignore │ ├── CHANGELOG.md │ ├── aper.go │ ├── asn_type.go │ ├── common.go │ ├── logger │ │ └── logger.go │ ├── marshal.go │ └── version │ │ ├── version.go │ │ └── version_test.go ├── logger_util │ ├── .gitignore │ ├── CHANGELOG.md │ ├── logger_util.go │ └── version │ │ ├── version.go │ │ └── version_test.go ├── milenage │ ├── .gitignore │ ├── CHANGELOG.md │ ├── milenage.go │ ├── milenage_test.go │ └── version │ │ ├── version.go │ │ └── version_test.go ├── nas │ ├── .gitignore │ ├── CHANGELOG.md │ ├── logger │ │ └── logger.go │ ├── nas.go │ ├── nasConvert │ │ ├── AmfId.go │ │ ├── GPRSTimer2.go │ │ ├── GPRSTimer3.go │ │ ├── Ladn.go │ │ ├── MobileIdentity5GS.go │ │ ├── NetWorkName.go │ │ ├── Nssai.go │ │ ├── PDUSessionReactivationResultErrorCause.go │ │ ├── PDUSessionType.go │ │ ├── PSI.go │ │ ├── PlmnId.go │ │ ├── ProtocolConfigurationOptions.go │ │ ├── ServiceAreaList.go │ │ ├── SessionAMBR.go │ │ ├── Snssai.go │ │ ├── SpareHalfOctetAndNgKsi.go │ │ ├── TaiList.go │ │ ├── Time.go │ │ ├── UESecurityCapability.go │ │ └── UPUInfo.go │ ├── nasMessage │ │ ├── NAS_AuthenticationFailure.go │ │ ├── NAS_AuthenticationFailure_test.go │ │ ├── NAS_AuthenticationReject.go │ │ ├── NAS_AuthenticationReject_test.go │ │ ├── NAS_AuthenticationRequest.go │ │ ├── NAS_AuthenticationRequest_test.go │ │ ├── NAS_AuthenticationResponse.go │ │ ├── NAS_AuthenticationResponse_test.go │ │ ├── NAS_AuthenticationResult.go │ │ ├── NAS_AuthenticationResult_test.go │ │ ├── NAS_CommInfoIE.go │ │ ├── NAS_ConfigurationUpdateCommand.go │ │ ├── NAS_ConfigurationUpdateCommand_test.go │ │ ├── NAS_ConfigurationUpdateComplete.go │ │ ├── NAS_ConfigurationUpdateComplete_test.go │ │ ├── NAS_DLNASTransport.go │ │ ├── NAS_DLNASTransport_test.go │ │ ├── NAS_DeregistrationAcceptUEOriginatingDeregistration.go │ │ ├── NAS_DeregistrationAcceptUEOriginatingDeregistration_test.go │ │ ├── NAS_DeregistrationAcceptUETerminatedDeregistration.go │ │ ├── NAS_DeregistrationAcceptUETerminatedDeregistration_test.go │ │ ├── NAS_DeregistrationRequestUEOriginatingDeregistration.go │ │ ├── NAS_DeregistrationRequestUEOriginatingDeregistration_test.go │ │ ├── NAS_DeregistrationRequestUETerminatedDeregistration.go │ │ ├── NAS_DeregistrationRequestUETerminatedDeregistration_test.go │ │ ├── NAS_EPD.go │ │ ├── NAS_IdentityRequest.go │ │ ├── NAS_IdentityRequest_test.go │ │ ├── NAS_IdentityResponse.go │ │ ├── NAS_IdentityResponse_test.go │ │ ├── NAS_Notification.go │ │ ├── NAS_NotificationResponse.go │ │ ├── NAS_NotificationResponse_test.go │ │ ├── NAS_Notification_test.go │ │ ├── NAS_PDUSessionAuthenticationCommand.go │ │ ├── NAS_PDUSessionAuthenticationCommand_test.go │ │ ├── NAS_PDUSessionAuthenticationComplete.go │ │ ├── NAS_PDUSessionAuthenticationComplete_test.go │ │ ├── NAS_PDUSessionAuthenticationResult.go │ │ ├── NAS_PDUSessionAuthenticationResult_test.go │ │ ├── NAS_PDUSessionEstablishmentAccept.go │ │ ├── NAS_PDUSessionEstablishmentAccept_test.go │ │ ├── NAS_PDUSessionEstablishmentReject.go │ │ ├── NAS_PDUSessionEstablishmentReject_test.go │ │ ├── NAS_PDUSessionEstablishmentRequest.go │ │ ├── NAS_PDUSessionEstablishmentRequest_test.go │ │ ├── NAS_PDUSessionModificationCommand.go │ │ ├── NAS_PDUSessionModificationCommandReject.go │ │ ├── NAS_PDUSessionModificationCommandReject_test.go │ │ ├── NAS_PDUSessionModificationCommand_test.go │ │ ├── NAS_PDUSessionModificationComplete.go │ │ ├── NAS_PDUSessionModificationComplete_test.go │ │ ├── NAS_PDUSessionModificationReject.go │ │ ├── NAS_PDUSessionModificationReject_test.go │ │ ├── NAS_PDUSessionModificationRequest.go │ │ ├── NAS_PDUSessionModificationRequest_test.go │ │ ├── NAS_PDUSessionReleaseCommand.go │ │ ├── NAS_PDUSessionReleaseCommand_test.go │ │ ├── NAS_PDUSessionReleaseComplete.go │ │ ├── NAS_PDUSessionReleaseComplete_test.go │ │ ├── NAS_PDUSessionReleaseReject.go │ │ ├── NAS_PDUSessionReleaseReject_test.go │ │ ├── NAS_PDUSessionReleaseRequest.go │ │ ├── NAS_PDUSessionReleaseRequest_test.go │ │ ├── NAS_RegistrationAccept.go │ │ ├── NAS_RegistrationAccept_test.go │ │ ├── NAS_RegistrationComplete.go │ │ ├── NAS_RegistrationComplete_test.go │ │ ├── NAS_RegistrationReject.go │ │ ├── NAS_RegistrationReject_test.go │ │ ├── NAS_RegistrationRequest.go │ │ ├── NAS_RegistrationRequest_test.go │ │ ├── NAS_SecurityModeCommand.go │ │ ├── NAS_SecurityModeCommand_test.go │ │ ├── NAS_SecurityModeComplete.go │ │ ├── NAS_SecurityModeComplete_test.go │ │ ├── NAS_SecurityModeReject.go │ │ ├── NAS_SecurityModeReject_test.go │ │ ├── NAS_SecurityProtected5GSNASMessage.go │ │ ├── NAS_SecurityProtected5GSNASMessage_test.go │ │ ├── NAS_ServiceAccept.go │ │ ├── NAS_ServiceAccept_test.go │ │ ├── NAS_ServiceReject.go │ │ ├── NAS_ServiceReject_test.go │ │ ├── NAS_ServiceRequest.go │ │ ├── NAS_ServiceRequest_test.go │ │ ├── NAS_Status5GMM.go │ │ ├── NAS_Status5GMM_test.go │ │ ├── NAS_Status5GSM.go │ │ ├── NAS_Status5GSM_test.go │ │ ├── NAS_ULNASTransport.go │ │ ├── NAS_ULNASTransport_test.go │ │ └── comm_nasMessage_test.go │ ├── nasTestpacket │ │ └── NasPdu.go │ ├── nasType │ │ ├── NAS_ABBA.go │ │ ├── NAS_ABBA_test.go │ │ ├── NAS_Additional5GSecurityInformation.go │ │ ├── NAS_Additional5GSecurityInformation_test.go │ │ ├── NAS_AdditionalGUTI.go │ │ ├── NAS_AdditionalGUTI_test.go │ │ ├── NAS_AdditionalInformation.go │ │ ├── NAS_AdditionalInformation_test.go │ │ ├── NAS_AllowedNSSAI.go │ │ ├── NAS_AllowedNSSAI_test.go │ │ ├── NAS_AllowedPDUSessionStatus.go │ │ ├── NAS_AllowedPDUSessionStatus_test.go │ │ ├── NAS_AllowedSSCMode.go │ │ ├── NAS_AllowedSSCMode_test.go │ │ ├── NAS_AlwaysonPDUSessionIndication.go │ │ ├── NAS_AlwaysonPDUSessionIndication_test.go │ │ ├── NAS_AlwaysonPDUSessionRequested.go │ │ ├── NAS_AlwaysonPDUSessionRequested_test.go │ │ ├── NAS_AuthenticationFailureMessageIdentity.go │ │ ├── NAS_AuthenticationFailureMessageIdentity_test.go │ │ ├── NAS_AuthenticationFailureParameter.go │ │ ├── NAS_AuthenticationFailureParameter_test.go │ │ ├── NAS_AuthenticationParameterAUTN.go │ │ ├── NAS_AuthenticationParameterAUTN_test.go │ │ ├── NAS_AuthenticationParameterRAND.go │ │ ├── NAS_AuthenticationParameterRAND_test.go │ │ ├── NAS_AuthenticationRejectMessageIdentity.go │ │ ├── NAS_AuthenticationRejectMessageIdentity_test.go │ │ ├── NAS_AuthenticationRequestMessageIdentity.go │ │ ├── NAS_AuthenticationRequestMessageIdentity_test.go │ │ ├── NAS_AuthenticationResponseMessageIdentity.go │ │ ├── NAS_AuthenticationResponseMessageIdentity_test.go │ │ ├── NAS_AuthenticationResponseParameter.go │ │ ├── NAS_AuthenticationResponseParameter_test.go │ │ ├── NAS_AuthenticationResultMessageIdentity.go │ │ ├── NAS_AuthenticationResultMessageIdentity_test.go │ │ ├── NAS_AuthorizedQosFlowDescriptions.go │ │ ├── NAS_AuthorizedQosFlowDescriptions_test.go │ │ ├── NAS_AuthorizedQosRules.go │ │ ├── NAS_AuthorizedQosRules_test.go │ │ ├── NAS_BackoffTimerValue.go │ │ ├── NAS_BackoffTimerValue_test.go │ │ ├── NAS_Capability5GMM.go │ │ ├── NAS_Capability5GMM_test.go │ │ ├── NAS_Capability5GSM.go │ │ ├── NAS_Capability5GSM_test.go │ │ ├── NAS_Cause5GMM.go │ │ ├── NAS_Cause5GMM_test.go │ │ ├── NAS_Cause5GSM.go │ │ ├── NAS_Cause5GSM_test.go │ │ ├── NAS_ConfigurationUpdateCommandMessageIdentity.go │ │ ├── NAS_ConfigurationUpdateCommandMessageIdentity_test.go │ │ ├── NAS_ConfigurationUpdateCompleteMessageIdentity.go │ │ ├── NAS_ConfigurationUpdateCompleteMessageIdentity_test.go │ │ ├── NAS_ConfigurationUpdateIndication.go │ │ ├── NAS_ConfigurationUpdateIndication_test.go │ │ ├── NAS_ConfiguredNSSAI.go │ │ ├── NAS_ConfiguredNSSAI_test.go │ │ ├── NAS_DLNASTRANSPORTMessageIdentity.go │ │ ├── NAS_DLNASTRANSPORTMessageIdentity_test.go │ │ ├── NAS_DNN.go │ │ ├── NAS_DNN_test.go │ │ ├── NAS_DeregistrationAcceptMessageIdentity.go │ │ ├── NAS_DeregistrationAcceptMessageIdentity_test.go │ │ ├── NAS_DeregistrationRequestMessageIdentity.go │ │ ├── NAS_DeregistrationRequestMessageIdentity_test.go │ │ ├── NAS_EAPMessage.go │ │ ├── NAS_EAPMessage_test.go │ │ ├── NAS_EPSNASMessageContainer.go │ │ ├── NAS_EPSNASMessageContainer_test.go │ │ ├── NAS_EmergencyNumberList.go │ │ ├── NAS_EmergencyNumberList_test.go │ │ ├── NAS_EquivalentPlmns.go │ │ ├── NAS_EquivalentPlmns_test.go │ │ ├── NAS_ExtendedEmergencyNumberList.go │ │ ├── NAS_ExtendedEmergencyNumberList_test.go │ │ ├── NAS_ExtendedProtocolConfigurationOptions.go │ │ ├── NAS_ExtendedProtocolConfigurationOptions_test.go │ │ ├── NAS_ExtendedProtocolDiscriminator.go │ │ ├── NAS_ExtendedProtocolDiscriminator_test.go │ │ ├── NAS_FullNameForNetwork.go │ │ ├── NAS_FullNameForNetwork_test.go │ │ ├── NAS_GUTI5G.go │ │ ├── NAS_GUTI5G_test.go │ │ ├── NAS_IMEISV.go │ │ ├── NAS_IMEISVRequest.go │ │ ├── NAS_IMEISVRequest_test.go │ │ ├── NAS_IMEISV_test.go │ │ ├── NAS_IdentityRequestMessageIdentity.go │ │ ├── NAS_IdentityRequestMessageIdentity_test.go │ │ ├── NAS_IdentityResponseMessageIdentity.go │ │ ├── NAS_IdentityResponseMessageIdentity_test.go │ │ ├── NAS_IntegrityProtectionMaximumDataRate.go │ │ ├── NAS_IntegrityProtectionMaximumDataRate_test.go │ │ ├── NAS_LADNIndication.go │ │ ├── NAS_LADNIndication_test.go │ │ ├── NAS_LADNInformation.go │ │ ├── NAS_LADNInformation_test.go │ │ ├── NAS_LastVisitedRegisteredTAI.go │ │ ├── NAS_LastVisitedRegisteredTAI_test.go │ │ ├── NAS_LocalTimeZone.go │ │ ├── NAS_LocalTimeZone_test.go │ │ ├── NAS_MICOIndication.go │ │ ├── NAS_MICOIndication_test.go │ │ ├── NAS_MappedEPSBearerContexts.go │ │ ├── NAS_MappedEPSBearerContexts_test.go │ │ ├── NAS_MaximumNumberOfSupportedPacketFilters.go │ │ ├── NAS_MaximumNumberOfSupportedPacketFilters_test.go │ │ ├── NAS_MessageAuthenticationCode.go │ │ ├── NAS_MessageAuthenticationCode_test.go │ │ ├── NAS_MobileIdentity.go │ │ ├── NAS_MobileIdentity5GS.go │ │ ├── NAS_MobileIdentity5GS_test.go │ │ ├── NAS_MobileIdentity_test.go │ │ ├── NAS_NASMessageContainer.go │ │ ├── NAS_NASMessageContainer_test.go │ │ ├── NAS_NSSAIInclusionMode.go │ │ ├── NAS_NSSAIInclusionMode_test.go │ │ ├── NAS_NegotiatedDRXParameters.go │ │ ├── NAS_NegotiatedDRXParameters_test.go │ │ ├── NAS_NetworkDaylightSavingTime.go │ │ ├── NAS_NetworkDaylightSavingTime_test.go │ │ ├── NAS_NetworkFeatureSupport5GS.go │ │ ├── NAS_NetworkFeatureSupport5GS_test.go │ │ ├── NAS_NetworkSlicingIndication.go │ │ ├── NAS_NetworkSlicingIndication_test.go │ │ ├── NAS_NgksiAndDeregistrationType.go │ │ ├── NAS_NgksiAndDeregistrationType_test.go │ │ ├── NAS_NgksiAndRegistrationType5GS.go │ │ ├── NAS_NgksiAndRegistrationType5GS_test.go │ │ ├── NAS_Non3GppDeregistrationTimerValue.go │ │ ├── NAS_Non3GppDeregistrationTimerValue_test.go │ │ ├── NAS_NoncurrentNativeNASKeySetIdentifier.go │ │ ├── NAS_NoncurrentNativeNASKeySetIdentifier_test.go │ │ ├── NAS_NotificationMessageIdentity.go │ │ ├── NAS_NotificationMessageIdentity_test.go │ │ ├── NAS_NotificationResponseMessageIdentity.go │ │ ├── NAS_NotificationResponseMessageIdentity_test.go │ │ ├── NAS_OldPDUSessionID.go │ │ ├── NAS_OldPDUSessionID_test.go │ │ ├── NAS_OperatordefinedAccessCategoryDefinitions.go │ │ ├── NAS_OperatordefinedAccessCategoryDefinitions_test.go │ │ ├── NAS_PDUAddress.go │ │ ├── NAS_PDUAddress_test.go │ │ ├── NAS_PDUSESSIONAUTHENTICATIONCOMMANDMessageIdentity.go │ │ ├── NAS_PDUSESSIONAUTHENTICATIONCOMMANDMessageIdentity_test.go │ │ ├── NAS_PDUSESSIONAUTHENTICATIONCOMPLETEMessageIdentity.go │ │ ├── NAS_PDUSESSIONAUTHENTICATIONCOMPLETEMessageIdentity_test.go │ │ ├── NAS_PDUSESSIONAUTHENTICATIONRESULTMessageIdentity.go │ │ ├── NAS_PDUSESSIONAUTHENTICATIONRESULTMessageIdentity_test.go │ │ ├── NAS_PDUSESSIONESTABLISHMENTACCEPTMessageIdentity.go │ │ ├── NAS_PDUSESSIONESTABLISHMENTACCEPTMessageIdentity_test.go │ │ ├── NAS_PDUSESSIONESTABLISHMENTREJECTMessageIdentity.go │ │ ├── NAS_PDUSESSIONESTABLISHMENTREJECTMessageIdentity_test.go │ │ ├── NAS_PDUSESSIONESTABLISHMENTREQUESTMessageIdentity.go │ │ ├── NAS_PDUSESSIONESTABLISHMENTREQUESTMessageIdentity_test.go │ │ ├── NAS_PDUSESSIONMODIFICATIONCOMMANDMessageIdentity.go │ │ ├── NAS_PDUSESSIONMODIFICATIONCOMMANDMessageIdentity_test.go │ │ ├── NAS_PDUSESSIONMODIFICATIONCOMMANDREJECTMessageIdentity.go │ │ ├── NAS_PDUSESSIONMODIFICATIONCOMMANDREJECTMessageIdentity_test.go │ │ ├── NAS_PDUSESSIONMODIFICATIONCOMPLETEMessageIdentity.go │ │ ├── NAS_PDUSESSIONMODIFICATIONCOMPLETEMessageIdentity_test.go │ │ ├── NAS_PDUSESSIONMODIFICATIONREJECTMessageIdentity.go │ │ ├── NAS_PDUSESSIONMODIFICATIONREJECTMessageIdentity_test.go │ │ ├── NAS_PDUSESSIONMODIFICATIONREQUESTMessageIdentity.go │ │ ├── NAS_PDUSESSIONMODIFICATIONREQUESTMessageIdentity_test.go │ │ ├── NAS_PDUSESSIONRELEASECOMMANDMessageIdentity.go │ │ ├── NAS_PDUSESSIONRELEASECOMMANDMessageIdentity_test.go │ │ ├── NAS_PDUSESSIONRELEASECOMPLETEMessageIdentity.go │ │ ├── NAS_PDUSESSIONRELEASECOMPLETEMessageIdentity_test.go │ │ ├── NAS_PDUSESSIONRELEASEREJECTMessageIdentity.go │ │ ├── NAS_PDUSESSIONRELEASEREJECTMessageIdentity_test.go │ │ ├── NAS_PDUSESSIONRELEASEREQUESTMessageIdentity.go │ │ ├── NAS_PDUSESSIONRELEASEREQUESTMessageIdentity_test.go │ │ ├── NAS_PDUSessionID.go │ │ ├── NAS_PDUSessionID_test.go │ │ ├── NAS_PDUSessionReactivationResult.go │ │ ├── NAS_PDUSessionReactivationResultErrorCause.go │ │ ├── NAS_PDUSessionReactivationResultErrorCause_test.go │ │ ├── NAS_PDUSessionReactivationResult_test.go │ │ ├── NAS_PDUSessionStatus.go │ │ ├── NAS_PDUSessionStatus_test.go │ │ ├── NAS_PDUSessionType.go │ │ ├── NAS_PDUSessionType_test.go │ │ ├── NAS_PTI.go │ │ ├── NAS_PTI_test.go │ │ ├── NAS_PayloadContainer.go │ │ ├── NAS_PayloadContainer_test.go │ │ ├── NAS_PduSessionID2Value.go │ │ ├── NAS_PduSessionID2Value_test.go │ │ ├── NAS_Plain5GSNASMessage.go │ │ ├── NAS_Plain5GSNASMessage_test.go │ │ ├── NAS_RQTimerValue.go │ │ ├── NAS_RQTimerValue_test.go │ │ ├── NAS_RegistrationAcceptMessageIdentity.go │ │ ├── NAS_RegistrationAcceptMessageIdentity_test.go │ │ ├── NAS_RegistrationCompleteMessageIdentity.go │ │ ├── NAS_RegistrationCompleteMessageIdentity_test.go │ │ ├── NAS_RegistrationRejectMessageIdentity.go │ │ ├── NAS_RegistrationRejectMessageIdentity_test.go │ │ ├── NAS_RegistrationRequestMessageIdentity.go │ │ ├── NAS_RegistrationRequestMessageIdentity_test.go │ │ ├── NAS_RegistrationResult5GS.go │ │ ├── NAS_RegistrationResult5GS_test.go │ │ ├── NAS_RejectedNSSAI.go │ │ ├── NAS_RejectedNSSAI_test.go │ │ ├── NAS_ReplayedS1UESecurityCapabilities.go │ │ ├── NAS_ReplayedS1UESecurityCapabilities_test.go │ │ ├── NAS_ReplayedUESecurityCapabilities.go │ │ ├── NAS_ReplayedUESecurityCapabilities_test.go │ │ ├── NAS_RequestType.go │ │ ├── NAS_RequestType_test.go │ │ ├── NAS_RequestedDRXParameters.go │ │ ├── NAS_RequestedDRXParameters_test.go │ │ ├── NAS_RequestedNSSAI.go │ │ ├── NAS_RequestedNSSAI_test.go │ │ ├── NAS_RequestedQosFlowDescriptions.go │ │ ├── NAS_RequestedQosFlowDescriptions_test.go │ │ ├── NAS_RequestedQosRules.go │ │ ├── NAS_RequestedQosRules_test.go │ │ ├── NAS_S1UENetworkCapability.go │ │ ├── NAS_S1UENetworkCapability_test.go │ │ ├── NAS_SMPDUDNRequestContainer.go │ │ ├── NAS_SMPDUDNRequestContainer_test.go │ │ ├── NAS_SMSIndication.go │ │ ├── NAS_SMSIndication_test.go │ │ ├── NAS_SNSSAI.go │ │ ├── NAS_SNSSAI_test.go │ │ ├── NAS_SORTransparentContainer.go │ │ ├── NAS_SORTransparentContainer_test.go │ │ ├── NAS_SSCMode.go │ │ ├── NAS_SSCMode_test.go │ │ ├── NAS_STATUSMessageIdentity5GMM.go │ │ ├── NAS_STATUSMessageIdentity5GMM_test.go │ │ ├── NAS_STATUSMessageIdentity5GSM.go │ │ ├── NAS_STATUSMessageIdentity5GSM_test.go │ │ ├── NAS_SecurityModeCommandMessageIdentity.go │ │ ├── NAS_SecurityModeCommandMessageIdentity_test.go │ │ ├── NAS_SecurityModeCompleteMessageIdentity.go │ │ ├── NAS_SecurityModeCompleteMessageIdentity_test.go │ │ ├── NAS_SecurityModeRejectMessageIdentity.go │ │ ├── NAS_SecurityModeRejectMessageIdentity_test.go │ │ ├── NAS_SelectedEPSNASSecurityAlgorithms.go │ │ ├── NAS_SelectedEPSNASSecurityAlgorithms_test.go │ │ ├── NAS_SelectedNASSecurityAlgorithms.go │ │ ├── NAS_SelectedNASSecurityAlgorithms_test.go │ │ ├── NAS_SelectedSSCModeAndSelectedPDUSessionType.go │ │ ├── NAS_SelectedSSCModeAndSelectedPDUSessionType_test.go │ │ ├── NAS_SequenceNumber.go │ │ ├── NAS_SequenceNumber_test.go │ │ ├── NAS_ServiceAcceptMessageIdentity.go │ │ ├── NAS_ServiceAcceptMessageIdentity_test.go │ │ ├── NAS_ServiceAreaList.go │ │ ├── NAS_ServiceAreaList_test.go │ │ ├── NAS_ServiceRejectMessageIdentity.go │ │ ├── NAS_ServiceRejectMessageIdentity_test.go │ │ ├── NAS_ServiceRequestMessageIdentity.go │ │ ├── NAS_ServiceRequestMessageIdentity_test.go │ │ ├── NAS_ServiceTypeAndNgksi.go │ │ ├── NAS_ServiceTypeAndNgksi_test.go │ │ ├── NAS_SessionAMBR.go │ │ ├── NAS_SessionAMBR_test.go │ │ ├── NAS_ShortNameForNetwork.go │ │ ├── NAS_ShortNameForNetwork_test.go │ │ ├── NAS_SpareHalfOctetAndAccessType.go │ │ ├── NAS_SpareHalfOctetAndAccessType_test.go │ │ ├── NAS_SpareHalfOctetAndDeregistrationType.go │ │ ├── NAS_SpareHalfOctetAndDeregistrationType_test.go │ │ ├── NAS_SpareHalfOctetAndIdentityType.go │ │ ├── NAS_SpareHalfOctetAndIdentityType_test.go │ │ ├── NAS_SpareHalfOctetAndNgksi.go │ │ ├── NAS_SpareHalfOctetAndNgksi_test.go │ │ ├── NAS_SpareHalfOctetAndPayloadContainerType.go │ │ ├── NAS_SpareHalfOctetAndPayloadContainerType_test.go │ │ ├── NAS_SpareHalfOctetAndSecurityHeaderType.go │ │ ├── NAS_SpareHalfOctetAndSecurityHeaderType_test.go │ │ ├── NAS_T3346Value.go │ │ ├── NAS_T3346Value_test.go │ │ ├── NAS_T3502Value.go │ │ ├── NAS_T3502Value_test.go │ │ ├── NAS_T3512Value.go │ │ ├── NAS_T3512Value_test.go │ │ ├── NAS_TAIList.go │ │ ├── NAS_TAIList_test.go │ │ ├── NAS_TMSI5GS.go │ │ ├── NAS_TMSI5GS_test.go │ │ ├── NAS_UESecurityCapability.go │ │ ├── NAS_UESecurityCapability_test.go │ │ ├── NAS_UEStatus.go │ │ ├── NAS_UEStatus_test.go │ │ ├── NAS_ULNASTRANSPORTMessageIdentity.go │ │ ├── NAS_ULNASTRANSPORTMessageIdentity_test.go │ │ ├── NAS_UesUsageSetting.go │ │ ├── NAS_UesUsageSetting_test.go │ │ ├── NAS_UniversalTimeAndLocalTimeZone.go │ │ ├── NAS_UniversalTimeAndLocalTimeZone_test.go │ │ ├── NAS_UpdateType5GS.go │ │ ├── NAS_UpdateType5GS_test.go │ │ ├── NAS_UplinkDataStatus.go │ │ ├── NAS_UplinkDataStatus_test.go │ │ ├── comm_nasType_test.go │ │ └── comm_util.go │ ├── nas_test.go │ ├── security │ │ ├── counter.go │ │ ├── counter_test.go │ │ ├── parameters.go │ │ ├── security.go │ │ ├── security_test.go │ │ └── snow3g │ │ │ ├── snow3g.go │ │ │ └── snow3g_test.go │ └── version │ │ ├── version.go │ │ └── version_test.go ├── ngap │ ├── .gitignore │ ├── CHANGELOG.md │ ├── logger │ │ └── logger.go │ ├── ngap.go │ ├── ngapConvert │ │ ├── AllowedNssai.go │ │ ├── AmfId.go │ │ ├── BitString.go │ │ ├── IpAddress.go │ │ ├── PlmnId.go │ │ ├── PortNumber.go │ │ ├── RATRestrictionInformation.go │ │ ├── RanId.go │ │ ├── SNssai.go │ │ ├── TAI.go │ │ ├── TimeStamp.go │ │ ├── TraceData.go │ │ └── UEAmbr.go │ ├── ngapType │ │ ├── AMFConfigurationUpdate.go │ │ ├── AMFConfigurationUpdateAcknowledge.go │ │ ├── AMFConfigurationUpdateFailure.go │ │ ├── AMFName.go │ │ ├── AMFPagingTarget.go │ │ ├── AMFPointer.go │ │ ├── AMFRegionID.go │ │ ├── AMFSetID.go │ │ ├── AMFStatusIndication.go │ │ ├── AMFTNLAssociationSetupItem.go │ │ ├── AMFTNLAssociationSetupList.go │ │ ├── AMFTNLAssociationToAddItem.go │ │ ├── AMFTNLAssociationToAddList.go │ │ ├── AMFTNLAssociationToRemoveItem.go │ │ ├── AMFTNLAssociationToRemoveList.go │ │ ├── AMFTNLAssociationToUpdateItem.go │ │ ├── AMFTNLAssociationToUpdateList.go │ │ ├── AMFUENGAPID.go │ │ ├── AdditionalQosFlowInformation.go │ │ ├── AllocationAndRetentionPriority.go │ │ ├── AllowedNSSAI.go │ │ ├── AllowedNSSAIItem.go │ │ ├── AllowedTACs.go │ │ ├── AreaOfInterest.go │ │ ├── AreaOfInterestCellItem.go │ │ ├── AreaOfInterestCellList.go │ │ ├── AreaOfInterestItem.go │ │ ├── AreaOfInterestList.go │ │ ├── AreaOfInterestRANNodeItem.go │ │ ├── AreaOfInterestRANNodeList.go │ │ ├── AreaOfInterestTAIItem.go │ │ ├── AreaOfInterestTAIList.go │ │ ├── AssistanceDataForPaging.go │ │ ├── AssistanceDataForRecommendedCells.go │ │ ├── AssociatedQosFlowItem.go │ │ ├── AssociatedQosFlowList.go │ │ ├── AveragingWindow.go │ │ ├── BitRate.go │ │ ├── BroadcastCancelledAreaList.go │ │ ├── BroadcastCompletedAreaList.go │ │ ├── BroadcastPLMNItem.go │ │ ├── BroadcastPLMNList.go │ │ ├── COUNTValueForPDCPSN12.go │ │ ├── COUNTValueForPDCPSN18.go │ │ ├── CPTransportLayerInformation.go │ │ ├── CancelAllWarningMessages.go │ │ ├── CancelledCellsInEAIEUTRA.go │ │ ├── CancelledCellsInEAIEUTRAItem.go │ │ ├── CancelledCellsInEAINR.go │ │ ├── CancelledCellsInEAINRItem.go │ │ ├── CancelledCellsInTAIEUTRA.go │ │ ├── CancelledCellsInTAIEUTRAItem.go │ │ ├── CancelledCellsInTAINR.go │ │ ├── CancelledCellsInTAINRItem.go │ │ ├── Cause.go │ │ ├── CauseMisc.go │ │ ├── CauseNas.go │ │ ├── CauseProtocol.go │ │ ├── CauseRadioNetwork.go │ │ ├── CauseTransport.go │ │ ├── CellIDBroadcastEUTRA.go │ │ ├── CellIDBroadcastEUTRAItem.go │ │ ├── CellIDBroadcastNR.go │ │ ├── CellIDBroadcastNRItem.go │ │ ├── CellIDCancelledEUTRA.go │ │ ├── CellIDCancelledEUTRAItem.go │ │ ├── CellIDCancelledNR.go │ │ ├── CellIDCancelledNRItem.go │ │ ├── CellIDListForRestart.go │ │ ├── CellSize.go │ │ ├── CellTrafficTrace.go │ │ ├── CellType.go │ │ ├── CompletedCellsInEAIEUTRA.go │ │ ├── CompletedCellsInEAIEUTRAItem.go │ │ ├── CompletedCellsInEAINR.go │ │ ├── CompletedCellsInEAINRItem.go │ │ ├── CompletedCellsInTAIEUTRA.go │ │ ├── CompletedCellsInTAIEUTRAItem.go │ │ ├── CompletedCellsInTAINR.go │ │ ├── CompletedCellsInTAINRItem.go │ │ ├── ConcurrentWarningMessageInd.go │ │ ├── ConfidentialityProtectionIndication.go │ │ ├── ConfidentialityProtectionResult.go │ │ ├── CoreNetworkAssistanceInformation.go │ │ ├── Criticality.go │ │ ├── CriticalityDiagnostics.go │ │ ├── CriticalityDiagnosticsIEItem.go │ │ ├── CriticalityDiagnosticsIEList.go │ │ ├── DLForwarding.go │ │ ├── DLNGUTNLInformationReused.go │ │ ├── DRBID.go │ │ ├── DRBStatusDL.go │ │ ├── DRBStatusDL12.go │ │ ├── DRBStatusDL18.go │ │ ├── DRBStatusUL.go │ │ ├── DRBStatusUL12.go │ │ ├── DRBStatusUL18.go │ │ ├── DRBsSubjectToStatusTransferItem.go │ │ ├── DRBsSubjectToStatusTransferList.go │ │ ├── DRBsToQosFlowsMappingItem.go │ │ ├── DRBsToQosFlowsMappingList.go │ │ ├── DataCodingScheme.go │ │ ├── DataForwardingAccepted.go │ │ ├── DataForwardingNotPossible.go │ │ ├── DataForwardingResponseDRBItem.go │ │ ├── DataForwardingResponseDRBList.go │ │ ├── DeactivateTrace.go │ │ ├── DelayCritical.go │ │ ├── DirectForwardingPathAvailability.go │ │ ├── DownlinkNASTransport.go │ │ ├── DownlinkNonUEAssociatedNRPPaTransport.go │ │ ├── DownlinkRANConfigurationTransfer.go │ │ ├── DownlinkRANStatusTransfer.go │ │ ├── DownlinkUEAssociatedNRPPaTransport.go │ │ ├── Dynamic5QIDescriptor.go │ │ ├── EPSTAC.go │ │ ├── EPSTAI.go │ │ ├── ERABID.go │ │ ├── ERABInformationItem.go │ │ ├── ERABInformationList.go │ │ ├── EUTRACGI.go │ │ ├── EUTRACGIList.go │ │ ├── EUTRACGIListForWarning.go │ │ ├── EUTRACellIdentity.go │ │ ├── EUTRAencryptionAlgorithms.go │ │ ├── EUTRAintegrityProtectionAlgorithms.go │ │ ├── EmergencyAreaID.go │ │ ├── EmergencyAreaIDBroadcastEUTRA.go │ │ ├── EmergencyAreaIDBroadcastEUTRAItem.go │ │ ├── EmergencyAreaIDBroadcastNR.go │ │ ├── EmergencyAreaIDBroadcastNRItem.go │ │ ├── EmergencyAreaIDCancelledEUTRA.go │ │ ├── EmergencyAreaIDCancelledEUTRAItem.go │ │ ├── EmergencyAreaIDCancelledNR.go │ │ ├── EmergencyAreaIDCancelledNRItem.go │ │ ├── EmergencyAreaIDList.go │ │ ├── EmergencyAreaIDListForRestart.go │ │ ├── EmergencyFallbackIndicator.go │ │ ├── EmergencyFallbackRequestIndicator.go │ │ ├── EmergencyServiceTargetCN.go │ │ ├── EquivalentPLMNs.go │ │ ├── ErrorIndication.go │ │ ├── EventType.go │ │ ├── ExpectedActivityPeriod.go │ │ ├── ExpectedHOInterval.go │ │ ├── ExpectedIdlePeriod.go │ │ ├── ExpectedUEActivityBehaviour.go │ │ ├── ExpectedUEBehaviour.go │ │ ├── ExpectedUEMobility.go │ │ ├── ExpectedUEMovingTrajectory.go │ │ ├── ExpectedUEMovingTrajectoryItem.go │ │ ├── FiveGSTMSI.go │ │ ├── FiveGTMSI.go │ │ ├── FiveQI.go │ │ ├── ForbiddenAreaInformation.go │ │ ├── ForbiddenAreaInformationItem.go │ │ ├── ForbiddenTACs.go │ │ ├── GBRQosInformation.go │ │ ├── GNBID.go │ │ ├── GTPTEID.go │ │ ├── GTPTunnel.go │ │ ├── GUAMI.go │ │ ├── GlobalGNBID.go │ │ ├── GlobalN3IWFID.go │ │ ├── GlobalNgENBID.go │ │ ├── GlobalRANNodeID.go │ │ ├── HandoverCancel.go │ │ ├── HandoverCancelAcknowledge.go │ │ ├── HandoverCommand.go │ │ ├── HandoverCommandTransfer.go │ │ ├── HandoverFailure.go │ │ ├── HandoverNotify.go │ │ ├── HandoverPreparationFailure.go │ │ ├── HandoverPreparationUnsuccessfulTransfer.go │ │ ├── HandoverRequest.go │ │ ├── HandoverRequestAcknowledge.go │ │ ├── HandoverRequestAcknowledgeTransfer.go │ │ ├── HandoverRequired.go │ │ ├── HandoverRequiredTransfer.go │ │ ├── HandoverResourceAllocationUnsuccessfulTransfer.go │ │ ├── HandoverType.go │ │ ├── IMSVoiceSupportIndicator.go │ │ ├── IndexToRFSP.go │ │ ├── InfoOnRecommendedCellsAndRANNodesForPaging.go │ │ ├── InitialContextSetupFailure.go │ │ ├── InitialContextSetupRequest.go │ │ ├── InitialContextSetupResponse.go │ │ ├── InitialUEMessage.go │ │ ├── InitiatingMessage.go │ │ ├── IntegrityProtectionIndication.go │ │ ├── IntegrityProtectionResult.go │ │ ├── IntendedNumberOfPagingAttempts.go │ │ ├── InterfacesToTrace.go │ │ ├── LastVisitedCellInformation.go │ │ ├── LastVisitedCellItem.go │ │ ├── LastVisitedEUTRANCellInformation.go │ │ ├── LastVisitedGERANCellInformation.go │ │ ├── LastVisitedNGRANCellInformation.go │ │ ├── LastVisitedUTRANCellInformation.go │ │ ├── LocationReport.go │ │ ├── LocationReportingControl.go │ │ ├── LocationReportingFailureIndication.go │ │ ├── LocationReportingReferenceID.go │ │ ├── LocationReportingRequestType.go │ │ ├── MICOModeIndication.go │ │ ├── Makefile │ │ ├── MaskedIMEISV.go │ │ ├── MaximumDataBurstVolume.go │ │ ├── MaximumIntegrityProtectedDataRate.go │ │ ├── MessageIdentifier.go │ │ ├── MobilityRestrictionList.go │ │ ├── MultipleTNLInformation.go │ │ ├── N3IWFID.go │ │ ├── NASNonDeliveryIndication.go │ │ ├── NASPDU.go │ │ ├── NASSecurityParametersFromNGRAN.go │ │ ├── NGAPPDU.go │ │ ├── NGRANCGI.go │ │ ├── NGRANTraceID.go │ │ ├── NGReset.go │ │ ├── NGResetAcknowledge.go │ │ ├── NGSetupFailure.go │ │ ├── NGSetupRequest.go │ │ ├── NGSetupResponse.go │ │ ├── NRCGI.go │ │ ├── NRCGIList.go │ │ ├── NRCGIListForWarning.go │ │ ├── NRCellIdentity.go │ │ ├── NRPPaPDU.go │ │ ├── NRencryptionAlgorithms.go │ │ ├── NRintegrityProtectionAlgorithms.go │ │ ├── NetworkInstance.go │ │ ├── NewSecurityContextInd.go │ │ ├── NextHopChainingCount.go │ │ ├── NextPagingAreaScope.go │ │ ├── NgENBID.go │ │ ├── NonDynamic5QIDescriptor.go │ │ ├── NotAllowedTACs.go │ │ ├── NotificationCause.go │ │ ├── NotificationControl.go │ │ ├── NumberOfBroadcasts.go │ │ ├── NumberOfBroadcastsRequested.go │ │ ├── OverloadAction.go │ │ ├── OverloadResponse.go │ │ ├── OverloadStart.go │ │ ├── OverloadStartNSSAIItem.go │ │ ├── OverloadStartNSSAIList.go │ │ ├── OverloadStop.go │ │ ├── PDUSessionAggregateMaximumBitRate.go │ │ ├── PDUSessionID.go │ │ ├── PDUSessionResourceAdmittedItem.go │ │ ├── PDUSessionResourceAdmittedList.go │ │ ├── PDUSessionResourceFailedToModifyItemModCfm.go │ │ ├── PDUSessionResourceFailedToModifyItemModRes.go │ │ ├── PDUSessionResourceFailedToModifyListModCfm.go │ │ ├── PDUSessionResourceFailedToModifyListModRes.go │ │ ├── PDUSessionResourceFailedToSetupItemCxtFail.go │ │ ├── PDUSessionResourceFailedToSetupItemCxtRes.go │ │ ├── PDUSessionResourceFailedToSetupItemHOAck.go │ │ ├── PDUSessionResourceFailedToSetupItemPSReq.go │ │ ├── PDUSessionResourceFailedToSetupItemSURes.go │ │ ├── PDUSessionResourceFailedToSetupListCxtFail.go │ │ ├── PDUSessionResourceFailedToSetupListCxtRes.go │ │ ├── PDUSessionResourceFailedToSetupListHOAck.go │ │ ├── PDUSessionResourceFailedToSetupListPSReq.go │ │ ├── PDUSessionResourceFailedToSetupListSURes.go │ │ ├── PDUSessionResourceHandoverItem.go │ │ ├── PDUSessionResourceHandoverList.go │ │ ├── PDUSessionResourceInformationItem.go │ │ ├── PDUSessionResourceInformationList.go │ │ ├── PDUSessionResourceItemCxtRelCpl.go │ │ ├── PDUSessionResourceItemCxtRelReq.go │ │ ├── PDUSessionResourceItemHORqd.go │ │ ├── PDUSessionResourceListCxtRelCpl.go │ │ ├── PDUSessionResourceListCxtRelReq.go │ │ ├── PDUSessionResourceListHORqd.go │ │ ├── PDUSessionResourceModifyConfirm.go │ │ ├── PDUSessionResourceModifyConfirmTransfer.go │ │ ├── PDUSessionResourceModifyIndication.go │ │ ├── PDUSessionResourceModifyIndicationTransfer.go │ │ ├── PDUSessionResourceModifyIndicationUnsuccessfulTransfer.go │ │ ├── PDUSessionResourceModifyItemModCfm.go │ │ ├── PDUSessionResourceModifyItemModInd.go │ │ ├── PDUSessionResourceModifyItemModReq.go │ │ ├── PDUSessionResourceModifyItemModRes.go │ │ ├── PDUSessionResourceModifyListModCfm.go │ │ ├── PDUSessionResourceModifyListModInd.go │ │ ├── PDUSessionResourceModifyListModReq.go │ │ ├── PDUSessionResourceModifyListModRes.go │ │ ├── PDUSessionResourceModifyRequest.go │ │ ├── PDUSessionResourceModifyRequestTransfer.go │ │ ├── PDUSessionResourceModifyResponse.go │ │ ├── PDUSessionResourceModifyResponseTransfer.go │ │ ├── PDUSessionResourceModifyUnsuccessfulTransfer.go │ │ ├── PDUSessionResourceNotify.go │ │ ├── PDUSessionResourceNotifyItem.go │ │ ├── PDUSessionResourceNotifyList.go │ │ ├── PDUSessionResourceNotifyReleasedTransfer.go │ │ ├── PDUSessionResourceNotifyTransfer.go │ │ ├── PDUSessionResourceReleaseCommand.go │ │ ├── PDUSessionResourceReleaseCommandTransfer.go │ │ ├── PDUSessionResourceReleaseResponse.go │ │ ├── PDUSessionResourceReleaseResponseTransfer.go │ │ ├── PDUSessionResourceReleasedItemNot.go │ │ ├── PDUSessionResourceReleasedItemPSAck.go │ │ ├── PDUSessionResourceReleasedItemPSFail.go │ │ ├── PDUSessionResourceReleasedItemRelRes.go │ │ ├── PDUSessionResourceReleasedListNot.go │ │ ├── PDUSessionResourceReleasedListPSAck.go │ │ ├── PDUSessionResourceReleasedListPSFail.go │ │ ├── PDUSessionResourceReleasedListRelRes.go │ │ ├── PDUSessionResourceSetupItemCxtReq.go │ │ ├── PDUSessionResourceSetupItemCxtRes.go │ │ ├── PDUSessionResourceSetupItemHOReq.go │ │ ├── PDUSessionResourceSetupItemSUReq.go │ │ ├── PDUSessionResourceSetupItemSURes.go │ │ ├── PDUSessionResourceSetupListCxtReq.go │ │ ├── PDUSessionResourceSetupListCxtRes.go │ │ ├── PDUSessionResourceSetupListHOReq.go │ │ ├── PDUSessionResourceSetupListSUReq.go │ │ ├── PDUSessionResourceSetupListSURes.go │ │ ├── PDUSessionResourceSetupRequest.go │ │ ├── PDUSessionResourceSetupRequestTransfer.go │ │ ├── PDUSessionResourceSetupResponse.go │ │ ├── PDUSessionResourceSetupResponseTransfer.go │ │ ├── PDUSessionResourceSetupUnsuccessfulTransfer.go │ │ ├── PDUSessionResourceSwitchedItem.go │ │ ├── PDUSessionResourceSwitchedList.go │ │ ├── PDUSessionResourceToBeSwitchedDLItem.go │ │ ├── PDUSessionResourceToBeSwitchedDLList.go │ │ ├── PDUSessionResourceToReleaseItemHOCmd.go │ │ ├── PDUSessionResourceToReleaseItemRelCmd.go │ │ ├── PDUSessionResourceToReleaseListHOCmd.go │ │ ├── PDUSessionResourceToReleaseListRelCmd.go │ │ ├── PDUSessionType.go │ │ ├── PLMNIdentity.go │ │ ├── PLMNSupportItem.go │ │ ├── PLMNSupportList.go │ │ ├── PWSCancelRequest.go │ │ ├── PWSCancelResponse.go │ │ ├── PWSFailedCellIDList.go │ │ ├── PWSFailureIndication.go │ │ ├── PWSRestartIndication.go │ │ ├── PacketDelayBudget.go │ │ ├── PacketErrorRate.go │ │ ├── PacketLossRate.go │ │ ├── Paging.go │ │ ├── PagingAttemptCount.go │ │ ├── PagingAttemptInformation.go │ │ ├── PagingDRX.go │ │ ├── PagingOrigin.go │ │ ├── PagingPriority.go │ │ ├── PathSwitchRequest.go │ │ ├── PathSwitchRequestAcknowledge.go │ │ ├── PathSwitchRequestAcknowledgeTransfer.go │ │ ├── PathSwitchRequestFailure.go │ │ ├── PathSwitchRequestSetupFailedTransfer.go │ │ ├── PathSwitchRequestTransfer.go │ │ ├── PathSwitchRequestUnsuccessfulTransfer.go │ │ ├── PeriodicRegistrationUpdateTimer.go │ │ ├── PortNumber.go │ │ ├── PreEmptionCapability.go │ │ ├── PreEmptionVulnerability.go │ │ ├── Presence.go │ │ ├── PriorityLevelARP.go │ │ ├── PriorityLevelQos.go │ │ ├── PrivateIEContainer.go │ │ ├── PrivateIEField.go │ │ ├── PrivateIEID.go │ │ ├── PrivateMessage.go │ │ ├── ProcedureCode.go │ │ ├── ProtocolExtensionContainer.go │ │ ├── ProtocolExtensionField.go │ │ ├── ProtocolExtensionID.go │ │ ├── ProtocolIEContainer.go │ │ ├── ProtocolIEContainerList.go │ │ ├── ProtocolIEContainerPair.go │ │ ├── ProtocolIEContainerPairList.go │ │ ├── ProtocolIEField.go │ │ ├── ProtocolIEFieldPair.go │ │ ├── ProtocolIEID.go │ │ ├── ProtocolIESingleContainer.go │ │ ├── QosCharacteristics.go │ │ ├── QosFlowAcceptedItem.go │ │ ├── QosFlowAcceptedList.go │ │ ├── QosFlowAddOrModifyRequestItem.go │ │ ├── QosFlowAddOrModifyRequestList.go │ │ ├── QosFlowAddOrModifyResponseItem.go │ │ ├── QosFlowAddOrModifyResponseList.go │ │ ├── QosFlowIdentifier.go │ │ ├── QosFlowInformationItem.go │ │ ├── QosFlowInformationList.go │ │ ├── QosFlowItem.go │ │ ├── QosFlowLevelQosParameters.go │ │ ├── QosFlowList.go │ │ ├── QosFlowModifyConfirmItem.go │ │ ├── QosFlowModifyConfirmList.go │ │ ├── QosFlowNotifyItem.go │ │ ├── QosFlowNotifyList.go │ │ ├── QosFlowPerTNLInformation.go │ │ ├── QosFlowSetupRequestItem.go │ │ ├── QosFlowSetupRequestList.go │ │ ├── QosFlowSetupResponseItemHOReqAck.go │ │ ├── QosFlowSetupResponseItemSURes.go │ │ ├── QosFlowSetupResponseListHOReqAck.go │ │ ├── QosFlowSetupResponseListSURes.go │ │ ├── QosFlowToBeForwardedItem.go │ │ ├── QosFlowToBeForwardedList.go │ │ ├── RANConfigurationUpdate.go │ │ ├── RANConfigurationUpdateAcknowledge.go │ │ ├── RANConfigurationUpdateFailure.go │ │ ├── RANNodeName.go │ │ ├── RANPagingPriority.go │ │ ├── RANStatusTransferTransparentContainer.go │ │ ├── RANUENGAPID.go │ │ ├── RATRestrictionInformation.go │ │ ├── RATRestrictions.go │ │ ├── RATRestrictionsItem.go │ │ ├── RRCContainer.go │ │ ├── RRCEstablishmentCause.go │ │ ├── RRCInactiveTransitionReport.go │ │ ├── RRCInactiveTransitionReportRequest.go │ │ ├── RRCState.go │ │ ├── RecommendedCellItem.go │ │ ├── RecommendedCellList.go │ │ ├── RecommendedCellsForPaging.go │ │ ├── RecommendedRANNodeItem.go │ │ ├── RecommendedRANNodeList.go │ │ ├── RecommendedRANNodesForPaging.go │ │ ├── ReferenceID.go │ │ ├── ReflectiveQosAttribute.go │ │ ├── RelativeAMFCapacity.go │ │ ├── RepetitionPeriod.go │ │ ├── ReportArea.go │ │ ├── RerouteNASRequest.go │ │ ├── ResetAll.go │ │ ├── ResetType.go │ │ ├── RoutingID.go │ │ ├── SD.go │ │ ├── SNSSAI.go │ │ ├── SONConfigurationTransfer.go │ │ ├── SONInformation.go │ │ ├── SONInformationReply.go │ │ ├── SONInformationRequest.go │ │ ├── SST.go │ │ ├── SecurityContext.go │ │ ├── SecurityIndication.go │ │ ├── SecurityKey.go │ │ ├── SecurityResult.go │ │ ├── SerialNumber.go │ │ ├── ServedGUAMIItem.go │ │ ├── ServedGUAMIList.go │ │ ├── ServiceAreaInformation.go │ │ ├── ServiceAreaInformationItem.go │ │ ├── SingleTNLInformation.go │ │ ├── SliceOverloadItem.go │ │ ├── SliceOverloadList.go │ │ ├── SliceSupportItem.go │ │ ├── SliceSupportList.go │ │ ├── SourceNGRANNodeToTargetNGRANNodeTransparentContainer.go │ │ ├── SourceOfUEActivityBehaviourInformation.go │ │ ├── SourceRANNodeID.go │ │ ├── SourceToTargetTransparentContainer.go │ │ ├── SuccessfulOutcome.go │ │ ├── SupportedTAItem.go │ │ ├── SupportedTAList.go │ │ ├── TAC.go │ │ ├── TAI.go │ │ ├── TAIBroadcastEUTRA.go │ │ ├── TAIBroadcastEUTRAItem.go │ │ ├── TAIBroadcastNR.go │ │ ├── TAIBroadcastNRItem.go │ │ ├── TAICancelledEUTRA.go │ │ ├── TAICancelledEUTRAItem.go │ │ ├── TAICancelledNR.go │ │ ├── TAICancelledNRItem.go │ │ ├── TAIListForInactive.go │ │ ├── TAIListForInactiveItem.go │ │ ├── TAIListForPaging.go │ │ ├── TAIListForPagingItem.go │ │ ├── TAIListForRestart.go │ │ ├── TAIListForWarning.go │ │ ├── TNLAddressWeightFactor.go │ │ ├── TNLAssociationItem.go │ │ ├── TNLAssociationList.go │ │ ├── TNLAssociationUsage.go │ │ ├── TNLInformationItem.go │ │ ├── TNLInformationList.go │ │ ├── TNLMappingItem.go │ │ ├── TNLMappingList.go │ │ ├── TargetID.go │ │ ├── TargetNGRANNodeToSourceNGRANNodeTransparentContainer.go │ │ ├── TargetRANNodeID.go │ │ ├── TargetToSourceTransparentContainer.go │ │ ├── TargeteNBID.go │ │ ├── TimeStamp.go │ │ ├── TimeToWait.go │ │ ├── TimeUEStayedInCell.go │ │ ├── TimeUEStayedInCellEnhancedGranularity.go │ │ ├── TimerApproachForGUAMIRemoval.go │ │ ├── TraceActivation.go │ │ ├── TraceDepth.go │ │ ├── TraceFailureIndication.go │ │ ├── TraceStart.go │ │ ├── TrafficLoadReductionIndication.go │ │ ├── TransportLayerAddress.go │ │ ├── TriggeringMessage.go │ │ ├── TypeOfError.go │ │ ├── UEAggregateMaximumBitRate.go │ │ ├── UEAssociatedLogicalNGConnectionItem.go │ │ ├── UEAssociatedLogicalNGConnectionList.go │ │ ├── UEContextModificationFailure.go │ │ ├── UEContextModificationRequest.go │ │ ├── UEContextModificationResponse.go │ │ ├── UEContextReleaseCommand.go │ │ ├── UEContextReleaseComplete.go │ │ ├── UEContextReleaseRequest.go │ │ ├── UEContextRequest.go │ │ ├── UEHistoryInformation.go │ │ ├── UEIdentityIndexValue.go │ │ ├── UENGAPIDPair.go │ │ ├── UENGAPIDs.go │ │ ├── UEPagingIdentity.go │ │ ├── UEPresence.go │ │ ├── UEPresenceInAreaOfInterestItem.go │ │ ├── UEPresenceInAreaOfInterestList.go │ │ ├── UERadioCapability.go │ │ ├── UERadioCapabilityCheckRequest.go │ │ ├── UERadioCapabilityCheckResponse.go │ │ ├── UERadioCapabilityForPaging.go │ │ ├── UERadioCapabilityForPagingOfEUTRA.go │ │ ├── UERadioCapabilityForPagingOfNR.go │ │ ├── UERadioCapabilityInfoIndication.go │ │ ├── UESecurityCapabilities.go │ │ ├── UETNLABindingReleaseRequest.go │ │ ├── ULNGUUPTNLModifyItem.go │ │ ├── ULNGUUPTNLModifyList.go │ │ ├── UPTNLInformation.go │ │ ├── UPTransportLayerInformation.go │ │ ├── UnavailableGUAMIItem.go │ │ ├── UnavailableGUAMIList.go │ │ ├── UnsuccessfulOutcome.go │ │ ├── UplinkNASTransport.go │ │ ├── UplinkNonUEAssociatedNRPPaTransport.go │ │ ├── UplinkRANConfigurationTransfer.go │ │ ├── UplinkRANStatusTransfer.go │ │ ├── UplinkUEAssociatedNRPPaTransport.go │ │ ├── UserLocationInformation.go │ │ ├── UserLocationInformationEUTRA.go │ │ ├── UserLocationInformationN3IWF.go │ │ ├── UserLocationInformationNR.go │ │ ├── UserPlaneSecurityInformation.go │ │ ├── WarningAreaCoordinates.go │ │ ├── WarningAreaList.go │ │ ├── WarningMessageContents.go │ │ ├── WarningSecurityInfo.go │ │ ├── WarningType.go │ │ ├── WriteReplaceWarningRequest.go │ │ ├── WriteReplaceWarningResponse.go │ │ ├── XnExtTLAItem.go │ │ ├── XnExtTLAs.go │ │ ├── XnGTPTLAs.go │ │ ├── XnTLAs.go │ │ └── XnTNLConfigurationInfo.go │ └── version │ │ ├── version.go │ │ └── version_test.go ├── openapi │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Namf_Communication │ │ ├── .gitignore │ │ ├── .openapi-generator │ │ │ └── VERSION │ │ ├── CHANGELOG.md │ │ ├── api │ │ │ └── openapi.yaml │ │ ├── api_individual_subscription_document.go │ │ ├── api_individual_ue_context_document.go │ │ ├── api_individual_ue_context_n2_message_notify_callback_document.go │ │ ├── api_n1_n2_individual_subscription_document.go │ │ ├── api_n1_n2_message_collection_document.go │ │ ├── api_n1_n2_message_n1_message_notify_callback_document.go │ │ ├── api_n1_n2_message_n2_message_notify_callback_document.go │ │ ├── api_n1_n2_message_transfer_status_notification_callback_document.go │ │ ├── api_n1_n2_subscriptions_collection_for_individual_ue_contexts_document.go │ │ ├── api_non_uen2_message_notification_individual_subscription_document.go │ │ ├── api_non_uen2_messages_collection_document.go │ │ ├── api_non_uen2_messages_subscriptions_collection_document.go │ │ ├── api_subscriptions_collection_document.go │ │ ├── api_subscriptions_collection_document_amf_status_change_notify_callback_document.go │ │ ├── client.go │ │ ├── client_debug.go │ │ ├── configuration.go │ │ ├── logger │ │ │ └── logger.go │ │ └── version │ │ │ └── version.go │ ├── Namf_EventExposure │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── api │ │ │ └── openapi.yaml │ │ ├── api_individual_subscription_document.go │ │ ├── api_subscriptions_collection_document.go │ │ ├── client.go │ │ ├── client_debug.go │ │ ├── configuration.go │ │ ├── logger │ │ │ └── logger.go │ │ └── version │ │ │ └── version.go │ ├── Namf_Location │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── api_individual_ue_context_document.go │ │ ├── client.go │ │ ├── client_debug.go │ │ ├── configuration.go │ │ └── version │ │ │ └── version.go │ ├── Namf_MT │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── api_ue_context_document.go │ │ ├── api_ue_reach_ind_document.go │ │ ├── client.go │ │ ├── client_debug.go │ │ ├── configuration.go │ │ └── version │ │ │ └── version.go │ ├── Nausf_SoRProtection │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── api_default.go │ │ ├── client.go │ │ ├── client_debug.go │ │ ├── configuration.go │ │ └── version │ │ │ └── version.go │ ├── Nausf_UEAuthentication │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── api_default.go │ │ ├── client.go │ │ ├── client_debug.go │ │ ├── configuration.go │ │ └── version │ │ │ └── version.go │ ├── Nausf_UPUProtection │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── api_default.go │ │ ├── client.go │ │ ├── client_debug.go │ │ ├── configuration.go │ │ └── version │ │ │ └── version.go │ ├── Nnef_PFDManagement │ │ ├── api_individual_application_pfd.go │ │ ├── api_individual_pfd_subscription.go │ │ ├── api_pfd_of_applications.go │ │ ├── api_pfd_subscriptions.go │ │ ├── client.go │ │ └── configuration.go │ ├── Nnrf_AccessToken │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── api │ │ │ └── openapi.yaml │ │ ├── api_access_token_request.go │ │ ├── client.go │ │ ├── client_debug.go │ │ ├── configuration.go │ │ └── version │ │ │ └── version.go │ ├── Nnrf_NFDiscovery │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── api │ │ │ └── openapi.yaml │ │ ├── api_nf_instances_store.go │ │ ├── client.go │ │ ├── client_debug.go │ │ ├── configuration.go │ │ └── version │ │ │ └── version.go │ ├── Nnrf_NFManagement │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── api │ │ │ └── openapi.yaml │ │ ├── api_nf_instance_id_document.go │ │ ├── api_nf_instances_store.go │ │ ├── api_notification.go │ │ ├── api_subscription_id_document.go │ │ ├── api_subscriptions_collection.go │ │ ├── client.go │ │ ├── client_debug.go │ │ ├── configuration.go │ │ └── version │ │ │ └── version.go │ ├── Nnssf_NSSAIAvailability │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── api │ │ │ └── openapi.yaml │ │ ├── api_nf_instance_id_document.go │ │ ├── api_notification.go │ │ ├── api_subscription_id_document.go │ │ ├── api_subscriptions_collection.go │ │ ├── client.go │ │ ├── configuration.go │ │ ├── logger │ │ │ └── logger.go │ │ └── version │ │ │ └── version.go │ ├── Nnssf_NSSelection │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── api │ │ │ └── openapi.yaml │ │ ├── api_network_slice_information_document.go │ │ ├── client.go │ │ ├── configuration.go │ │ ├── logger │ │ │ └── logger.go │ │ └── version │ │ │ └── version.go │ ├── Npcf_AMPolicy │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── api_default.go │ │ ├── api_default_callback.go │ │ ├── client.go │ │ ├── configuration.go │ │ └── version │ │ │ └── version.go │ ├── Npcf_BDTPolicyControl │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── api_bdt_policies_collection.go │ │ ├── api_individual_bdt_policy_document.go │ │ ├── client.go │ │ ├── configuration.go │ │ └── version │ │ │ └── version.go │ ├── Npcf_PolicyAuthorization │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── api_application_sessions_collection.go │ │ ├── api_eventNotification_callback.go │ │ ├── api_events_subscription_document.go │ │ ├── api_individual_application_session_context_document.go │ │ ├── api_terminationRequest_callback.go │ │ ├── client.go │ │ ├── configuration.go │ │ └── version │ │ │ └── version.go │ ├── Npcf_SMPolicyControl │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── api_dafult_notify_callback.go │ │ ├── api_default.go │ │ ├── client.go │ │ ├── configuration.go │ │ └── version │ │ │ └── version.go │ ├── Npcf_UEPolicy │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── api_default.go │ │ ├── client.go │ │ ├── configuration.go │ │ └── version │ │ │ └── version.go │ ├── Nsmf_EventExposure │ │ ├── .gitignore │ │ ├── api_default.go │ │ ├── client.go │ │ ├── configuration.go │ │ ├── logger │ │ │ └── logger.go │ │ └── version │ │ │ └── version.go │ ├── Nsmf_PDUSession │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── api │ │ │ └── openapi.yaml │ │ ├── api_individual_pdu_session_hsmf.go │ │ ├── api_individual_sm_context.go │ │ ├── api_individual_sm_context_callback.go │ │ ├── api_pdu_sessions_collection.go │ │ ├── api_sm_contexts_collection.go │ │ ├── client.go │ │ ├── client_debug.go │ │ ├── configuration.go │ │ ├── errors.go │ │ ├── logger │ │ │ └── logger.go │ │ └── version │ │ │ └── version.go │ ├── Nudm_EventExposure │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── api │ │ │ └── openapi.yaml │ │ ├── api_create_ee_subscription.go │ │ ├── api_delete_ee_subscription.go │ │ ├── api_update_ee_subscription.go │ │ ├── client.go │ │ ├── configuration.go │ │ ├── logger │ │ │ └── logger.go │ │ └── version │ │ │ └── version.go │ ├── Nudm_ParameterProvision │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── api │ │ │ └── openapi.yaml │ │ ├── api_subscription_data_update.go │ │ ├── client.go │ │ ├── configuration.go │ │ ├── logger │ │ │ └── logger.go │ │ └── version │ │ │ └── version.go │ ├── Nudm_SubscriberDataManagement │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── api │ │ │ └── openapi.yaml │ │ ├── api_access_and_mobility_subscription_data_retrieval.go │ │ ├── api_gpsi_to_supi_translation.go │ │ ├── api_providing_acknowledgement_of_steering_of_roaming.go │ │ ├── api_providing_acknowledgement_of_ue_parameters_update.go │ │ ├── api_retrieval_of_multiple_data_sets.go │ │ ├── api_retrieval_of_shared_data.go │ │ ├── api_session_management_subscription_data_retrieval.go │ │ ├── api_slice_selection_subscription_data_retrieval.go │ │ ├── api_smf_selection_subscription_data_retrieval.go │ │ ├── api_sms_management_subscription_data_retrieval.go │ │ ├── api_sms_subscription_data_retrieval.go │ │ ├── api_subs_to_notification_data_change_notify_callback_document.go │ │ ├── api_subscription_creation.go │ │ ├── api_subscription_creation_for_shared_data.go │ │ ├── api_subscription_deletion.go │ │ ├── api_subscription_deletion_for_shared_data.go │ │ ├── api_subscription_modification.go │ │ ├── api_trace_configuration_data_retrieval.go │ │ ├── api_ue_context_in_smf_data_retrieval.go │ │ ├── api_ue_context_in_smsf_data_retrieval.go │ │ ├── client.go │ │ ├── configuration.go │ │ ├── logger │ │ │ └── logger.go │ │ └── version │ │ │ └── version.go │ ├── Nudm_UEAuthentication │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── api │ │ │ └── openapi.yaml │ │ ├── api_confirm_auth.go │ │ ├── api_generate_auth_data.go │ │ ├── client.go │ │ ├── configuration.go │ │ ├── logger │ │ │ └── logger.go │ │ └── version │ │ │ └── version.go │ ├── Nudm_UEContextManagement │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── api │ │ │ └── openapi.yaml │ │ ├── api_amf3_gpp_access_registration_info_retrieval.go │ │ ├── api_amf_non3_gpp_access_registration_info_retrieval.go │ │ ├── api_amf_registration_for3_gpp_access.go │ │ ├── api_amf_registration_for_non3_gpp_access.go │ │ ├── api_deregistrationNotification.go │ │ ├── api_parameter_update_in_the_amf_registration_for3_gpp_access.go │ │ ├── api_parameter_update_in_the_amf_registration_for_non3_gpp_access.go │ │ ├── api_smf_deregistration.go │ │ ├── api_smf_registration.go │ │ ├── api_smsf3_gpp_access_registration_info_retrieval.go │ │ ├── api_smsf_deregistration_for3_gpp_access.go │ │ ├── api_smsf_deregistration_for_non3_gpp_access.go │ │ ├── api_smsf_non3_gpp_access_registration_info_retrieval.go │ │ ├── api_smsf_registration_for3_gpp_access.go │ │ ├── api_smsf_registration_for_non3_gpp_access.go │ │ ├── client.go │ │ ├── configuration.go │ │ ├── logger │ │ │ └── logger.go │ │ └── version │ │ │ └── version.go │ ├── Nudr_DataRepository │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── api │ │ │ └── openapi.yaml │ │ ├── api_access_and_mobility_data.go │ │ ├── api_access_and_mobility_subscription_data_document.go │ │ ├── api_amf3_gpp_access_registration_document.go │ │ ├── api_amf_non3_gpp_access_registration_document.go │ │ ├── api_amf_subscription_info_document.go │ │ ├── api_auth_event_document.go │ │ ├── api_authentication_data_document.go │ │ ├── api_authentication_so_r_document.go │ │ ├── api_authentication_status_document.go │ │ ├── api_create_amf_subscription_info_document.go │ │ ├── api_default.go │ │ ├── api_event_amf_subscription_info_document.go │ │ ├── api_event_exposure_data_document.go │ │ ├── api_event_exposure_group_subscriptions_collection.go │ │ ├── api_event_exposure_subscription_document.go │ │ ├── api_event_exposure_subscriptions_collection.go │ │ ├── api_operator_specific_data_container_document.go │ │ ├── api_parameter_provision_document.go │ │ ├── api_pdu_session_management_data.go │ │ ├── api_provisioned_data_document.go │ │ ├── api_provisioned_parameter_data_document.go │ │ ├── api_query_amf_subscription_info_document.go │ │ ├── api_query_identity_data_by_supi_or_gpsi_document.go │ │ ├── api_query_odb_data_by_supi_or_gpsi_document.go │ │ ├── api_retrieval_of_shared_data.go │ │ ├── api_sdm_subscription_document.go │ │ ├── api_sdm_subscriptions_collection.go │ │ ├── api_session_management_subscription_data.go │ │ ├── api_smf_registration_document.go │ │ ├── api_smf_registrations_collection.go │ │ ├── api_smf_selection_subscription_data_document.go │ │ ├── api_sms_management_subscription_data_document.go │ │ ├── api_sms_subscription_data_document.go │ │ ├── api_smsf3_gpp_registration_document.go │ │ ├── api_smsf_non3_gpp_registration_document.go │ │ ├── api_subs_to_nofify_collection.go │ │ ├── api_subs_to_nofify_data_change_notify_callback_document.go │ │ ├── api_subs_to_nofify_policy_data_change_notify_callback_document.go │ │ ├── api_subs_to_notify_document.go │ │ ├── api_trace_data_document.go │ │ ├── client.go │ │ ├── client_debug.go │ │ ├── configuration.go │ │ ├── logger │ │ │ └── logger.go │ │ └── version │ │ │ └── version.go │ ├── auth.go │ ├── client.go │ ├── convert.go │ ├── convert_test.go │ ├── error.go │ ├── json_query_builder.go │ ├── logger │ │ └── logger.go │ ├── media_type.go │ ├── models │ │ ├── model_acc_net_ch_id.go │ │ ├── model_acc_net_charging_address.go │ │ ├── model_access_and_mobility_data.go │ │ ├── model_access_and_mobility_subscription_data.go │ │ ├── model_access_tech.go │ │ ├── model_access_token_claims.go │ │ ├── model_access_token_err.go │ │ ├── model_access_token_req.go │ │ ├── model_access_token_rsp.go │ │ ├── model_access_type.go │ │ ├── model_accu_usage_report.go │ │ ├── model_accumulated_usage.go │ │ ├── model_accuracy_fulfilment_indicator.go │ │ ├── model_acknowledge_info.go │ │ ├── model_additional_qos_flow_info.go │ │ ├── model_af_event.go │ │ ├── model_af_event_notification.go │ │ ├── model_af_event_subscription.go │ │ ├── model_af_notif_method.go │ │ ├── model_af_routing_requirement.go │ │ ├── model_af_routing_requirement_rm.go │ │ ├── model_af_sig_protocol.go │ │ ├── model_allowed_nssai.go │ │ ├── model_allowed_snssai.go │ │ ├── model_am_policy_data.go │ │ ├── model_am_policy_req_trigger.go │ │ ├── model_ambr.go │ │ ├── model_ambr_rm.go │ │ ├── model_amf3_gpp_access_registration.go │ │ ├── model_amf3_gpp_access_registration_eps_interworking_info.go │ │ ├── model_amf3_gpp_access_registration_modification.go │ │ ├── model_amf3_gpp_access_registration_modification_eps_interworking_info.go │ │ ├── model_amf_cond.go │ │ ├── model_amf_create_event_subscription.go │ │ ├── model_amf_created_event_subscription.go │ │ ├── model_amf_event.go │ │ ├── model_amf_event_area.go │ │ ├── model_amf_event_mode.go │ │ ├── model_amf_event_notification.go │ │ ├── model_amf_event_report.go │ │ ├── model_amf_event_state.go │ │ ├── model_amf_event_subscription.go │ │ ├── model_amf_event_trigger.go │ │ ├── model_amf_event_type.go │ │ ├── model_amf_info.go │ │ ├── model_amf_non3_gpp_access_registration.go │ │ ├── model_amf_non3_gpp_access_registration_modification.go │ │ ├── model_amf_status_change_notification.go │ │ ├── model_amf_status_info.go │ │ ├── model_amf_subscription_info.go │ │ ├── model_amf_update_event_option_item.go │ │ ├── model_amf_update_event_subscription_item_inner.go │ │ ├── model_amf_updated_event_subscription.go │ │ ├── model_an_gw_address.go │ │ ├── model_app_detection_info.go │ │ ├── model_app_session_context.go │ │ ├── model_app_session_context_req_data.go │ │ ├── model_app_session_context_resp_data.go │ │ ├── model_app_session_context_update_data.go │ │ ├── model_area.go │ │ ├── model_area_of_validity.go │ │ ├── model_arp.go │ │ ├── model_assign_ebi_data.go │ │ ├── model_assign_ebi_error.go │ │ ├── model_assign_ebi_failed.go │ │ ├── model_assigned_ebi_data.go │ │ ├── model_atom.go │ │ ├── model_ausf_info.go │ │ ├── model_auth_event.go │ │ ├── model_auth_method.go │ │ ├── model_auth_result.go │ │ ├── model_auth_type.go │ │ ├── model_authentication_info.go │ │ ├── model_authentication_info_request.go │ │ ├── model_authentication_info_result.go │ │ ├── model_authentication_subscription.go │ │ ├── model_authentication_vector.go │ │ ├── model_authorized_default_qos.go │ │ ├── model_authorized_network_slice_info.go │ │ ├── model_authorized_nssai_availability_data.go │ │ ├── model_authorized_nssai_availability_info.go │ │ ├── model_av5_g_he_aka.go │ │ ├── model_av5g_aka.go │ │ ├── model_av_eap_aka_prime.go │ │ ├── model_av_type.go │ │ ├── model_backup_amf_info.go │ │ ├── model_bdt_data.go │ │ ├── model_bdt_policy.go │ │ ├── model_bdt_policy_data.go │ │ ├── model_bdt_policy_data_patch.go │ │ ├── model_bdt_req_data.go │ │ ├── model_bsf_info.go │ │ ├── model_cause.go │ │ ├── model_change_item.go │ │ ├── model_change_of_supi_pei_association_report.go │ │ ├── model_change_type.go │ │ ├── model_charging_data.go │ │ ├── model_charging_information.go │ │ ├── model_chf_info.go │ │ ├── model_chf_service_info.go │ │ ├── model_ciphering_algorithm.go │ │ ├── model_civic_address.go │ │ ├── model_cm_info.go │ │ ├── model_cm_state.go │ │ ├── model_cnf.go │ │ ├── model_cnf_unit.go │ │ ├── model_communication_characteristics.go │ │ ├── model_communication_failure.go │ │ ├── model_complex_query.go │ │ ├── model_condition_data.go │ │ ├── model_configured_snssai.go │ │ ├── model_confirmation_data.go │ │ ├── model_confirmation_data_response.go │ │ ├── model_constants.go │ │ ├── model_core_network_type.go │ │ ├── model_create_ue_context_request.go │ │ ├── model_create_ue_context_response.go │ │ ├── model_created_ee_subscription.go │ │ ├── model_credit_management_status.go │ │ ├── model_data_change_notify.go │ │ ├── model_data_set_id.go │ │ ├── model_data_set_name.go │ │ ├── model_default_notification_subscription.go │ │ ├── model_deregistration_data.go │ │ ├── model_deregistration_reason.go │ │ ├── model_dnai_change_type.go │ │ ├── model_dnf.go │ │ ├── model_dnf_unit.go │ │ ├── model_dnn_configuration.go │ │ ├── model_dnn_info.go │ │ ├── model_dnn_selection_mode.go │ │ ├── model_dnn_smf_info_item.go │ │ ├── model_dnn_upf_info_item.go │ │ ├── model_dynamic5_qi.go │ │ ├── model_eap_auth_method_response_200.go │ │ ├── model_eap_session.go │ │ ├── model_ebi_arp_mapping.go │ │ ├── model_ecgi.go │ │ ├── model_ee_profile_data.go │ │ ├── model_ee_subscription.go │ │ ├── model_ellipsoid_arc.go │ │ ├── model_emergency_info.go │ │ ├── model_enable_ue_reachability_req_data.go │ │ ├── model_enable_ue_reachability_rsp_data.go │ │ ├── model_eps_bearer_info.go │ │ ├── model_eps_interworking_indication.go │ │ ├── model_eps_iwk_pgw.go │ │ ├── model_eps_pdn_cnx_info.go │ │ ├── model_error_report.go │ │ ├── model_eth_flow_description.go │ │ ├── model_eutra_location.go │ │ ├── model_event_notification.go │ │ ├── model_event_subscription.go │ │ ├── model_event_type.go │ │ ├── model_events_notification.go │ │ ├── model_events_subsc_req_data.go │ │ ├── model_events_subsc_req_data_rm.go │ │ ├── model_expected_ue_behavior.go │ │ ├── model_exposure_data_change_notification.go │ │ ├── model_exposure_data_subscription.go │ │ ├── model_external_client_type.go │ │ ├── model_failure_cause.go │ │ ├── model_failure_code.go │ │ ├── model_final_unit_action.go │ │ ├── model_flow_direction.go │ │ ├── model_flow_direction_2.go │ │ ├── model_flow_direction_rm.go │ │ ├── model_flow_info.go │ │ ├── model_flow_information.go │ │ ├── model_flow_status.go │ │ ├── model_flow_usage.go │ │ ├── model_flows.go │ │ ├── model_g_nb_id.go │ │ ├── model_gad_shape.go │ │ ├── model_gbr_qos_flow_information.go │ │ ├── model_geographic_area.go │ │ ├── model_geographical_coordinates.go │ │ ├── model_global_ran_node_id.go │ │ ├── model_gnss_id.go │ │ ├── model_gnss_positioning_method_and_usage.go │ │ ├── model_guami.go │ │ ├── model_guami_list_cond.go │ │ ├── model_ho_state.go │ │ ├── model_horizontal_velocity.go │ │ ├── model_horizontal_velocity_with_uncertainty.go │ │ ├── model_horizontal_with_vertical_velocity.go │ │ ├── model_horizontal_with_vertical_velocity_and_uncertainty.go │ │ ├── model_hsmf_update_data.go │ │ ├── model_hsmf_update_error.go │ │ ├── model_hsmf_updated_data.go │ │ ├── model_id_translation_result.go │ │ ├── model_identity_data.go │ │ ├── model_identity_range.go │ │ ├── model_ims_vo_ps.go │ │ ├── model_integrity_algorithm.go │ │ ├── model_interface_upf_info_item.go │ │ ├── model_invalid_param.go │ │ ├── model_invalid_param_2.go │ │ ├── model_ip_address.go │ │ ├── model_ip_end_point.go │ │ ├── model_ipv4_address_range.go │ │ ├── model_ipv6_prefix_range.go │ │ ├── model_key_amf.go │ │ ├── model_key_amf_type.go │ │ ├── model_ladn_info.go │ │ ├── model_lcs_priority.go │ │ ├── model_limit_id_to_monitoring_key.go │ │ ├── model_link.go │ │ ├── model_links_value_schema.go │ │ ├── model_location_accuracy.go │ │ ├── model_location_event.go │ │ ├── model_location_filter.go │ │ ├── model_location_qo_s.go │ │ ├── model_location_reporting_configuration.go │ │ ├── model_location_type.go │ │ ├── model_mapping_of_snssai.go │ │ ├── model_max_integrity_protected_data_rate.go │ │ ├── model_media_component.go │ │ ├── model_media_component_resources_status.go │ │ ├── model_media_component_rm.go │ │ ├── model_media_sub_component.go │ │ ├── model_media_sub_component_rm.go │ │ ├── model_media_type.go │ │ ├── model_metering_method.go │ │ ├── model_milenage.go │ │ ├── model_mm_context.go │ │ ├── model_mme_capabilities.go │ │ ├── model_modification_notification.go │ │ ├── model_modify_subscription_request.go │ │ ├── model_monitoring_configuration.go │ │ ├── model_monitoring_report.go │ │ ├── model_n1_message_class.go │ │ ├── model_n1_message_container.go │ │ ├── model_n1_message_notification.go │ │ ├── model_n1_message_notify.go │ │ ├── model_n1_n2_message_transfer_cause.go │ │ ├── model_n1_n2_message_transfer_error.go │ │ ├── model_n1_n2_message_transfer_req_data.go │ │ ├── model_n1_n2_message_transfer_request.go │ │ ├── model_n1_n2_message_transfer_rsp_data.go │ │ ├── model_n1_n2_msg_txfr_err_detail.go │ │ ├── model_n1_n2_msg_txfr_failure_notification.go │ │ ├── model_n2_info_container.go │ │ ├── model_n2_info_content.go │ │ ├── model_n2_info_notify_reason.go │ │ ├── model_n2_info_notify_request.go │ │ ├── model_n2_info_notify_response.go │ │ ├── model_n2_info_notify_rsp_data.go │ │ ├── model_n2_information_class.go │ │ ├── model_n2_information_notification.go │ │ ├── model_n2_information_transfer_error.go │ │ ├── model_n2_information_transfer_req_data.go │ │ ├── model_n2_information_transfer_result.go │ │ ├── model_n2_information_transfer_rsp_data.go │ │ ├── model_n2_interface_amf_info.go │ │ ├── model_n2_ran_information.go │ │ ├── model_n2_sm_info_type.go │ │ ├── model_n2_sm_information.go │ │ ├── model_n3ga_location.go │ │ ├── model_nas_security_mode.go │ │ ├── model_ncgi.go │ │ ├── model_network_area_info.go │ │ ├── model_network_id.go │ │ ├── model_network_node_diameter_address.go │ │ ├── model_network_slice_cond.go │ │ ├── model_nf_group_cond.go │ │ ├── model_nf_instance_id_cond.go │ │ ├── model_nf_profile.go │ │ ├── model_nf_profile_notification_data.go │ │ ├── model_nf_service.go │ │ ├── model_nf_service_status.go │ │ ├── model_nf_service_version.go │ │ ├── model_nf_status.go │ │ ├── model_nf_type.go │ │ ├── model_nf_type_cond.go │ │ ├── model_ng_ap_cause.go │ │ ├── model_ng_ksi.go │ │ ├── model_ng_ran_target_id.go │ │ ├── model_ngap_ie_type.go │ │ ├── model_non_dynamic5_qi.go │ │ ├── model_non_ue_n2_info_subscription_create_data.go │ │ ├── model_non_ue_n2_info_subscription_created_data.go │ │ ├── model_non_ue_n2_message_transfer_request.go │ │ ├── model_notif_condition.go │ │ ├── model_notification.go │ │ ├── model_notification_cause.go │ │ ├── model_notification_control.go │ │ ├── model_notification_data.go │ │ ├── model_notification_event_type.go │ │ ├── model_notification_method.go │ │ ├── model_notification_type.go │ │ ├── model_notified_pos_info.go │ │ ├── model_notify_item.go │ │ ├── model_nr_location.go │ │ ├── model_nrf_info.go │ │ ├── model_nrfsubscription_data.go │ │ ├── model_nrppa_information.go │ │ ├── model_nsi_information.go │ │ ├── model_nsmf_event_exposure.go │ │ ├── model_nsmf_event_exposure_notification.go │ │ ├── model_nssai.go │ │ ├── model_nssai_availability_info.go │ │ ├── model_nssai_mapping.go │ │ ├── model_nssf_event_notification.go │ │ ├── model_nssf_event_subscription_create_data.go │ │ ├── model_nssf_event_subscription_created_data.go │ │ ├── model_nssf_event_type.go │ │ ├── model_nulldataset.go │ │ ├── model_nullinfoclass.go │ │ ├── model_nullnftype.go │ │ ├── model_nullrequesternftype.go │ │ ├── model_nulltargetnftype.go │ │ ├── model_odb_data.go │ │ ├── model_odb_packet_services.go │ │ ├── model_op.go │ │ ├── model_opc.go │ │ ├── model_operator_determined_barring_data.go │ │ ├── model_operator_specific_data_container.go │ │ ├── model_packet_filter_info.go │ │ ├── model_packet_filter_operation.go │ │ ├── model_partial_record_method.go │ │ ├── model_partial_success_report.go │ │ ├── model_patch_item.go │ │ ├── model_patch_operation.go │ │ ├── model_pcc_rule.go │ │ ├── model_pcf_info.go │ │ ├── model_pcscf_restoration_notification.go │ │ ├── model_pdu_session.go │ │ ├── model_pdu_session_context.go │ │ ├── model_pdu_session_create_data.go │ │ ├── model_pdu_session_create_error.go │ │ ├── model_pdu_session_created_data.go │ │ ├── model_pdu_session_management_data.go │ │ ├── model_pdu_session_notify_item.go │ │ ├── model_pdu_session_status.go │ │ ├── model_pdu_session_type.go │ │ ├── model_pdu_session_types.go │ │ ├── model_periodicity.go │ │ ├── model_permanent_key.go │ │ ├── model_pfd_change_notification.go │ │ ├── model_pfd_change_report.go │ │ ├── model_pfd_content.go │ │ ├── model_pfd_data_for_app.go │ │ ├── model_pfd_subscription.go │ │ ├── model_pgw_info.go │ │ ├── model_plmn_id.go │ │ ├── model_plmn_range.go │ │ ├── model_plmn_snssai.go │ │ ├── model_point.go │ │ ├── model_point_altitude.go │ │ ├── model_point_altitude_uncertainty.go │ │ ├── model_point_uncertainty_circle.go │ │ ├── model_point_uncertainty_ellipse.go │ │ ├── model_policy_association.go │ │ ├── model_policy_association_release_cause.go │ │ ├── model_policy_association_request.go │ │ ├── model_policy_association_update_request.go │ │ ├── model_policy_control_request_trigger.go │ │ ├── model_policy_data_change_notification.go │ │ ├── model_policy_data_subscription.go │ │ ├── model_policy_update.go │ │ ├── model_polygon.go │ │ ├── model_positioning_method.go │ │ ├── model_positioning_method_and_usage.go │ │ ├── model_positioning_mode.go │ │ ├── model_post_pdu_sessions_error_response.go │ │ ├── model_post_pdu_sessions_request.go │ │ ├── model_post_pdu_sessions_response.go │ │ ├── model_post_sm_contexts_error_response.go │ │ ├── model_post_sm_contexts_request.go │ │ ├── model_post_sm_contexts_response.go │ │ ├── model_pp_active_time.go │ │ ├── model_pp_data.go │ │ ├── model_pp_subs_reg_timer.go │ │ ├── model_preemption_capability.go │ │ ├── model_preemption_vulnerability.go │ │ ├── model_presence_info.go │ │ ├── model_presence_info_rm.go │ │ ├── model_presence_state.go │ │ ├── model_problem_details.go │ │ ├── model_problem_details_2.go │ │ ├── model_provide_loc_info.go │ │ ├── model_provide_pos_info.go │ │ ├── model_provisioned_data_sets.go │ │ ├── model_pws_error_data.go │ │ ├── model_pws_information.go │ │ ├── model_pws_response_data.go │ │ ├── model_qos_characteristics.go │ │ ├── model_qos_data.go │ │ ├── model_qos_flow_add_modify_request_item.go │ │ ├── model_qos_flow_item.go │ │ ├── model_qos_flow_notify_item.go │ │ ├── model_qos_flow_profile.go │ │ ├── model_qos_flow_release_request_item.go │ │ ├── model_qos_flow_setup_item.go │ │ ├── model_qos_flow_usage.go │ │ ├── model_qos_flow_usage_report.go │ │ ├── model_qos_notif_type.go │ │ ├── model_qos_notification_control_info.go │ │ ├── model_qos_resource_type.go │ │ ├── model_ran_nas_rel_cause.go │ │ ├── model_rat_selector.go │ │ ├── model_rat_type.go │ │ ├── model_redirect_address_type.go │ │ ├── model_redirect_information.go │ │ ├── model_ref_to_binary_data.go │ │ ├── model_reflective_qo_s_attribute.go │ │ ├── model_registration_context_container.go │ │ ├── model_release_data.go │ │ ├── model_release_sm_context_request.go │ │ ├── model_report.go │ │ ├── model_reporting_level.go │ │ ├── model_reporting_options.go │ │ ├── model_request_indication.go │ │ ├── model_request_loc_info.go │ │ ├── model_request_pos_info.go │ │ ├── model_request_trigger.go │ │ ├── model_request_type.go │ │ ├── model_requested_qos.go │ │ ├── model_requested_rule_data.go │ │ ├── model_requested_rule_data_type.go │ │ ├── model_requested_usage_data.go │ │ ├── model_reserv_priority.go │ │ ├── model_resource_status.go │ │ ├── model_resources_allocation_info.go │ │ ├── model_response_time.go │ │ ├── model_restricted_snssai.go │ │ ├── model_restriction_type.go │ │ ├── model_resynchronization_info.go │ │ ├── model_rm_info.go │ │ ├── model_rm_state.go │ │ ├── model_roaming_charging_profile.go │ │ ├── model_roaming_indication.go │ │ ├── model_roaming_odb.go │ │ ├── model_roaming_status_report.go │ │ ├── model_rotations.go │ │ ├── model_route_information.go │ │ ├── model_route_to_location.go │ │ ├── model_rule_operation.go │ │ ├── model_rule_report.go │ │ ├── model_rule_status.go │ │ ├── model_sc_type.go │ │ ├── model_sdm_subs_modification.go │ │ ├── model_sdm_subscription.go │ │ ├── model_seaf_data.go │ │ ├── model_search_result.go │ │ ├── model_secondary_rat_usage_report.go │ │ ├── model_serv_auth_info.go │ │ ├── model_service_area_restriction.go │ │ ├── model_service_name.go │ │ ├── model_service_name_cond.go │ │ ├── model_serving_nf_identity.go │ │ ├── model_session_management_subscription_data.go │ │ ├── model_session_rule.go │ │ ├── model_session_rule_failure_code.go │ │ ├── model_session_rule_report.go │ │ ├── model_shared_authentication_subscription.go │ │ ├── model_shared_data.go │ │ ├── model_slice_info_for_pdu_session.go │ │ ├── model_slice_info_for_registration.go │ │ ├── model_sm_context_create_data.go │ │ ├── model_sm_context_create_error.go │ │ ├── model_sm_context_created_data.go │ │ ├── model_sm_context_release_data.go │ │ ├── model_sm_context_retrieve_data.go │ │ ├── model_sm_context_retrieved_data.go │ │ ├── model_sm_context_status_notification.go │ │ ├── model_sm_context_update_data.go │ │ ├── model_sm_context_update_error.go │ │ ├── model_sm_context_updated_data.go │ │ ├── model_sm_policy_context_data.go │ │ ├── model_sm_policy_control.go │ │ ├── model_sm_policy_data.go │ │ ├── model_sm_policy_decision.go │ │ ├── model_sm_policy_delete_data.go │ │ ├── model_sm_policy_dnn_data.go │ │ ├── model_sm_policy_notification.go │ │ ├── model_sm_policy_snssai_data.go │ │ ├── model_sm_policy_update_context_data.go │ │ ├── model_smf_event.go │ │ ├── model_smf_info.go │ │ ├── model_smf_registration.go │ │ ├── model_smf_selection_subscription_data.go │ │ ├── model_sms_management_subscription_data.go │ │ ├── model_sms_subscription_data.go │ │ ├── model_sms_support.go │ │ ├── model_smsf_info.go │ │ ├── model_smsf_registration.go │ │ ├── model_snssai.go │ │ ├── model_snssai_info.go │ │ ├── model_snssai_smf_info_item.go │ │ ├── model_snssai_upf_info_item.go │ │ ├── model_sor_data.go │ │ ├── model_sor_info.go │ │ ├── model_sor_security_info.go │ │ ├── model_spatial_validity.go │ │ ├── model_spatial_validity_rm.go │ │ ├── model_sponsor_connectivity_data.go │ │ ├── model_sponsoring_status.go │ │ ├── model_ssc_mode.go │ │ ├── model_ssc_modes.go │ │ ├── model_status_change.go │ │ ├── model_status_info.go │ │ ├── model_status_notification.go │ │ ├── model_steering_container.go │ │ ├── model_steering_info.go │ │ ├── model_subscribed_data.go │ │ ├── model_subscribed_data_filter.go │ │ ├── model_subscribed_default_qos.go │ │ ├── model_subscribed_snssai.go │ │ ├── model_subscription_data.go │ │ ├── model_subscription_data_sets.go │ │ ├── model_subscription_data_subscriptions.go │ │ ├── model_supi_range.go │ │ ├── model_supported_gad_shapes.go │ │ ├── model_supported_nssai_availability_data.go │ │ ├── model_tac_range.go │ │ ├── model_tai.go │ │ ├── model_tai_range.go │ │ ├── model_temporal_validity.go │ │ ├── model_termination_cause.go │ │ ├── model_termination_info.go │ │ ├── model_termination_notification.go │ │ ├── model_time_period.go │ │ ├── model_time_window.go │ │ ├── model_top.go │ │ ├── model_topc.go │ │ ├── model_trace_data.go │ │ ├── model_trace_data_response.go │ │ ├── model_trace_depth.go │ │ ├── model_traffic_control_data.go │ │ ├── model_traffic_influ_data.go │ │ ├── model_traffic_influ_data_patch.go │ │ ├── model_traffic_influ_sub.go │ │ ├── model_transfer_policy.go │ │ ├── model_transfer_reason.go │ │ ├── model_transport_protocol.go │ │ ├── model_trigger.go │ │ ├── model_trigger_category.go │ │ ├── model_trigger_type.go │ │ ├── model_tuak.go │ │ ├── model_tunnel_info.go │ │ ├── model_udm_info.go │ │ ├── model_udr_info.go │ │ ├── model_ue_authentication_ctx.go │ │ ├── model_ue_camping_rep.go │ │ ├── model_ue_context.go │ │ ├── model_ue_context_create_data.go │ │ ├── model_ue_context_create_error.go │ │ ├── model_ue_context_created_data.go │ │ ├── model_ue_context_in_smf_data.go │ │ ├── model_ue_context_in_smsf_data.go │ │ ├── model_ue_context_info.go │ │ ├── model_ue_context_info_class.go │ │ ├── model_ue_context_release.go │ │ ├── model_ue_context_transfer_req_data.go │ │ ├── model_ue_context_transfer_request.go │ │ ├── model_ue_context_transfer_response.go │ │ ├── model_ue_context_transfer_rsp_data.go │ │ ├── model_ue_context_transfer_status.go │ │ ├── model_ue_initiated_resource_request.go │ │ ├── model_ue_n1_n2_info_subscription_create_data.go │ │ ├── model_ue_n1_n2_info_subscription_created_data.go │ │ ├── model_ue_policy_section.go │ │ ├── model_ue_policy_set.go │ │ ├── model_ue_reachability.go │ │ ├── model_ue_reg_status_update_req_data.go │ │ ├── model_ue_reg_status_update_rsp_data.go │ │ ├── model_uncertainty_ellipse.go │ │ ├── model_up_cnx_state.go │ │ ├── model_up_confidentiality.go │ │ ├── model_up_integrity.go │ │ ├── model_up_interface_type.go │ │ ├── model_up_path_chg_event.go │ │ ├── model_up_security.go │ │ ├── model_update_events_subsc_response.go │ │ ├── model_update_events_subsc_response_200.go │ │ ├── model_update_events_subsc_response_201.go │ │ ├── model_update_pdu_session_error_response.go │ │ ├── model_update_pdu_session_request.go │ │ ├── model_update_pdu_session_response.go │ │ ├── model_update_sm_context_error_response.go │ │ ├── model_update_sm_context_request.go │ │ ├── model_update_sm_context_response.go │ │ ├── model_upf_info.go │ │ ├── model_upu_data.go │ │ ├── model_upu_info.go │ │ ├── model_upu_security_info.go │ │ ├── model_uri_scheme.go │ │ ├── model_usage.go │ │ ├── model_usage_mon_data.go │ │ ├── model_usage_mon_data_limit.go │ │ ├── model_usage_mon_data_scope.go │ │ ├── model_usage_mon_level.go │ │ ├── model_usage_monitoring_data.go │ │ ├── model_usage_threshold.go │ │ ├── model_usage_threshold_rm.go │ │ ├── model_user_location.go │ │ ├── model_vector_algorithm.go │ │ ├── model_velocity_estimate.go │ │ ├── model_velocity_requested.go │ │ ├── model_vertical_direction.go │ │ ├── model_vsmf_update_data.go │ │ ├── model_vsmf_update_error.go │ │ └── model_vsmf_updated_data.go │ ├── multipart_related.go │ ├── serialize.go │ ├── supported_feature.go │ └── version │ │ └── version.go ├── u32 │ ├── const.go │ ├── p_gtpv1.go │ ├── p_ipv4.go │ ├── p_tcp.go │ ├── p_udp.go │ ├── protocol.go │ └── u32.go └── util_3gpp │ ├── .gitignore │ ├── 3gpp_type.go │ ├── CHANGELOG.md │ ├── str_conv.go │ ├── suci │ └── toSupi.go │ └── version │ ├── version.go │ └── version_test.go ├── logger └── logger.go ├── module ├── gnb │ ├── api │ │ ├── config.go │ │ ├── converter.go │ │ ├── factory.go │ │ ├── helper.go │ │ ├── init.go │ │ ├── n2_interface.go │ │ ├── n3_interface.go │ │ ├── ngapTestpacket │ │ │ └── ngap.go │ │ ├── packet.go │ │ ├── procedure.go │ │ ├── ran_ue.go │ │ └── supi.go │ ├── completer.go │ ├── config.go │ ├── const.go │ ├── executor.go │ ├── factory.go │ ├── gnb.go │ ├── init.go │ └── router.go ├── nf │ ├── api │ │ ├── database_name.go │ │ └── procedure.go │ ├── completer.go │ ├── config.go │ ├── const.go │ ├── executor.go │ ├── factory.go │ ├── init.go │ └── nf.go ├── qos │ ├── completer.go │ ├── config.go │ ├── const.go │ ├── executor.go │ ├── factory.go │ └── init.go └── subscriber │ ├── api │ ├── database_name.go │ ├── helper.go │ ├── models.go │ └── procedure.go │ ├── completer.go │ ├── config.go │ ├── const.go │ ├── executor.go │ ├── factory.go │ └── init.go └── wiki ├── 00_home.md ├── 01_subscriber.md ├── 02_gnb.md ├── 03_qos.md ├── 04_nf.md ├── 05_tutorial.md └── _sidebar.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/README.md -------------------------------------------------------------------------------- /boot/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/boot/init.go -------------------------------------------------------------------------------- /config/gnb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/config/gnb.yaml -------------------------------------------------------------------------------- /config/nf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/config/nf.yaml -------------------------------------------------------------------------------- /config/qos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/config/qos.yaml -------------------------------------------------------------------------------- /config/subscriber.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/config/subscriber.yaml -------------------------------------------------------------------------------- /config/subscriber_ue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/config/subscriber_ue.yaml -------------------------------------------------------------------------------- /context/prompt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/context/prompt.go -------------------------------------------------------------------------------- /factory/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/factory/config.go -------------------------------------------------------------------------------- /factory/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/factory/factory.go -------------------------------------------------------------------------------- /factory/prompt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/factory/prompt.go -------------------------------------------------------------------------------- /freecli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/freecli.go -------------------------------------------------------------------------------- /freecli/completer_main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/freecli/completer_main.go -------------------------------------------------------------------------------- /freecli/executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/freecli/executor.go -------------------------------------------------------------------------------- /freecli/freecli_init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/freecli/freecli_init.go -------------------------------------------------------------------------------- /freecli/live_prefix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/freecli/live_prefix.go -------------------------------------------------------------------------------- /freecli/prompt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/freecli/prompt.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/go.sum -------------------------------------------------------------------------------- /lib/MongoDBLibrary/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/MongoDBLibrary/CHANGELOG.md -------------------------------------------------------------------------------- /lib/MongoDBLibrary/api_mongoDB.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/MongoDBLibrary/api_mongoDB.go -------------------------------------------------------------------------------- /lib/MongoDBLibrary/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/MongoDBLibrary/logger/logger.go -------------------------------------------------------------------------------- /lib/MongoDBLibrary/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/MongoDBLibrary/version/version.go -------------------------------------------------------------------------------- /lib/MongoDBLibrary/version/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/MongoDBLibrary/version/version_test.go -------------------------------------------------------------------------------- /lib/UeauCommon/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/UeauCommon/.gitignore -------------------------------------------------------------------------------- /lib/UeauCommon/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/UeauCommon/CHANGELOG.md -------------------------------------------------------------------------------- /lib/UeauCommon/UeauCommon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/UeauCommon/UeauCommon.go -------------------------------------------------------------------------------- /lib/UeauCommon/UeauCommon_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/UeauCommon/UeauCommon_test.go -------------------------------------------------------------------------------- /lib/UeauCommon/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/UeauCommon/version/version.go -------------------------------------------------------------------------------- /lib/UeauCommon/version/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/UeauCommon/version/version_test.go -------------------------------------------------------------------------------- /lib/aper/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/aper/.gitignore -------------------------------------------------------------------------------- /lib/aper/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/aper/CHANGELOG.md -------------------------------------------------------------------------------- /lib/aper/aper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/aper/aper.go -------------------------------------------------------------------------------- /lib/aper/asn_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/aper/asn_type.go -------------------------------------------------------------------------------- /lib/aper/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/aper/common.go -------------------------------------------------------------------------------- /lib/aper/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/aper/logger/logger.go -------------------------------------------------------------------------------- /lib/aper/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/aper/marshal.go -------------------------------------------------------------------------------- /lib/aper/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/aper/version/version.go -------------------------------------------------------------------------------- /lib/aper/version/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/aper/version/version_test.go -------------------------------------------------------------------------------- /lib/logger_util/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/logger_util/.gitignore -------------------------------------------------------------------------------- /lib/logger_util/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/logger_util/CHANGELOG.md -------------------------------------------------------------------------------- /lib/logger_util/logger_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/logger_util/logger_util.go -------------------------------------------------------------------------------- /lib/logger_util/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/logger_util/version/version.go -------------------------------------------------------------------------------- /lib/logger_util/version/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/logger_util/version/version_test.go -------------------------------------------------------------------------------- /lib/milenage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/milenage/.gitignore -------------------------------------------------------------------------------- /lib/milenage/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/milenage/CHANGELOG.md -------------------------------------------------------------------------------- /lib/milenage/milenage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/milenage/milenage.go -------------------------------------------------------------------------------- /lib/milenage/milenage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/milenage/milenage_test.go -------------------------------------------------------------------------------- /lib/milenage/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/milenage/version/version.go -------------------------------------------------------------------------------- /lib/milenage/version/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/milenage/version/version_test.go -------------------------------------------------------------------------------- /lib/nas/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/.gitignore -------------------------------------------------------------------------------- /lib/nas/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/CHANGELOG.md -------------------------------------------------------------------------------- /lib/nas/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/logger/logger.go -------------------------------------------------------------------------------- /lib/nas/nas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nas.go -------------------------------------------------------------------------------- /lib/nas/nasConvert/AmfId.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasConvert/AmfId.go -------------------------------------------------------------------------------- /lib/nas/nasConvert/GPRSTimer2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasConvert/GPRSTimer2.go -------------------------------------------------------------------------------- /lib/nas/nasConvert/GPRSTimer3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasConvert/GPRSTimer3.go -------------------------------------------------------------------------------- /lib/nas/nasConvert/Ladn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasConvert/Ladn.go -------------------------------------------------------------------------------- /lib/nas/nasConvert/MobileIdentity5GS.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasConvert/MobileIdentity5GS.go -------------------------------------------------------------------------------- /lib/nas/nasConvert/NetWorkName.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasConvert/NetWorkName.go -------------------------------------------------------------------------------- /lib/nas/nasConvert/Nssai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasConvert/Nssai.go -------------------------------------------------------------------------------- /lib/nas/nasConvert/PDUSessionType.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasConvert/PDUSessionType.go -------------------------------------------------------------------------------- /lib/nas/nasConvert/PSI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasConvert/PSI.go -------------------------------------------------------------------------------- /lib/nas/nasConvert/PlmnId.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasConvert/PlmnId.go -------------------------------------------------------------------------------- /lib/nas/nasConvert/ServiceAreaList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasConvert/ServiceAreaList.go -------------------------------------------------------------------------------- /lib/nas/nasConvert/SessionAMBR.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasConvert/SessionAMBR.go -------------------------------------------------------------------------------- /lib/nas/nasConvert/Snssai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasConvert/Snssai.go -------------------------------------------------------------------------------- /lib/nas/nasConvert/SpareHalfOctetAndNgKsi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasConvert/SpareHalfOctetAndNgKsi.go -------------------------------------------------------------------------------- /lib/nas/nasConvert/TaiList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasConvert/TaiList.go -------------------------------------------------------------------------------- /lib/nas/nasConvert/Time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasConvert/Time.go -------------------------------------------------------------------------------- /lib/nas/nasConvert/UESecurityCapability.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasConvert/UESecurityCapability.go -------------------------------------------------------------------------------- /lib/nas/nasConvert/UPUInfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasConvert/UPUInfo.go -------------------------------------------------------------------------------- /lib/nas/nasMessage/NAS_CommInfoIE.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasMessage/NAS_CommInfoIE.go -------------------------------------------------------------------------------- /lib/nas/nasMessage/NAS_DLNASTransport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasMessage/NAS_DLNASTransport.go -------------------------------------------------------------------------------- /lib/nas/nasMessage/NAS_EPD.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasMessage/NAS_EPD.go -------------------------------------------------------------------------------- /lib/nas/nasMessage/NAS_IdentityRequest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasMessage/NAS_IdentityRequest.go -------------------------------------------------------------------------------- /lib/nas/nasMessage/NAS_IdentityResponse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasMessage/NAS_IdentityResponse.go -------------------------------------------------------------------------------- /lib/nas/nasMessage/NAS_Notification.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasMessage/NAS_Notification.go -------------------------------------------------------------------------------- /lib/nas/nasMessage/NAS_Notification_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasMessage/NAS_Notification_test.go -------------------------------------------------------------------------------- /lib/nas/nasMessage/NAS_RegistrationAccept.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasMessage/NAS_RegistrationAccept.go -------------------------------------------------------------------------------- /lib/nas/nasMessage/NAS_RegistrationReject.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasMessage/NAS_RegistrationReject.go -------------------------------------------------------------------------------- /lib/nas/nasMessage/NAS_SecurityModeReject.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasMessage/NAS_SecurityModeReject.go -------------------------------------------------------------------------------- /lib/nas/nasMessage/NAS_ServiceAccept.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasMessage/NAS_ServiceAccept.go -------------------------------------------------------------------------------- /lib/nas/nasMessage/NAS_ServiceAccept_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasMessage/NAS_ServiceAccept_test.go -------------------------------------------------------------------------------- /lib/nas/nasMessage/NAS_ServiceReject.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasMessage/NAS_ServiceReject.go -------------------------------------------------------------------------------- /lib/nas/nasMessage/NAS_ServiceReject_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasMessage/NAS_ServiceReject_test.go -------------------------------------------------------------------------------- /lib/nas/nasMessage/NAS_ServiceRequest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasMessage/NAS_ServiceRequest.go -------------------------------------------------------------------------------- /lib/nas/nasMessage/NAS_Status5GMM.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasMessage/NAS_Status5GMM.go -------------------------------------------------------------------------------- /lib/nas/nasMessage/NAS_Status5GMM_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasMessage/NAS_Status5GMM_test.go -------------------------------------------------------------------------------- /lib/nas/nasMessage/NAS_Status5GSM.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasMessage/NAS_Status5GSM.go -------------------------------------------------------------------------------- /lib/nas/nasMessage/NAS_Status5GSM_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasMessage/NAS_Status5GSM_test.go -------------------------------------------------------------------------------- /lib/nas/nasMessage/NAS_ULNASTransport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasMessage/NAS_ULNASTransport.go -------------------------------------------------------------------------------- /lib/nas/nasMessage/comm_nasMessage_test.go: -------------------------------------------------------------------------------- 1 | package nasMessage_test 2 | -------------------------------------------------------------------------------- /lib/nas/nasTestpacket/NasPdu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasTestpacket/NasPdu.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_ABBA.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_ABBA.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_ABBA_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_ABBA_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_AdditionalGUTI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_AdditionalGUTI.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_AdditionalGUTI_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_AdditionalGUTI_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_AdditionalInformation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_AdditionalInformation.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_AllowedNSSAI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_AllowedNSSAI.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_AllowedNSSAI_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_AllowedNSSAI_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_AllowedSSCMode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_AllowedSSCMode.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_AllowedSSCMode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_AllowedSSCMode_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_AuthorizedQosRules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_AuthorizedQosRules.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_BackoffTimerValue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_BackoffTimerValue.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_Capability5GMM.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_Capability5GMM.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_Capability5GMM_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_Capability5GMM_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_Capability5GSM.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_Capability5GSM.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_Capability5GSM_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_Capability5GSM_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_Cause5GMM.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_Cause5GMM.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_Cause5GMM_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_Cause5GMM_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_Cause5GSM.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_Cause5GSM.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_Cause5GSM_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_Cause5GSM_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_ConfiguredNSSAI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_ConfiguredNSSAI.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_ConfiguredNSSAI_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_ConfiguredNSSAI_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_DNN.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_DNN.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_DNN_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_DNN_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_EAPMessage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_EAPMessage.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_EAPMessage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_EAPMessage_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_EmergencyNumberList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_EmergencyNumberList.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_EquivalentPlmns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_EquivalentPlmns.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_EquivalentPlmns_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_EquivalentPlmns_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_FullNameForNetwork.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_FullNameForNetwork.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_GUTI5G.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_GUTI5G.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_GUTI5G_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_GUTI5G_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_IMEISV.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_IMEISV.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_IMEISVRequest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_IMEISVRequest.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_IMEISVRequest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_IMEISVRequest_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_IMEISV_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_IMEISV_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_LADNIndication.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_LADNIndication.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_LADNIndication_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_LADNIndication_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_LADNInformation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_LADNInformation.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_LADNInformation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_LADNInformation_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_LocalTimeZone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_LocalTimeZone.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_LocalTimeZone_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_LocalTimeZone_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_MICOIndication.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_MICOIndication.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_MICOIndication_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_MICOIndication_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_MobileIdentity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_MobileIdentity.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_MobileIdentity5GS.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_MobileIdentity5GS.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_MobileIdentity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_MobileIdentity_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_NASMessageContainer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_NASMessageContainer.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_NSSAIInclusionMode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_NSSAIInclusionMode.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_OldPDUSessionID.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_OldPDUSessionID.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_OldPDUSessionID_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_OldPDUSessionID_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_PDUAddress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_PDUAddress.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_PDUAddress_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_PDUAddress_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_PDUSessionID.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_PDUSessionID.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_PDUSessionID_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_PDUSessionID_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_PDUSessionStatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_PDUSessionStatus.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_PDUSessionStatus_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_PDUSessionStatus_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_PDUSessionType.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_PDUSessionType.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_PDUSessionType_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_PDUSessionType_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_PTI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_PTI.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_PTI_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_PTI_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_PayloadContainer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_PayloadContainer.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_PayloadContainer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_PayloadContainer_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_PduSessionID2Value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_PduSessionID2Value.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_Plain5GSNASMessage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_Plain5GSNASMessage.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_RQTimerValue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_RQTimerValue.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_RQTimerValue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_RQTimerValue_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_RegistrationResult5GS.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_RegistrationResult5GS.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_RejectedNSSAI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_RejectedNSSAI.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_RejectedNSSAI_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_RejectedNSSAI_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_RequestType.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_RequestType.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_RequestType_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_RequestType_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_RequestedNSSAI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_RequestedNSSAI.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_RequestedNSSAI_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_RequestedNSSAI_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_RequestedQosRules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_RequestedQosRules.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_S1UENetworkCapability.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_S1UENetworkCapability.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_SMSIndication.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_SMSIndication.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_SMSIndication_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_SMSIndication_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_SNSSAI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_SNSSAI.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_SNSSAI_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_SNSSAI_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_SSCMode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_SSCMode.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_SSCMode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_SSCMode_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_SequenceNumber.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_SequenceNumber.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_SequenceNumber_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_SequenceNumber_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_ServiceAreaList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_ServiceAreaList.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_ServiceAreaList_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_ServiceAreaList_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_ServiceTypeAndNgksi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_ServiceTypeAndNgksi.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_SessionAMBR.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_SessionAMBR.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_SessionAMBR_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_SessionAMBR_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_ShortNameForNetwork.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_ShortNameForNetwork.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_T3346Value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_T3346Value.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_T3346Value_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_T3346Value_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_T3502Value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_T3502Value.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_T3502Value_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_T3502Value_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_T3512Value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_T3512Value.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_T3512Value_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_T3512Value_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_TAIList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_TAIList.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_TAIList_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_TAIList_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_TMSI5GS.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_TMSI5GS.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_TMSI5GS_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_TMSI5GS_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_UESecurityCapability.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_UESecurityCapability.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_UEStatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_UEStatus.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_UEStatus_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_UEStatus_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_UesUsageSetting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_UesUsageSetting.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_UesUsageSetting_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_UesUsageSetting_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_UpdateType5GS.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_UpdateType5GS.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_UpdateType5GS_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_UpdateType5GS_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_UplinkDataStatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_UplinkDataStatus.go -------------------------------------------------------------------------------- /lib/nas/nasType/NAS_UplinkDataStatus_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/NAS_UplinkDataStatus_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/comm_nasType_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/comm_nasType_test.go -------------------------------------------------------------------------------- /lib/nas/nasType/comm_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nasType/comm_util.go -------------------------------------------------------------------------------- /lib/nas/nas_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/nas_test.go -------------------------------------------------------------------------------- /lib/nas/security/counter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/security/counter.go -------------------------------------------------------------------------------- /lib/nas/security/counter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/security/counter_test.go -------------------------------------------------------------------------------- /lib/nas/security/parameters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/security/parameters.go -------------------------------------------------------------------------------- /lib/nas/security/security.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/security/security.go -------------------------------------------------------------------------------- /lib/nas/security/security_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/security/security_test.go -------------------------------------------------------------------------------- /lib/nas/security/snow3g/snow3g.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/security/snow3g/snow3g.go -------------------------------------------------------------------------------- /lib/nas/security/snow3g/snow3g_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/security/snow3g/snow3g_test.go -------------------------------------------------------------------------------- /lib/nas/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/version/version.go -------------------------------------------------------------------------------- /lib/nas/version/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/nas/version/version_test.go -------------------------------------------------------------------------------- /lib/ngap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/.gitignore -------------------------------------------------------------------------------- /lib/ngap/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/CHANGELOG.md -------------------------------------------------------------------------------- /lib/ngap/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/logger/logger.go -------------------------------------------------------------------------------- /lib/ngap/ngap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngap.go -------------------------------------------------------------------------------- /lib/ngap/ngapConvert/AllowedNssai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapConvert/AllowedNssai.go -------------------------------------------------------------------------------- /lib/ngap/ngapConvert/AmfId.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapConvert/AmfId.go -------------------------------------------------------------------------------- /lib/ngap/ngapConvert/BitString.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapConvert/BitString.go -------------------------------------------------------------------------------- /lib/ngap/ngapConvert/IpAddress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapConvert/IpAddress.go -------------------------------------------------------------------------------- /lib/ngap/ngapConvert/PlmnId.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapConvert/PlmnId.go -------------------------------------------------------------------------------- /lib/ngap/ngapConvert/PortNumber.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapConvert/PortNumber.go -------------------------------------------------------------------------------- /lib/ngap/ngapConvert/RanId.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapConvert/RanId.go -------------------------------------------------------------------------------- /lib/ngap/ngapConvert/SNssai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapConvert/SNssai.go -------------------------------------------------------------------------------- /lib/ngap/ngapConvert/TAI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapConvert/TAI.go -------------------------------------------------------------------------------- /lib/ngap/ngapConvert/TimeStamp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapConvert/TimeStamp.go -------------------------------------------------------------------------------- /lib/ngap/ngapConvert/TraceData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapConvert/TraceData.go -------------------------------------------------------------------------------- /lib/ngap/ngapConvert/UEAmbr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapConvert/UEAmbr.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/AMFConfigurationUpdate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/AMFConfigurationUpdate.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/AMFName.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/AMFName.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/AMFPagingTarget.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/AMFPagingTarget.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/AMFPointer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/AMFPointer.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/AMFRegionID.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/AMFRegionID.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/AMFSetID.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/AMFSetID.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/AMFStatusIndication.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/AMFStatusIndication.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/AMFUENGAPID.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/AMFUENGAPID.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/AllowedNSSAI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/AllowedNSSAI.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/AllowedNSSAIItem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/AllowedNSSAIItem.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/AllowedTACs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/AllowedTACs.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/AreaOfInterest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/AreaOfInterest.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/AreaOfInterestCellItem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/AreaOfInterestCellItem.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/AreaOfInterestItem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/AreaOfInterestItem.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/AreaOfInterestList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/AreaOfInterestList.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/AreaOfInterestTAIItem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/AreaOfInterestTAIItem.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/AreaOfInterestTAIList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/AreaOfInterestTAIList.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/AssociatedQosFlowItem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/AssociatedQosFlowItem.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/AssociatedQosFlowList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/AssociatedQosFlowList.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/AveragingWindow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/AveragingWindow.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/BitRate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/BitRate.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/BroadcastPLMNItem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/BroadcastPLMNItem.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/BroadcastPLMNList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/BroadcastPLMNList.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/COUNTValueForPDCPSN12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/COUNTValueForPDCPSN12.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/COUNTValueForPDCPSN18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/COUNTValueForPDCPSN18.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/CancelledCellsInEAINR.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/CancelledCellsInEAINR.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/CancelledCellsInTAINR.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/CancelledCellsInTAINR.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/Cause.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/Cause.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/CauseMisc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/CauseMisc.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/CauseNas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/CauseNas.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/CauseProtocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/CauseProtocol.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/CauseRadioNetwork.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/CauseRadioNetwork.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/CauseTransport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/CauseTransport.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/CellIDBroadcastEUTRA.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/CellIDBroadcastEUTRA.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/CellIDBroadcastNR.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/CellIDBroadcastNR.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/CellIDBroadcastNRItem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/CellIDBroadcastNRItem.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/CellIDCancelledEUTRA.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/CellIDCancelledEUTRA.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/CellIDCancelledNR.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/CellIDCancelledNR.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/CellIDCancelledNRItem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/CellIDCancelledNRItem.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/CellIDListForRestart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/CellIDListForRestart.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/CellSize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/CellSize.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/CellTrafficTrace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/CellTrafficTrace.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/CellType.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/CellType.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/CompletedCellsInEAINR.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/CompletedCellsInEAINR.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/CompletedCellsInTAINR.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/CompletedCellsInTAINR.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/Criticality.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/Criticality.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/DLForwarding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/DLForwarding.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/DRBID.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/DRBID.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/DRBStatusDL.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/DRBStatusDL.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/DRBStatusDL12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/DRBStatusDL12.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/DRBStatusDL18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/DRBStatusDL18.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/DRBStatusUL.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/DRBStatusUL.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/DRBStatusUL12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/DRBStatusUL12.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/DRBStatusUL18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/DRBStatusUL18.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/DataCodingScheme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/DataCodingScheme.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/DeactivateTrace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/DeactivateTrace.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/DelayCritical.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/DelayCritical.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/DownlinkNASTransport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/DownlinkNASTransport.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/Dynamic5QIDescriptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/Dynamic5QIDescriptor.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/EPSTAC.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/EPSTAC.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/EPSTAI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/EPSTAI.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/ERABID.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/ERABID.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/ERABInformationItem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/ERABInformationItem.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/ERABInformationList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/ERABInformationList.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/EUTRACGI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/EUTRACGI.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/EUTRACGIList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/EUTRACGIList.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/EUTRACellIdentity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/EUTRACellIdentity.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/EmergencyAreaID.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/EmergencyAreaID.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/EmergencyAreaIDList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/EmergencyAreaIDList.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/EquivalentPLMNs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/EquivalentPLMNs.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/ErrorIndication.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/ErrorIndication.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/EventType.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/EventType.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/ExpectedHOInterval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/ExpectedHOInterval.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/ExpectedIdlePeriod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/ExpectedIdlePeriod.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/ExpectedUEBehaviour.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/ExpectedUEBehaviour.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/ExpectedUEMobility.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/ExpectedUEMobility.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/FiveGSTMSI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/FiveGSTMSI.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/FiveGTMSI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/FiveGTMSI.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/FiveQI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/FiveQI.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/ForbiddenTACs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/ForbiddenTACs.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/GBRQosInformation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/GBRQosInformation.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/GNBID.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/GNBID.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/GTPTEID.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/GTPTEID.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/GTPTunnel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/GTPTunnel.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/GUAMI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/GUAMI.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/GlobalGNBID.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/GlobalGNBID.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/GlobalN3IWFID.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/GlobalN3IWFID.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/GlobalNgENBID.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/GlobalNgENBID.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/GlobalRANNodeID.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/GlobalRANNodeID.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/HandoverCancel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/HandoverCancel.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/HandoverCommand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/HandoverCommand.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/HandoverFailure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/HandoverFailure.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/HandoverNotify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/HandoverNotify.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/HandoverRequest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/HandoverRequest.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/HandoverRequired.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/HandoverRequired.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/HandoverType.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/HandoverType.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/IndexToRFSP.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/IndexToRFSP.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/InitialUEMessage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/InitialUEMessage.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/InitiatingMessage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/InitiatingMessage.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/InterfacesToTrace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/InterfacesToTrace.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/LastVisitedCellItem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/LastVisitedCellItem.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/LocationReport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/LocationReport.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/MICOModeIndication.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/MICOModeIndication.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/Makefile -------------------------------------------------------------------------------- /lib/ngap/ngapType/MaskedIMEISV.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/MaskedIMEISV.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/MessageIdentifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/MessageIdentifier.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/N3IWFID.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/N3IWFID.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/NASPDU.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/NASPDU.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/NGAPPDU.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/NGAPPDU.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/NGRANCGI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/NGRANCGI.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/NGRANTraceID.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/NGRANTraceID.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/NGReset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/NGReset.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/NGResetAcknowledge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/NGResetAcknowledge.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/NGSetupFailure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/NGSetupFailure.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/NGSetupRequest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/NGSetupRequest.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/NGSetupResponse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/NGSetupResponse.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/NRCGI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/NRCGI.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/NRCGIList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/NRCGIList.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/NRCGIListForWarning.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/NRCGIListForWarning.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/NRCellIdentity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/NRCellIdentity.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/NRPPaPDU.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/NRPPaPDU.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/NetworkInstance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/NetworkInstance.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/NewSecurityContextInd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/NewSecurityContextInd.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/NextHopChainingCount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/NextHopChainingCount.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/NextPagingAreaScope.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/NextPagingAreaScope.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/NgENBID.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/NgENBID.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/NotAllowedTACs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/NotAllowedTACs.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/NotificationCause.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/NotificationCause.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/NotificationControl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/NotificationControl.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/NumberOfBroadcasts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/NumberOfBroadcasts.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/OverloadAction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/OverloadAction.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/OverloadResponse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/OverloadResponse.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/OverloadStart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/OverloadStart.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/OverloadStop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/OverloadStop.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/PDUSessionID.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/PDUSessionID.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/PDUSessionType.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/PDUSessionType.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/PLMNIdentity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/PLMNIdentity.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/PLMNSupportItem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/PLMNSupportItem.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/PLMNSupportList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/PLMNSupportList.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/PWSCancelRequest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/PWSCancelRequest.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/PWSCancelResponse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/PWSCancelResponse.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/PWSFailedCellIDList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/PWSFailedCellIDList.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/PWSFailureIndication.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/PWSFailureIndication.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/PWSRestartIndication.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/PWSRestartIndication.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/PacketDelayBudget.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/PacketDelayBudget.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/PacketErrorRate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/PacketErrorRate.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/PacketLossRate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/PacketLossRate.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/Paging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/Paging.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/PagingAttemptCount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/PagingAttemptCount.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/PagingDRX.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/PagingDRX.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/PagingOrigin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/PagingOrigin.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/PagingPriority.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/PagingPriority.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/PathSwitchRequest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/PathSwitchRequest.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/PortNumber.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/PortNumber.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/PreEmptionCapability.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/PreEmptionCapability.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/Presence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/Presence.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/PriorityLevelARP.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/PriorityLevelARP.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/PriorityLevelQos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/PriorityLevelQos.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/PrivateIEContainer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/PrivateIEContainer.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/PrivateIEField.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/PrivateIEField.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/PrivateIEID.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/PrivateIEID.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/PrivateMessage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/PrivateMessage.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/ProcedureCode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/ProcedureCode.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/ProtocolExtensionID.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/ProtocolExtensionID.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/ProtocolIEContainer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/ProtocolIEContainer.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/ProtocolIEField.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/ProtocolIEField.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/ProtocolIEFieldPair.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/ProtocolIEFieldPair.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/ProtocolIEID.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/ProtocolIEID.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/QosCharacteristics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/QosCharacteristics.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/QosFlowAcceptedItem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/QosFlowAcceptedItem.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/QosFlowAcceptedList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/QosFlowAcceptedList.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/QosFlowIdentifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/QosFlowIdentifier.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/QosFlowItem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/QosFlowItem.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/QosFlowList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/QosFlowList.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/QosFlowNotifyItem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/QosFlowNotifyItem.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/QosFlowNotifyList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/QosFlowNotifyList.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/RANNodeName.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/RANNodeName.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/RANPagingPriority.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/RANPagingPriority.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/RANUENGAPID.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/RANUENGAPID.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/RATRestrictions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/RATRestrictions.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/RATRestrictionsItem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/RATRestrictionsItem.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/RRCContainer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/RRCContainer.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/RRCEstablishmentCause.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/RRCEstablishmentCause.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/RRCState.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/RRCState.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/RecommendedCellItem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/RecommendedCellItem.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/RecommendedCellList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/RecommendedCellList.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/ReferenceID.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/ReferenceID.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/RelativeAMFCapacity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/RelativeAMFCapacity.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/RepetitionPeriod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/RepetitionPeriod.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/ReportArea.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/ReportArea.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/RerouteNASRequest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/RerouteNASRequest.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/ResetAll.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/ResetAll.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/ResetType.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/ResetType.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/RoutingID.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/RoutingID.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/SD.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/SD.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/SNSSAI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/SNSSAI.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/SONInformation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/SONInformation.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/SONInformationReply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/SONInformationReply.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/SONInformationRequest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/SONInformationRequest.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/SST.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/SST.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/SecurityContext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/SecurityContext.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/SecurityIndication.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/SecurityIndication.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/SecurityKey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/SecurityKey.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/SecurityResult.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/SecurityResult.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/SerialNumber.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/SerialNumber.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/ServedGUAMIItem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/ServedGUAMIItem.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/ServedGUAMIList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/ServedGUAMIList.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/SingleTNLInformation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/SingleTNLInformation.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/SliceOverloadItem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/SliceOverloadItem.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/SliceOverloadList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/SliceOverloadList.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/SliceSupportItem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/SliceSupportItem.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/SliceSupportList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/SliceSupportList.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/SourceRANNodeID.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/SourceRANNodeID.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/SuccessfulOutcome.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/SuccessfulOutcome.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/SupportedTAItem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/SupportedTAItem.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/SupportedTAList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/SupportedTAList.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/TAC.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/TAC.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/TAI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/TAI.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/TAIBroadcastEUTRA.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/TAIBroadcastEUTRA.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/TAIBroadcastEUTRAItem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/TAIBroadcastEUTRAItem.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/TAIBroadcastNR.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/TAIBroadcastNR.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/TAIBroadcastNRItem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/TAIBroadcastNRItem.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/TAICancelledEUTRA.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/TAICancelledEUTRA.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/TAICancelledEUTRAItem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/TAICancelledEUTRAItem.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/TAICancelledNR.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/TAICancelledNR.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/TAICancelledNRItem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/TAICancelledNRItem.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/TAIListForInactive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/TAIListForInactive.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/TAIListForPaging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/TAIListForPaging.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/TAIListForPagingItem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/TAIListForPagingItem.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/TAIListForRestart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/TAIListForRestart.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/TAIListForWarning.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/TAIListForWarning.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/TNLAssociationItem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/TNLAssociationItem.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/TNLAssociationList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/TNLAssociationList.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/TNLAssociationUsage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/TNLAssociationUsage.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/TNLInformationItem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/TNLInformationItem.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/TNLInformationList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/TNLInformationList.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/TNLMappingItem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/TNLMappingItem.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/TNLMappingList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/TNLMappingList.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/TargetID.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/TargetID.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/TargetRANNodeID.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/TargetRANNodeID.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/TargeteNBID.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/TargeteNBID.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/TimeStamp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/TimeStamp.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/TimeToWait.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/TimeToWait.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/TimeUEStayedInCell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/TimeUEStayedInCell.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/TraceActivation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/TraceActivation.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/TraceDepth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/TraceDepth.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/TraceStart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/TraceStart.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/TransportLayerAddress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/TransportLayerAddress.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/TriggeringMessage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/TriggeringMessage.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/TypeOfError.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/TypeOfError.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/UEContextRequest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/UEContextRequest.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/UEHistoryInformation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/UEHistoryInformation.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/UEIdentityIndexValue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/UEIdentityIndexValue.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/UENGAPIDPair.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/UENGAPIDPair.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/UENGAPIDs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/UENGAPIDs.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/UEPagingIdentity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/UEPagingIdentity.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/UEPresence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/UEPresence.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/UERadioCapability.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/UERadioCapability.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/ULNGUUPTNLModifyItem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/ULNGUUPTNLModifyItem.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/ULNGUUPTNLModifyList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/ULNGUUPTNLModifyList.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/UPTNLInformation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/UPTNLInformation.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/UnavailableGUAMIItem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/UnavailableGUAMIItem.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/UnavailableGUAMIList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/UnavailableGUAMIList.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/UnsuccessfulOutcome.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/UnsuccessfulOutcome.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/UplinkNASTransport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/UplinkNASTransport.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/WarningAreaList.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/WarningAreaList.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/WarningSecurityInfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/WarningSecurityInfo.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/WarningType.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/WarningType.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/XnExtTLAItem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/XnExtTLAItem.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/XnExtTLAs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/XnExtTLAs.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/XnGTPTLAs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/XnGTPTLAs.go -------------------------------------------------------------------------------- /lib/ngap/ngapType/XnTLAs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/ngapType/XnTLAs.go -------------------------------------------------------------------------------- /lib/ngap/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/version/version.go -------------------------------------------------------------------------------- /lib/ngap/version/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/ngap/version/version_test.go -------------------------------------------------------------------------------- /lib/openapi/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/.gitignore -------------------------------------------------------------------------------- /lib/openapi/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/CHANGELOG.md -------------------------------------------------------------------------------- /lib/openapi/Namf_Communication/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Namf_Communication/.gitignore -------------------------------------------------------------------------------- /lib/openapi/Namf_Communication/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 4.0.0-SNAPSHOT -------------------------------------------------------------------------------- /lib/openapi/Namf_Communication/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Namf_Communication/client.go -------------------------------------------------------------------------------- /lib/openapi/Namf_EventExposure/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Namf_EventExposure/.gitignore -------------------------------------------------------------------------------- /lib/openapi/Namf_EventExposure/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Namf_EventExposure/client.go -------------------------------------------------------------------------------- /lib/openapi/Namf_Location/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Namf_Location/.gitignore -------------------------------------------------------------------------------- /lib/openapi/Namf_Location/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Namf_Location/CHANGELOG.md -------------------------------------------------------------------------------- /lib/openapi/Namf_Location/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Namf_Location/client.go -------------------------------------------------------------------------------- /lib/openapi/Namf_Location/client_debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Namf_Location/client_debug.go -------------------------------------------------------------------------------- /lib/openapi/Namf_Location/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Namf_Location/configuration.go -------------------------------------------------------------------------------- /lib/openapi/Namf_MT/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Namf_MT/.gitignore -------------------------------------------------------------------------------- /lib/openapi/Namf_MT/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Namf_MT/CHANGELOG.md -------------------------------------------------------------------------------- /lib/openapi/Namf_MT/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Namf_MT/client.go -------------------------------------------------------------------------------- /lib/openapi/Namf_MT/client_debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Namf_MT/client_debug.go -------------------------------------------------------------------------------- /lib/openapi/Namf_MT/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Namf_MT/configuration.go -------------------------------------------------------------------------------- /lib/openapi/Namf_MT/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Namf_MT/version/version.go -------------------------------------------------------------------------------- /lib/openapi/Nausf_SoRProtection/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Nausf_SoRProtection/.gitignore -------------------------------------------------------------------------------- /lib/openapi/Nausf_SoRProtection/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Nausf_SoRProtection/client.go -------------------------------------------------------------------------------- /lib/openapi/Nausf_UPUProtection/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Nausf_UPUProtection/.gitignore -------------------------------------------------------------------------------- /lib/openapi/Nausf_UPUProtection/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Nausf_UPUProtection/client.go -------------------------------------------------------------------------------- /lib/openapi/Nnef_PFDManagement/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Nnef_PFDManagement/client.go -------------------------------------------------------------------------------- /lib/openapi/Nnrf_AccessToken/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Nnrf_AccessToken/.gitignore -------------------------------------------------------------------------------- /lib/openapi/Nnrf_AccessToken/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Nnrf_AccessToken/CHANGELOG.md -------------------------------------------------------------------------------- /lib/openapi/Nnrf_AccessToken/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Nnrf_AccessToken/client.go -------------------------------------------------------------------------------- /lib/openapi/Nnrf_NFDiscovery/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Nnrf_NFDiscovery/.gitignore -------------------------------------------------------------------------------- /lib/openapi/Nnrf_NFDiscovery/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Nnrf_NFDiscovery/CHANGELOG.md -------------------------------------------------------------------------------- /lib/openapi/Nnrf_NFDiscovery/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Nnrf_NFDiscovery/client.go -------------------------------------------------------------------------------- /lib/openapi/Nnrf_NFManagement/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Nnrf_NFManagement/.gitignore -------------------------------------------------------------------------------- /lib/openapi/Nnrf_NFManagement/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Nnrf_NFManagement/CHANGELOG.md -------------------------------------------------------------------------------- /lib/openapi/Nnrf_NFManagement/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Nnrf_NFManagement/client.go -------------------------------------------------------------------------------- /lib/openapi/Nnssf_NSSelection/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Nnssf_NSSelection/.gitignore -------------------------------------------------------------------------------- /lib/openapi/Nnssf_NSSelection/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Nnssf_NSSelection/CHANGELOG.md -------------------------------------------------------------------------------- /lib/openapi/Nnssf_NSSelection/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Nnssf_NSSelection/client.go -------------------------------------------------------------------------------- /lib/openapi/Npcf_AMPolicy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Npcf_AMPolicy/.gitignore -------------------------------------------------------------------------------- /lib/openapi/Npcf_AMPolicy/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Npcf_AMPolicy/CHANGELOG.md -------------------------------------------------------------------------------- /lib/openapi/Npcf_AMPolicy/api_default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Npcf_AMPolicy/api_default.go -------------------------------------------------------------------------------- /lib/openapi/Npcf_AMPolicy/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Npcf_AMPolicy/client.go -------------------------------------------------------------------------------- /lib/openapi/Npcf_AMPolicy/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Npcf_AMPolicy/configuration.go -------------------------------------------------------------------------------- /lib/openapi/Npcf_SMPolicyControl/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Npcf_SMPolicyControl/client.go -------------------------------------------------------------------------------- /lib/openapi/Npcf_UEPolicy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Npcf_UEPolicy/.gitignore -------------------------------------------------------------------------------- /lib/openapi/Npcf_UEPolicy/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Npcf_UEPolicy/CHANGELOG.md -------------------------------------------------------------------------------- /lib/openapi/Npcf_UEPolicy/api_default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Npcf_UEPolicy/api_default.go -------------------------------------------------------------------------------- /lib/openapi/Npcf_UEPolicy/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Npcf_UEPolicy/client.go -------------------------------------------------------------------------------- /lib/openapi/Npcf_UEPolicy/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Npcf_UEPolicy/configuration.go -------------------------------------------------------------------------------- /lib/openapi/Nsmf_EventExposure/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Nsmf_EventExposure/.gitignore -------------------------------------------------------------------------------- /lib/openapi/Nsmf_EventExposure/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Nsmf_EventExposure/client.go -------------------------------------------------------------------------------- /lib/openapi/Nsmf_PDUSession/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Nsmf_PDUSession/.gitignore -------------------------------------------------------------------------------- /lib/openapi/Nsmf_PDUSession/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Nsmf_PDUSession/CHANGELOG.md -------------------------------------------------------------------------------- /lib/openapi/Nsmf_PDUSession/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Nsmf_PDUSession/client.go -------------------------------------------------------------------------------- /lib/openapi/Nsmf_PDUSession/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Nsmf_PDUSession/errors.go -------------------------------------------------------------------------------- /lib/openapi/Nudm_EventExposure/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Nudm_EventExposure/.gitignore -------------------------------------------------------------------------------- /lib/openapi/Nudm_EventExposure/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Nudm_EventExposure/client.go -------------------------------------------------------------------------------- /lib/openapi/Nudr_DataRepository/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Nudr_DataRepository/.gitignore -------------------------------------------------------------------------------- /lib/openapi/Nudr_DataRepository/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/Nudr_DataRepository/client.go -------------------------------------------------------------------------------- /lib/openapi/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/auth.go -------------------------------------------------------------------------------- /lib/openapi/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/client.go -------------------------------------------------------------------------------- /lib/openapi/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/convert.go -------------------------------------------------------------------------------- /lib/openapi/convert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/convert_test.go -------------------------------------------------------------------------------- /lib/openapi/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/error.go -------------------------------------------------------------------------------- /lib/openapi/json_query_builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/json_query_builder.go -------------------------------------------------------------------------------- /lib/openapi/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/logger/logger.go -------------------------------------------------------------------------------- /lib/openapi/media_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/media_type.go -------------------------------------------------------------------------------- /lib/openapi/models/model_acc_net_ch_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_acc_net_ch_id.go -------------------------------------------------------------------------------- /lib/openapi/models/model_access_tech.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_access_tech.go -------------------------------------------------------------------------------- /lib/openapi/models/model_access_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_access_type.go -------------------------------------------------------------------------------- /lib/openapi/models/model_af_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_af_event.go -------------------------------------------------------------------------------- /lib/openapi/models/model_allowed_nssai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_allowed_nssai.go -------------------------------------------------------------------------------- /lib/openapi/models/model_allowed_snssai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_allowed_snssai.go -------------------------------------------------------------------------------- /lib/openapi/models/model_am_policy_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_am_policy_data.go -------------------------------------------------------------------------------- /lib/openapi/models/model_ambr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_ambr.go -------------------------------------------------------------------------------- /lib/openapi/models/model_ambr_rm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_ambr_rm.go -------------------------------------------------------------------------------- /lib/openapi/models/model_amf_cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_amf_cond.go -------------------------------------------------------------------------------- /lib/openapi/models/model_amf_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_amf_event.go -------------------------------------------------------------------------------- /lib/openapi/models/model_amf_event_area.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_amf_event_area.go -------------------------------------------------------------------------------- /lib/openapi/models/model_amf_event_mode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_amf_event_mode.go -------------------------------------------------------------------------------- /lib/openapi/models/model_amf_event_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_amf_event_type.go -------------------------------------------------------------------------------- /lib/openapi/models/model_amf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_amf_info.go -------------------------------------------------------------------------------- /lib/openapi/models/model_an_gw_address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_an_gw_address.go -------------------------------------------------------------------------------- /lib/openapi/models/model_area.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_area.go -------------------------------------------------------------------------------- /lib/openapi/models/model_arp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_arp.go -------------------------------------------------------------------------------- /lib/openapi/models/model_atom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_atom.go -------------------------------------------------------------------------------- /lib/openapi/models/model_ausf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_ausf_info.go -------------------------------------------------------------------------------- /lib/openapi/models/model_auth_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_auth_event.go -------------------------------------------------------------------------------- /lib/openapi/models/model_auth_method.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_auth_method.go -------------------------------------------------------------------------------- /lib/openapi/models/model_auth_result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_auth_result.go -------------------------------------------------------------------------------- /lib/openapi/models/model_auth_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_auth_type.go -------------------------------------------------------------------------------- /lib/openapi/models/model_av5_g_he_aka.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_av5_g_he_aka.go -------------------------------------------------------------------------------- /lib/openapi/models/model_av5g_aka.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_av5g_aka.go -------------------------------------------------------------------------------- /lib/openapi/models/model_av_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_av_type.go -------------------------------------------------------------------------------- /lib/openapi/models/model_bdt_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_bdt_data.go -------------------------------------------------------------------------------- /lib/openapi/models/model_bdt_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_bdt_policy.go -------------------------------------------------------------------------------- /lib/openapi/models/model_bdt_req_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_bdt_req_data.go -------------------------------------------------------------------------------- /lib/openapi/models/model_bsf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_bsf_info.go -------------------------------------------------------------------------------- /lib/openapi/models/model_cause.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_cause.go -------------------------------------------------------------------------------- /lib/openapi/models/model_change_item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_change_item.go -------------------------------------------------------------------------------- /lib/openapi/models/model_change_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_change_type.go -------------------------------------------------------------------------------- /lib/openapi/models/model_charging_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_charging_data.go -------------------------------------------------------------------------------- /lib/openapi/models/model_chf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_chf_info.go -------------------------------------------------------------------------------- /lib/openapi/models/model_civic_address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_civic_address.go -------------------------------------------------------------------------------- /lib/openapi/models/model_cm_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_cm_info.go -------------------------------------------------------------------------------- /lib/openapi/models/model_cm_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_cm_state.go -------------------------------------------------------------------------------- /lib/openapi/models/model_cnf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_cnf.go -------------------------------------------------------------------------------- /lib/openapi/models/model_cnf_unit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_cnf_unit.go -------------------------------------------------------------------------------- /lib/openapi/models/model_complex_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_complex_query.go -------------------------------------------------------------------------------- /lib/openapi/models/model_condition_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_condition_data.go -------------------------------------------------------------------------------- /lib/openapi/models/model_constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_constants.go -------------------------------------------------------------------------------- /lib/openapi/models/model_data_set_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_data_set_id.go -------------------------------------------------------------------------------- /lib/openapi/models/model_data_set_name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_data_set_name.go -------------------------------------------------------------------------------- /lib/openapi/models/model_dnf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_dnf.go -------------------------------------------------------------------------------- /lib/openapi/models/model_dnf_unit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_dnf_unit.go -------------------------------------------------------------------------------- /lib/openapi/models/model_dnn_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_dnn_info.go -------------------------------------------------------------------------------- /lib/openapi/models/model_dynamic5_qi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_dynamic5_qi.go -------------------------------------------------------------------------------- /lib/openapi/models/model_eap_session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_eap_session.go -------------------------------------------------------------------------------- /lib/openapi/models/model_ecgi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_ecgi.go -------------------------------------------------------------------------------- /lib/openapi/models/model_ellipsoid_arc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_ellipsoid_arc.go -------------------------------------------------------------------------------- /lib/openapi/models/model_emergency_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_emergency_info.go -------------------------------------------------------------------------------- /lib/openapi/models/model_eps_iwk_pgw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_eps_iwk_pgw.go -------------------------------------------------------------------------------- /lib/openapi/models/model_error_report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_error_report.go -------------------------------------------------------------------------------- /lib/openapi/models/model_eutra_location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_eutra_location.go -------------------------------------------------------------------------------- /lib/openapi/models/model_event_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_event_type.go -------------------------------------------------------------------------------- /lib/openapi/models/model_failure_cause.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_failure_cause.go -------------------------------------------------------------------------------- /lib/openapi/models/model_failure_code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_failure_code.go -------------------------------------------------------------------------------- /lib/openapi/models/model_flow_direction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_flow_direction.go -------------------------------------------------------------------------------- /lib/openapi/models/model_flow_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_flow_info.go -------------------------------------------------------------------------------- /lib/openapi/models/model_flow_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_flow_status.go -------------------------------------------------------------------------------- /lib/openapi/models/model_flow_usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_flow_usage.go -------------------------------------------------------------------------------- /lib/openapi/models/model_flows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_flows.go -------------------------------------------------------------------------------- /lib/openapi/models/model_g_nb_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_g_nb_id.go -------------------------------------------------------------------------------- /lib/openapi/models/model_gad_shape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_gad_shape.go -------------------------------------------------------------------------------- /lib/openapi/models/model_gnss_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_gnss_id.go -------------------------------------------------------------------------------- /lib/openapi/models/model_guami.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_guami.go -------------------------------------------------------------------------------- /lib/openapi/models/model_ho_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_ho_state.go -------------------------------------------------------------------------------- /lib/openapi/models/model_identity_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_identity_data.go -------------------------------------------------------------------------------- /lib/openapi/models/model_identity_range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_identity_range.go -------------------------------------------------------------------------------- /lib/openapi/models/model_ims_vo_ps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_ims_vo_ps.go -------------------------------------------------------------------------------- /lib/openapi/models/model_invalid_param.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_invalid_param.go -------------------------------------------------------------------------------- /lib/openapi/models/model_ip_address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_ip_address.go -------------------------------------------------------------------------------- /lib/openapi/models/model_ip_end_point.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_ip_end_point.go -------------------------------------------------------------------------------- /lib/openapi/models/model_key_amf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_key_amf.go -------------------------------------------------------------------------------- /lib/openapi/models/model_key_amf_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_key_amf_type.go -------------------------------------------------------------------------------- /lib/openapi/models/model_ladn_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_ladn_info.go -------------------------------------------------------------------------------- /lib/openapi/models/model_lcs_priority.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_lcs_priority.go -------------------------------------------------------------------------------- /lib/openapi/models/model_link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_link.go -------------------------------------------------------------------------------- /lib/openapi/models/model_location_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_location_event.go -------------------------------------------------------------------------------- /lib/openapi/models/model_location_qo_s.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_location_qo_s.go -------------------------------------------------------------------------------- /lib/openapi/models/model_location_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_location_type.go -------------------------------------------------------------------------------- /lib/openapi/models/model_media_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_media_type.go -------------------------------------------------------------------------------- /lib/openapi/models/model_milenage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_milenage.go -------------------------------------------------------------------------------- /lib/openapi/models/model_mm_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_mm_context.go -------------------------------------------------------------------------------- /lib/openapi/models/model_n3ga_location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_n3ga_location.go -------------------------------------------------------------------------------- /lib/openapi/models/model_ncgi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_ncgi.go -------------------------------------------------------------------------------- /lib/openapi/models/model_network_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_network_id.go -------------------------------------------------------------------------------- /lib/openapi/models/model_nf_group_cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_nf_group_cond.go -------------------------------------------------------------------------------- /lib/openapi/models/model_nf_profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_nf_profile.go -------------------------------------------------------------------------------- /lib/openapi/models/model_nf_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_nf_service.go -------------------------------------------------------------------------------- /lib/openapi/models/model_nf_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_nf_status.go -------------------------------------------------------------------------------- /lib/openapi/models/model_nf_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_nf_type.go -------------------------------------------------------------------------------- /lib/openapi/models/model_nf_type_cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_nf_type_cond.go -------------------------------------------------------------------------------- /lib/openapi/models/model_ng_ap_cause.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_ng_ap_cause.go -------------------------------------------------------------------------------- /lib/openapi/models/model_ng_ksi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_ng_ksi.go -------------------------------------------------------------------------------- /lib/openapi/models/model_ngap_ie_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_ngap_ie_type.go -------------------------------------------------------------------------------- /lib/openapi/models/model_notification.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_notification.go -------------------------------------------------------------------------------- /lib/openapi/models/model_notify_item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_notify_item.go -------------------------------------------------------------------------------- /lib/openapi/models/model_nr_location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_nr_location.go -------------------------------------------------------------------------------- /lib/openapi/models/model_nrf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_nrf_info.go -------------------------------------------------------------------------------- /lib/openapi/models/model_nssai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_nssai.go -------------------------------------------------------------------------------- /lib/openapi/models/model_nssai_mapping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_nssai_mapping.go -------------------------------------------------------------------------------- /lib/openapi/models/model_nulldataset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_nulldataset.go -------------------------------------------------------------------------------- /lib/openapi/models/model_nullinfoclass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_nullinfoclass.go -------------------------------------------------------------------------------- /lib/openapi/models/model_nullnftype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_nullnftype.go -------------------------------------------------------------------------------- /lib/openapi/models/model_odb_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_odb_data.go -------------------------------------------------------------------------------- /lib/openapi/models/model_op.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_op.go -------------------------------------------------------------------------------- /lib/openapi/models/model_opc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_opc.go -------------------------------------------------------------------------------- /lib/openapi/models/model_patch_item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_patch_item.go -------------------------------------------------------------------------------- /lib/openapi/models/model_pcc_rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_pcc_rule.go -------------------------------------------------------------------------------- /lib/openapi/models/model_pcf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_pcf_info.go -------------------------------------------------------------------------------- /lib/openapi/models/model_pdu_session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_pdu_session.go -------------------------------------------------------------------------------- /lib/openapi/models/model_periodicity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_periodicity.go -------------------------------------------------------------------------------- /lib/openapi/models/model_permanent_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_permanent_key.go -------------------------------------------------------------------------------- /lib/openapi/models/model_pfd_content.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_pfd_content.go -------------------------------------------------------------------------------- /lib/openapi/models/model_pgw_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_pgw_info.go -------------------------------------------------------------------------------- /lib/openapi/models/model_plmn_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_plmn_id.go -------------------------------------------------------------------------------- /lib/openapi/models/model_plmn_range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_plmn_range.go -------------------------------------------------------------------------------- /lib/openapi/models/model_plmn_snssai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_plmn_snssai.go -------------------------------------------------------------------------------- /lib/openapi/models/model_point.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_point.go -------------------------------------------------------------------------------- /lib/openapi/models/model_point_altitude.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_point_altitude.go -------------------------------------------------------------------------------- /lib/openapi/models/model_policy_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_policy_update.go -------------------------------------------------------------------------------- /lib/openapi/models/model_polygon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_polygon.go -------------------------------------------------------------------------------- /lib/openapi/models/model_pp_active_time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_pp_active_time.go -------------------------------------------------------------------------------- /lib/openapi/models/model_pp_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_pp_data.go -------------------------------------------------------------------------------- /lib/openapi/models/model_presence_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_presence_info.go -------------------------------------------------------------------------------- /lib/openapi/models/model_presence_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_presence_state.go -------------------------------------------------------------------------------- /lib/openapi/models/model_pws_error_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_pws_error_data.go -------------------------------------------------------------------------------- /lib/openapi/models/model_qos_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_qos_data.go -------------------------------------------------------------------------------- /lib/openapi/models/model_qos_flow_item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_qos_flow_item.go -------------------------------------------------------------------------------- /lib/openapi/models/model_qos_flow_usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_qos_flow_usage.go -------------------------------------------------------------------------------- /lib/openapi/models/model_qos_notif_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_qos_notif_type.go -------------------------------------------------------------------------------- /lib/openapi/models/model_rat_selector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_rat_selector.go -------------------------------------------------------------------------------- /lib/openapi/models/model_rat_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_rat_type.go -------------------------------------------------------------------------------- /lib/openapi/models/model_release_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_release_data.go -------------------------------------------------------------------------------- /lib/openapi/models/model_report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_report.go -------------------------------------------------------------------------------- /lib/openapi/models/model_request_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_request_type.go -------------------------------------------------------------------------------- /lib/openapi/models/model_requested_qos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_requested_qos.go -------------------------------------------------------------------------------- /lib/openapi/models/model_response_time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_response_time.go -------------------------------------------------------------------------------- /lib/openapi/models/model_rm_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_rm_info.go -------------------------------------------------------------------------------- /lib/openapi/models/model_rm_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_rm_state.go -------------------------------------------------------------------------------- /lib/openapi/models/model_roaming_odb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_roaming_odb.go -------------------------------------------------------------------------------- /lib/openapi/models/model_rotations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_rotations.go -------------------------------------------------------------------------------- /lib/openapi/models/model_rule_operation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_rule_operation.go -------------------------------------------------------------------------------- /lib/openapi/models/model_rule_report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_rule_report.go -------------------------------------------------------------------------------- /lib/openapi/models/model_rule_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_rule_status.go -------------------------------------------------------------------------------- /lib/openapi/models/model_sc_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_sc_type.go -------------------------------------------------------------------------------- /lib/openapi/models/model_seaf_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_seaf_data.go -------------------------------------------------------------------------------- /lib/openapi/models/model_search_result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_search_result.go -------------------------------------------------------------------------------- /lib/openapi/models/model_serv_auth_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_serv_auth_info.go -------------------------------------------------------------------------------- /lib/openapi/models/model_service_name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_service_name.go -------------------------------------------------------------------------------- /lib/openapi/models/model_session_rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_session_rule.go -------------------------------------------------------------------------------- /lib/openapi/models/model_shared_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_shared_data.go -------------------------------------------------------------------------------- /lib/openapi/models/model_sm_policy_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_sm_policy_data.go -------------------------------------------------------------------------------- /lib/openapi/models/model_smf_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_smf_event.go -------------------------------------------------------------------------------- /lib/openapi/models/model_smf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_smf_info.go -------------------------------------------------------------------------------- /lib/openapi/models/model_sms_support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_sms_support.go -------------------------------------------------------------------------------- /lib/openapi/models/model_smsf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_smsf_info.go -------------------------------------------------------------------------------- /lib/openapi/models/model_snssai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_snssai.go -------------------------------------------------------------------------------- /lib/openapi/models/model_snssai_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_snssai_info.go -------------------------------------------------------------------------------- /lib/openapi/models/model_sor_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_sor_data.go -------------------------------------------------------------------------------- /lib/openapi/models/model_sor_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_sor_info.go -------------------------------------------------------------------------------- /lib/openapi/models/model_ssc_mode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_ssc_mode.go -------------------------------------------------------------------------------- /lib/openapi/models/model_ssc_modes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_ssc_modes.go -------------------------------------------------------------------------------- /lib/openapi/models/model_status_change.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_status_change.go -------------------------------------------------------------------------------- /lib/openapi/models/model_status_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_status_info.go -------------------------------------------------------------------------------- /lib/openapi/models/model_steering_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_steering_info.go -------------------------------------------------------------------------------- /lib/openapi/models/model_supi_range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_supi_range.go -------------------------------------------------------------------------------- /lib/openapi/models/model_tac_range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_tac_range.go -------------------------------------------------------------------------------- /lib/openapi/models/model_tai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_tai.go -------------------------------------------------------------------------------- /lib/openapi/models/model_tai_range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_tai_range.go -------------------------------------------------------------------------------- /lib/openapi/models/model_time_period.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_time_period.go -------------------------------------------------------------------------------- /lib/openapi/models/model_time_window.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_time_window.go -------------------------------------------------------------------------------- /lib/openapi/models/model_top.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_top.go -------------------------------------------------------------------------------- /lib/openapi/models/model_topc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_topc.go -------------------------------------------------------------------------------- /lib/openapi/models/model_trace_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_trace_data.go -------------------------------------------------------------------------------- /lib/openapi/models/model_trace_depth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_trace_depth.go -------------------------------------------------------------------------------- /lib/openapi/models/model_trigger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_trigger.go -------------------------------------------------------------------------------- /lib/openapi/models/model_trigger_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_trigger_type.go -------------------------------------------------------------------------------- /lib/openapi/models/model_tuak.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_tuak.go -------------------------------------------------------------------------------- /lib/openapi/models/model_tunnel_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_tunnel_info.go -------------------------------------------------------------------------------- /lib/openapi/models/model_udm_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_udm_info.go -------------------------------------------------------------------------------- /lib/openapi/models/model_udr_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_udr_info.go -------------------------------------------------------------------------------- /lib/openapi/models/model_ue_camping_rep.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_ue_camping_rep.go -------------------------------------------------------------------------------- /lib/openapi/models/model_ue_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_ue_context.go -------------------------------------------------------------------------------- /lib/openapi/models/model_ue_policy_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_ue_policy_set.go -------------------------------------------------------------------------------- /lib/openapi/models/model_up_cnx_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_up_cnx_state.go -------------------------------------------------------------------------------- /lib/openapi/models/model_up_integrity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_up_integrity.go -------------------------------------------------------------------------------- /lib/openapi/models/model_up_security.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_up_security.go -------------------------------------------------------------------------------- /lib/openapi/models/model_upf_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_upf_info.go -------------------------------------------------------------------------------- /lib/openapi/models/model_upu_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_upu_data.go -------------------------------------------------------------------------------- /lib/openapi/models/model_upu_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_upu_info.go -------------------------------------------------------------------------------- /lib/openapi/models/model_uri_scheme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_uri_scheme.go -------------------------------------------------------------------------------- /lib/openapi/models/model_usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_usage.go -------------------------------------------------------------------------------- /lib/openapi/models/model_usage_mon_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_usage_mon_data.go -------------------------------------------------------------------------------- /lib/openapi/models/model_user_location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/models/model_user_location.go -------------------------------------------------------------------------------- /lib/openapi/multipart_related.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/multipart_related.go -------------------------------------------------------------------------------- /lib/openapi/serialize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/serialize.go -------------------------------------------------------------------------------- /lib/openapi/supported_feature.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/supported_feature.go -------------------------------------------------------------------------------- /lib/openapi/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/openapi/version/version.go -------------------------------------------------------------------------------- /lib/u32/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/u32/const.go -------------------------------------------------------------------------------- /lib/u32/p_gtpv1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/u32/p_gtpv1.go -------------------------------------------------------------------------------- /lib/u32/p_ipv4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/u32/p_ipv4.go -------------------------------------------------------------------------------- /lib/u32/p_tcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/u32/p_tcp.go -------------------------------------------------------------------------------- /lib/u32/p_udp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/u32/p_udp.go -------------------------------------------------------------------------------- /lib/u32/protocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/u32/protocol.go -------------------------------------------------------------------------------- /lib/u32/u32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/u32/u32.go -------------------------------------------------------------------------------- /lib/util_3gpp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/util_3gpp/.gitignore -------------------------------------------------------------------------------- /lib/util_3gpp/3gpp_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/util_3gpp/3gpp_type.go -------------------------------------------------------------------------------- /lib/util_3gpp/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/util_3gpp/CHANGELOG.md -------------------------------------------------------------------------------- /lib/util_3gpp/str_conv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/util_3gpp/str_conv.go -------------------------------------------------------------------------------- /lib/util_3gpp/suci/toSupi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/util_3gpp/suci/toSupi.go -------------------------------------------------------------------------------- /lib/util_3gpp/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/util_3gpp/version/version.go -------------------------------------------------------------------------------- /lib/util_3gpp/version/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/lib/util_3gpp/version/version_test.go -------------------------------------------------------------------------------- /logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/logger/logger.go -------------------------------------------------------------------------------- /module/gnb/api/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/gnb/api/config.go -------------------------------------------------------------------------------- /module/gnb/api/converter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/gnb/api/converter.go -------------------------------------------------------------------------------- /module/gnb/api/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/gnb/api/factory.go -------------------------------------------------------------------------------- /module/gnb/api/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/gnb/api/helper.go -------------------------------------------------------------------------------- /module/gnb/api/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/gnb/api/init.go -------------------------------------------------------------------------------- /module/gnb/api/n2_interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/gnb/api/n2_interface.go -------------------------------------------------------------------------------- /module/gnb/api/n3_interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/gnb/api/n3_interface.go -------------------------------------------------------------------------------- /module/gnb/api/ngapTestpacket/ngap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/gnb/api/ngapTestpacket/ngap.go -------------------------------------------------------------------------------- /module/gnb/api/packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/gnb/api/packet.go -------------------------------------------------------------------------------- /module/gnb/api/procedure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/gnb/api/procedure.go -------------------------------------------------------------------------------- /module/gnb/api/ran_ue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/gnb/api/ran_ue.go -------------------------------------------------------------------------------- /module/gnb/api/supi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/gnb/api/supi.go -------------------------------------------------------------------------------- /module/gnb/completer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/gnb/completer.go -------------------------------------------------------------------------------- /module/gnb/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/gnb/config.go -------------------------------------------------------------------------------- /module/gnb/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/gnb/const.go -------------------------------------------------------------------------------- /module/gnb/executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/gnb/executor.go -------------------------------------------------------------------------------- /module/gnb/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/gnb/factory.go -------------------------------------------------------------------------------- /module/gnb/gnb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/gnb/gnb.go -------------------------------------------------------------------------------- /module/gnb/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/gnb/init.go -------------------------------------------------------------------------------- /module/gnb/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/gnb/router.go -------------------------------------------------------------------------------- /module/nf/api/database_name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/nf/api/database_name.go -------------------------------------------------------------------------------- /module/nf/api/procedure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/nf/api/procedure.go -------------------------------------------------------------------------------- /module/nf/completer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/nf/completer.go -------------------------------------------------------------------------------- /module/nf/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/nf/config.go -------------------------------------------------------------------------------- /module/nf/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/nf/const.go -------------------------------------------------------------------------------- /module/nf/executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/nf/executor.go -------------------------------------------------------------------------------- /module/nf/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/nf/factory.go -------------------------------------------------------------------------------- /module/nf/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/nf/init.go -------------------------------------------------------------------------------- /module/nf/nf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/nf/nf.go -------------------------------------------------------------------------------- /module/qos/completer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/qos/completer.go -------------------------------------------------------------------------------- /module/qos/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/qos/config.go -------------------------------------------------------------------------------- /module/qos/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/qos/const.go -------------------------------------------------------------------------------- /module/qos/executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/qos/executor.go -------------------------------------------------------------------------------- /module/qos/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/qos/factory.go -------------------------------------------------------------------------------- /module/qos/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/qos/init.go -------------------------------------------------------------------------------- /module/subscriber/api/database_name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/subscriber/api/database_name.go -------------------------------------------------------------------------------- /module/subscriber/api/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/subscriber/api/helper.go -------------------------------------------------------------------------------- /module/subscriber/api/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/subscriber/api/models.go -------------------------------------------------------------------------------- /module/subscriber/api/procedure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/subscriber/api/procedure.go -------------------------------------------------------------------------------- /module/subscriber/completer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/subscriber/completer.go -------------------------------------------------------------------------------- /module/subscriber/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/subscriber/config.go -------------------------------------------------------------------------------- /module/subscriber/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/subscriber/const.go -------------------------------------------------------------------------------- /module/subscriber/executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/subscriber/executor.go -------------------------------------------------------------------------------- /module/subscriber/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/subscriber/factory.go -------------------------------------------------------------------------------- /module/subscriber/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/module/subscriber/init.go -------------------------------------------------------------------------------- /wiki/00_home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/wiki/00_home.md -------------------------------------------------------------------------------- /wiki/01_subscriber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/wiki/01_subscriber.md -------------------------------------------------------------------------------- /wiki/02_gnb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/wiki/02_gnb.md -------------------------------------------------------------------------------- /wiki/03_qos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/wiki/03_qos.md -------------------------------------------------------------------------------- /wiki/04_nf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/wiki/04_nf.md -------------------------------------------------------------------------------- /wiki/05_tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/wiki/05_tutorial.md -------------------------------------------------------------------------------- /wiki/_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shynuu/free5gc-cli/HEAD/wiki/_sidebar.md --------------------------------------------------------------------------------