├── COPYING ├── README.txt ├── cmake_targets ├── CMakeLists.txt ├── at_commands │ └── CMakeLists.txt ├── autotests │ ├── run_compilation_autotests.bash │ ├── run_exec_autotests.bash │ ├── test.0101 │ │ └── CMakeLists.txt │ ├── test.0102 │ │ └── CMakeLists.txt │ ├── test.0103 │ │ ├── CMakeLists.txt │ │ ├── CMakeLists.txt.Rel10 │ │ ├── CMakeLists.txt.Rel8 │ │ └── CMakeLists.txt.USRP │ ├── test.0104 │ │ └── CMakeLists.txt │ ├── test.0106 │ │ └── CMakeLists.txt │ ├── test.0107 │ │ └── CMakeLists.txt │ ├── test.0108 │ │ └── CMakeLists.txt │ ├── test.0113 │ │ └── CMakeLists.txt │ ├── test.0114 │ │ └── CMakeLists.txt │ ├── test.0115 │ │ └── CMakeLists.txt │ ├── test.0120 │ │ └── CMakeLists.txt │ └── test.0130 │ │ └── CMakeLists.txt ├── build_oai ├── doxygen │ └── CMakeLists.txt ├── epc_build_oai │ └── CMakeLists.template ├── hss_build │ ├── CMakeLists.txt │ ├── acl.conf.in │ ├── hss.conf.in │ └── hss_fd.conf.in ├── lte-simulators │ └── CMakeLists.txt ├── lte_noS1_build_oai │ └── CMakeLists.template ├── nas_sim_tools │ └── CMakeLists.txt ├── oaisim_build_oai │ └── CMakeLists.template ├── oaisim_mme_build_oai │ └── CMakeLists.template ├── oaisim_noS1_build_oai │ └── CMakeLists.template ├── rrh_gw │ └── CMakeLists.txt ├── s1c_mme_test │ └── CMakeLists.template └── tools │ ├── Kbuild.cmake │ ├── MODULES │ ├── CMakeParseArguments.cmake │ ├── CMakeUserFindMySQL.cmake │ ├── CMakeUserUseBison.cmake │ ├── CMakeUserUseFlex.cmake │ ├── FindFreeDiameter.cmake │ ├── FindGCCXML.cmake │ ├── FindGcrypt.cmake │ ├── FindGnuTLS.cmake │ ├── FindKbuild.cmake │ ├── FindLibXml2.cmake │ ├── FindMySQL.cmake │ ├── FindNettle.cmake │ ├── FindPostgreSQL.cmake │ ├── FindSCTP.cmake │ ├── Kbuild.cmake │ ├── cmake_useful.cmake │ ├── kbuild_system.cmake │ ├── kmodule.cmake │ └── path_prefixes.cmake │ ├── build_epc │ ├── build_helper │ ├── build_hss │ ├── check_hss_s6a_certificate │ ├── check_mme_s6a_certificate │ ├── create_hss_database │ ├── epc.conf.in │ ├── epc.local.enb.conf.in │ ├── example_enb_exmimo_mme_hss.txt │ ├── example_oaisim_enb_ue_mme_virtual.txt │ ├── exmimo2_2arxg.lime │ ├── exmimo2_2brxg.lime │ ├── generate_asn1 │ ├── indent_source_code │ ├── init_exmimo2 │ ├── init_nas_nos1 │ ├── mem_usage │ ├── perf_oai.bash │ ├── run_enb_s1_exmimo │ ├── run_enb_s1_usrp │ ├── run_enb_ue_virt_noS1 │ ├── run_enb_ue_virt_s1 │ ├── run_epc │ ├── run_hss │ ├── s6a.conf.in │ └── test_helper ├── common └── utils │ ├── COPYING │ ├── Makefile.inc │ ├── asn1_conversions.h │ ├── assertions.h │ ├── collection │ ├── COPYING │ ├── hashtable │ │ ├── COPYING │ │ ├── hashtable.c │ │ ├── hashtable.h │ │ ├── obj_hashtable.c │ │ └── obj_hashtable.h │ ├── queue.h │ └── tree.h │ ├── itti │ ├── COPYING │ ├── Makefile.am │ ├── assertions.h │ ├── backtrace.c │ ├── backtrace.h │ ├── intertask_interface.c │ ├── intertask_interface.h │ ├── intertask_interface_dump.c │ ├── intertask_interface_dump.h │ ├── intertask_interface_init.h │ ├── intertask_interface_types.h │ ├── intertask_messages_def.h │ ├── intertask_messages_types.h │ ├── itti_types.h │ ├── memory_pools.c │ ├── memory_pools.h │ ├── messages_def.h │ ├── messages_types.h │ ├── signals.c │ ├── signals.h │ ├── tasks_def.h │ ├── timer.c │ ├── timer.h │ ├── timer_messages_def.h │ └── timer_messages_types.h │ ├── itti_analyzer │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── autogen.sh │ ├── common │ │ ├── COPYING │ │ ├── itti_types.h │ │ ├── logs.h │ │ ├── queue.h │ │ └── rc.h │ ├── configure.ac │ ├── filters.xml │ ├── filters_mme.xml │ ├── filters_ue_enb.xml │ ├── itti_analyzer.c │ ├── libbuffers │ │ ├── COPYING │ │ ├── Makefile.am │ │ ├── buffers.c │ │ ├── buffers.h │ │ ├── file.c │ │ ├── file.h │ │ ├── socket.c │ │ └── socket.h │ ├── libparser │ │ ├── COPYING │ │ ├── Makefile.am │ │ ├── array_type.c │ │ ├── array_type.h │ │ ├── enum_type.c │ │ ├── enum_type.h │ │ ├── enum_value_type.c │ │ ├── enum_value_type.h │ │ ├── field_type.c │ │ ├── field_type.h │ │ ├── file_type.c │ │ ├── file_type.h │ │ ├── fundamental_type.c │ │ ├── fundamental_type.h │ │ ├── intertask_contexts.h │ │ ├── pointer_type.c │ │ ├── pointer_type.h │ │ ├── reference_type.c │ │ ├── reference_type.h │ │ ├── struct_type.c │ │ ├── struct_type.h │ │ ├── typedef_type.c │ │ ├── typedef_type.h │ │ ├── types.c │ │ ├── types.h │ │ ├── union_type.c │ │ ├── union_type.h │ │ ├── xml_parse.c │ │ └── xml_parse.h │ ├── libresolver │ │ ├── COPYING │ │ ├── Makefile.am │ │ ├── locate_root.c │ │ ├── locate_root.h │ │ ├── resolvers.c │ │ └── resolvers.h │ └── libui │ │ ├── COPYING │ │ ├── Makefile.am │ │ ├── ui_callbacks.c │ │ ├── ui_callbacks.h │ │ ├── ui_filters.c │ │ ├── ui_filters.h │ │ ├── ui_interface.c │ │ ├── ui_interface.h │ │ ├── ui_main_screen.c │ │ ├── ui_main_screen.h │ │ ├── ui_menu_bar.c │ │ ├── ui_menu_bar.h │ │ ├── ui_notebook.c │ │ ├── ui_notebook.h │ │ ├── ui_notif_dlg.c │ │ ├── ui_notif_dlg.h │ │ ├── ui_notifications.c │ │ ├── ui_notifications.h │ │ ├── ui_signal_dissect_view.c │ │ ├── ui_signal_dissect_view.h │ │ ├── ui_tree_view.c │ │ └── ui_tree_view.h │ └── msc │ ├── msc.c │ └── msc.h ├── maketags ├── oaienv ├── openair-cn ├── AUTHORS ├── COMMON │ ├── as_message.h │ ├── common_types.h │ ├── gtpv1_u_messages_def.h │ ├── gtpv1_u_messages_types.h │ ├── intertask_interface_conf.h │ ├── ip_forward_messages_def.h │ ├── ip_forward_messages_types.h │ ├── messages_def.h │ ├── messages_types.h │ ├── mme_app_messages_def.h │ ├── mme_app_messages_types.h │ ├── nas_messages_def.h │ ├── nas_messages_types.h │ ├── s11_messages_def.h │ ├── s11_messages_types.h │ ├── s1ap_messages_def.h │ ├── s1ap_messages_types.h │ ├── s6a_messages_def.h │ ├── s6a_messages_types.h │ ├── sctp_messages_def.h │ ├── sctp_messages_types.h │ ├── security_types.h │ ├── sgw_lite_def.h │ ├── sgw_lite_messages_types.h │ ├── tasks_def.h │ ├── udp_messages_def.h │ └── udp_messages_types.h ├── COPYING ├── ChangeLog ├── DOCS │ ├── COPYING │ ├── DOXYGEN │ │ ├── COPYING │ │ ├── Doxyfile.in │ │ └── Makefile.am │ ├── EPC_User_Guide.docx │ ├── EPC_User_Guide.pdf │ ├── Latex │ │ ├── COPYING │ │ ├── DefaultBearer │ │ │ ├── COPYING │ │ │ ├── DefaultBearer.pdf │ │ │ └── DefaultBearer.tex │ │ └── EPC │ │ │ ├── COPYING │ │ │ ├── EPC.pdf │ │ │ ├── EPC.tex │ │ │ └── Makefile │ └── Makefile.am ├── GTPV1-U │ ├── GTPU_SP │ │ ├── COPYING │ │ ├── INSTALL │ │ ├── Makefile │ │ ├── README │ │ ├── RELEASE_NOTES │ │ ├── cmd.sh │ │ ├── libxt_GTPUSP.c │ │ ├── xt_GTPUSP.c │ │ └── xt_GTPUSP.h │ ├── Makefile.am │ ├── Makefile.eNB │ ├── gtpv1u.h │ ├── gtpv1u_eNB.c │ ├── gtpv1u_eNB_defs.h │ ├── gtpv1u_eNB_task.h │ ├── gtpv1u_sgw_defs.h │ ├── gtpv1u_task.c │ ├── gtpv1u_teid_pool.c │ └── nw-gtpv1u │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── NEWS │ │ ├── README │ │ ├── include │ │ ├── NwGtpv1uLog.h │ │ ├── NwGtpv1uPrivate.h │ │ ├── NwGtpv1uTrxn.h │ │ └── NwGtpv1uTunnelEndPoint.h │ │ ├── shared │ │ ├── NwGtpv1u.h │ │ ├── NwGtpv1uError.h │ │ ├── NwGtpv1uIe.h │ │ ├── NwGtpv1uMsg.h │ │ ├── NwLog.h │ │ ├── NwTypes.h │ │ └── NwUtils.h │ │ ├── src │ │ ├── NwGtpv1u.c │ │ ├── NwGtpv1uMsg.c │ │ ├── NwGtpv1uTrxn.c │ │ └── NwGtpv1uTunnelEndPoint.c │ │ └── test-app │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── nw-helloworld │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── NwEvt.h │ │ ├── NwMiniLogMgrEntity.c │ │ ├── NwMiniLogMgrEntity.h │ │ ├── NwMiniTmrMgrEntity.c │ │ ├── NwMiniTmrMgrEntity.h │ │ ├── NwMiniUdpEntity.c │ │ ├── NwMiniUdpEntity.h │ │ ├── NwMiniUlpEntity.c │ │ ├── NwMiniUlpEntity.h │ │ └── helloworld.c ├── GTPV2-C │ ├── Makefile.am │ └── nwgtpv2c-0.11 │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── NEWS │ │ ├── README │ │ ├── configure.ac │ │ ├── include │ │ ├── NwGtpv2cLog.h │ │ ├── NwGtpv2cMsgIeParseInfo.h │ │ ├── NwGtpv2cPrivate.h │ │ ├── NwGtpv2cTrxn.h │ │ ├── NwGtpv2cTunnel.h │ │ ├── queue.h │ │ └── tree.h │ │ ├── shared │ │ ├── NwError.h │ │ ├── NwGtpv2c.h │ │ ├── NwGtpv2cIe.h │ │ ├── NwGtpv2cMsg.h │ │ ├── NwGtpv2cMsgParser.h │ │ ├── NwLog.h │ │ ├── NwTypes.h │ │ └── NwUtils.h │ │ ├── src │ │ ├── Makefile.am │ │ ├── NwGtpv2c.c │ │ ├── NwGtpv2cMsg.c │ │ ├── NwGtpv2cMsgIeParseInfo.c │ │ ├── NwGtpv2cMsgParser.c │ │ ├── NwGtpv2cTrxn.c │ │ └── NwGtpv2cTunnel.c │ │ └── test-app │ │ ├── Makefile.am │ │ ├── nw-egtping │ │ ├── Makefile.am │ │ ├── NwEgtPingMain.c │ │ ├── NwEvt.h │ │ ├── NwMiniLogMgrEntity.c │ │ ├── NwMiniLogMgrEntity.h │ │ ├── NwMiniTmrMgrEntity.c │ │ ├── NwMiniTmrMgrEntity.h │ │ ├── NwMiniUdpEntity.c │ │ ├── NwMiniUdpEntity.h │ │ ├── NwMiniUlpEntity.c │ │ └── NwMiniUlpEntity.h │ │ └── nw-helloworld │ │ ├── Makefile.am │ │ ├── NwEvt.h │ │ ├── NwMiniLogMgrEntity.c │ │ ├── NwMiniLogMgrEntity.h │ │ ├── NwMiniTmrMgrEntity.c │ │ ├── NwMiniTmrMgrEntity.h │ │ ├── NwMiniUdpEntity.c │ │ ├── NwMiniUdpEntity.h │ │ ├── NwMiniUlpEntity.c │ │ ├── NwMiniUlpEntity.h │ │ └── helloworld.c ├── INSTALL ├── INTERTASK_INTERFACE ├── MME_APP │ ├── COPYING │ ├── Makefile.am │ ├── mme_app_authentication.c │ ├── mme_app_bearer.c │ ├── mme_app_capabilities.c │ ├── mme_app_config.c │ ├── mme_app_config.h │ ├── mme_app_context.c │ ├── mme_app_defs.h │ ├── mme_app_extern.h │ ├── mme_app_itti_messaging.h │ ├── mme_app_location.c │ ├── mme_app_main.c │ ├── mme_app_statistics.c │ ├── mme_app_statistics.h │ ├── mme_app_ue_context.h │ └── s6a_2_nas_cause.c ├── Makefile.am ├── NAS │ ├── COMMON │ │ ├── API │ │ │ └── NETWORK │ │ │ │ ├── COPYING │ │ │ │ ├── Makefile │ │ │ │ ├── as_message.c │ │ │ │ ├── as_message.h │ │ │ │ ├── l2_message.h │ │ │ │ ├── nas_message.c │ │ │ │ ├── nas_message.h │ │ │ │ ├── network_api.c │ │ │ │ └── network_api.h │ │ ├── COPYING │ │ ├── EMM │ │ │ └── MSG │ │ │ │ ├── AttachAccept.c │ │ │ │ ├── AttachAccept.h │ │ │ │ ├── AttachComplete.c │ │ │ │ ├── AttachComplete.h │ │ │ │ ├── AttachReject.c │ │ │ │ ├── AttachReject.h │ │ │ │ ├── AttachRequest.c │ │ │ │ ├── AttachRequest.h │ │ │ │ ├── AuthenticationFailure.c │ │ │ │ ├── AuthenticationFailure.h │ │ │ │ ├── AuthenticationReject.c │ │ │ │ ├── AuthenticationReject.h │ │ │ │ ├── AuthenticationRequest.c │ │ │ │ ├── AuthenticationRequest.h │ │ │ │ ├── AuthenticationResponse.c │ │ │ │ ├── AuthenticationResponse.h │ │ │ │ ├── COPYING │ │ │ │ ├── CsServiceNotification.c │ │ │ │ ├── CsServiceNotification.h │ │ │ │ ├── DetachAccept.c │ │ │ │ ├── DetachAccept.h │ │ │ │ ├── DetachRequest.c │ │ │ │ ├── DetachRequest.h │ │ │ │ ├── DownlinkNasTransport.c │ │ │ │ ├── DownlinkNasTransport.h │ │ │ │ ├── EmmInformation.c │ │ │ │ ├── EmmInformation.h │ │ │ │ ├── EmmStatus.c │ │ │ │ ├── EmmStatus.h │ │ │ │ ├── ExtendedServiceRequest.c │ │ │ │ ├── ExtendedServiceRequest.h │ │ │ │ ├── GutiReallocationCommand.c │ │ │ │ ├── GutiReallocationCommand.h │ │ │ │ ├── GutiReallocationComplete.c │ │ │ │ ├── GutiReallocationComplete.h │ │ │ │ ├── IdentityRequest.c │ │ │ │ ├── IdentityRequest.h │ │ │ │ ├── IdentityResponse.c │ │ │ │ ├── IdentityResponse.h │ │ │ │ ├── Makefile │ │ │ │ ├── NASSecurityModeCommand.h │ │ │ │ ├── NASSecurityModeComplete.h │ │ │ │ ├── SecurityModeCommand.c │ │ │ │ ├── SecurityModeComplete.c │ │ │ │ ├── SecurityModeReject.c │ │ │ │ ├── SecurityModeReject.h │ │ │ │ ├── ServiceReject.c │ │ │ │ ├── ServiceReject.h │ │ │ │ ├── ServiceRequest.c │ │ │ │ ├── ServiceRequest.h │ │ │ │ ├── TrackingAreaUpdateAccept.c │ │ │ │ ├── TrackingAreaUpdateAccept.h │ │ │ │ ├── TrackingAreaUpdateComplete.c │ │ │ │ ├── TrackingAreaUpdateComplete.h │ │ │ │ ├── TrackingAreaUpdateReject.c │ │ │ │ ├── TrackingAreaUpdateReject.h │ │ │ │ ├── TrackingAreaUpdateRequest.c │ │ │ │ ├── TrackingAreaUpdateRequest.h │ │ │ │ ├── UplinkNasTransport.c │ │ │ │ ├── UplinkNasTransport.h │ │ │ │ ├── emm_cause.h │ │ │ │ ├── emm_msg.c │ │ │ │ ├── emm_msg.h │ │ │ │ └── emm_msgDef.h │ │ ├── ESM │ │ │ └── MSG │ │ │ │ ├── ActivateDedicatedEpsBearerContextAccept.c │ │ │ │ ├── ActivateDedicatedEpsBearerContextAccept.h │ │ │ │ ├── ActivateDedicatedEpsBearerContextReject.c │ │ │ │ ├── ActivateDedicatedEpsBearerContextReject.h │ │ │ │ ├── ActivateDedicatedEpsBearerContextRequest.c │ │ │ │ ├── ActivateDedicatedEpsBearerContextRequest.h │ │ │ │ ├── ActivateDefaultEpsBearerContextAccept.c │ │ │ │ ├── ActivateDefaultEpsBearerContextAccept.h │ │ │ │ ├── ActivateDefaultEpsBearerContextReject.c │ │ │ │ ├── ActivateDefaultEpsBearerContextReject.h │ │ │ │ ├── ActivateDefaultEpsBearerContextRequest.c │ │ │ │ ├── ActivateDefaultEpsBearerContextRequest.h │ │ │ │ ├── BearerResourceAllocationReject.c │ │ │ │ ├── BearerResourceAllocationReject.h │ │ │ │ ├── BearerResourceAllocationRequest.c │ │ │ │ ├── BearerResourceAllocationRequest.h │ │ │ │ ├── BearerResourceModificationReject.c │ │ │ │ ├── BearerResourceModificationReject.h │ │ │ │ ├── BearerResourceModificationRequest.c │ │ │ │ ├── BearerResourceModificationRequest.h │ │ │ │ ├── COPYING │ │ │ │ ├── DeactivateEpsBearerContextAccept.c │ │ │ │ ├── DeactivateEpsBearerContextAccept.h │ │ │ │ ├── DeactivateEpsBearerContextRequest.c │ │ │ │ ├── DeactivateEpsBearerContextRequest.h │ │ │ │ ├── EsmInformationRequest.c │ │ │ │ ├── EsmInformationRequest.h │ │ │ │ ├── EsmInformationResponse.c │ │ │ │ ├── EsmInformationResponse.h │ │ │ │ ├── EsmStatus.c │ │ │ │ ├── EsmStatus.h │ │ │ │ ├── Makefile │ │ │ │ ├── ModifyEpsBearerContextAccept.c │ │ │ │ ├── ModifyEpsBearerContextAccept.h │ │ │ │ ├── ModifyEpsBearerContextReject.c │ │ │ │ ├── ModifyEpsBearerContextReject.h │ │ │ │ ├── ModifyEpsBearerContextRequest.c │ │ │ │ ├── ModifyEpsBearerContextRequest.h │ │ │ │ ├── PdnConnectivityReject.c │ │ │ │ ├── PdnConnectivityReject.h │ │ │ │ ├── PdnConnectivityRequest.c │ │ │ │ ├── PdnConnectivityRequest.h │ │ │ │ ├── PdnDisconnectReject.c │ │ │ │ ├── PdnDisconnectReject.h │ │ │ │ ├── PdnDisconnectRequest.c │ │ │ │ ├── PdnDisconnectRequest.h │ │ │ │ ├── esm_cause.h │ │ │ │ ├── esm_msg.c │ │ │ │ ├── esm_msg.h │ │ │ │ └── esm_msgDef.h │ │ ├── IES │ │ │ ├── AccessPointName.c │ │ │ ├── AccessPointName.h │ │ │ ├── AdditionalUpdateResult.c │ │ │ ├── AdditionalUpdateResult.h │ │ │ ├── AdditionalUpdateType.c │ │ │ ├── AdditionalUpdateType.h │ │ │ ├── ApnAggregateMaximumBitRate.c │ │ │ ├── ApnAggregateMaximumBitRate.h │ │ │ ├── AuthenticationFailureParameter.c │ │ │ ├── AuthenticationFailureParameter.h │ │ │ ├── AuthenticationParameterAutn.c │ │ │ ├── AuthenticationParameterAutn.h │ │ │ ├── AuthenticationParameterRand.c │ │ │ ├── AuthenticationParameterRand.h │ │ │ ├── AuthenticationResponseParameter.c │ │ │ ├── AuthenticationResponseParameter.h │ │ │ ├── COPYING │ │ │ ├── CipheringKeySequenceNumber.c │ │ │ ├── CipheringKeySequenceNumber.h │ │ │ ├── Cli.c │ │ │ ├── Cli.h │ │ │ ├── CsfbResponse.c │ │ │ ├── CsfbResponse.h │ │ │ ├── DaylightSavingTime.c │ │ │ ├── DaylightSavingTime.h │ │ │ ├── DetachType.c │ │ │ ├── DetachType.h │ │ │ ├── DrxParameter.c │ │ │ ├── DrxParameter.h │ │ │ ├── EmergencyNumberList.c │ │ │ ├── EmergencyNumberList.h │ │ │ ├── EmmCause.c │ │ │ ├── EmmCause.h │ │ │ ├── EpsAttachResult.c │ │ │ ├── EpsAttachResult.h │ │ │ ├── EpsAttachType.c │ │ │ ├── EpsAttachType.h │ │ │ ├── EpsBearerContextStatus.c │ │ │ ├── EpsBearerContextStatus.h │ │ │ ├── EpsBearerIdentity.c │ │ │ ├── EpsBearerIdentity.h │ │ │ ├── EpsMobileIdentity.c │ │ │ ├── EpsMobileIdentity.h │ │ │ ├── EpsNetworkFeatureSupport.c │ │ │ ├── EpsNetworkFeatureSupport.h │ │ │ ├── EpsQualityOfService.c │ │ │ ├── EpsQualityOfService.h │ │ │ ├── EpsUpdateResult.c │ │ │ ├── EpsUpdateResult.h │ │ │ ├── EpsUpdateType.c │ │ │ ├── EpsUpdateType.h │ │ │ ├── EsmCause.c │ │ │ ├── EsmCause.h │ │ │ ├── EsmInformationTransferFlag.c │ │ │ ├── EsmInformationTransferFlag.h │ │ │ ├── EsmMessageContainer.c │ │ │ ├── EsmMessageContainer.h │ │ │ ├── GprsTimer.c │ │ │ ├── GprsTimer.h │ │ │ ├── GutiType.c │ │ │ ├── GutiType.h │ │ │ ├── IdentityType2.c │ │ │ ├── IdentityType2.h │ │ │ ├── ImeisvRequest.c │ │ │ ├── ImeisvRequest.h │ │ │ ├── KsiAndSequenceNumber.c │ │ │ ├── KsiAndSequenceNumber.h │ │ │ ├── LcsClientIdentity.c │ │ │ ├── LcsClientIdentity.h │ │ │ ├── LcsIndicator.c │ │ │ ├── LcsIndicator.h │ │ │ ├── LinkedEpsBearerIdentity.c │ │ │ ├── LinkedEpsBearerIdentity.h │ │ │ ├── LlcServiceAccessPointIdentifier.c │ │ │ ├── LlcServiceAccessPointIdentifier.h │ │ │ ├── LocationAreaIdentification.c │ │ │ ├── LocationAreaIdentification.h │ │ │ ├── Makefile │ │ │ ├── MessageType.c │ │ │ ├── MessageType.h │ │ │ ├── MobileIdentity.c │ │ │ ├── MobileIdentity.h │ │ │ ├── MobileStationClassmark2.c │ │ │ ├── MobileStationClassmark2.h │ │ │ ├── MobileStationClassmark3.c │ │ │ ├── MobileStationClassmark3.h │ │ │ ├── MsNetworkCapability.c │ │ │ ├── MsNetworkCapability.h │ │ │ ├── MsNetworkFeatureSupport.c │ │ │ ├── MsNetworkFeatureSupport.h │ │ │ ├── NasKeySetIdentifier.c │ │ │ ├── NasKeySetIdentifier.h │ │ │ ├── NasMessageContainer.c │ │ │ ├── NasMessageContainer.h │ │ │ ├── NasRequestType.c │ │ │ ├── NasRequestType.h │ │ │ ├── NasSecurityAlgorithms.c │ │ │ ├── NasSecurityAlgorithms.h │ │ │ ├── NetworkName.c │ │ │ ├── NetworkName.h │ │ │ ├── Nonce.c │ │ │ ├── Nonce.h │ │ │ ├── PTmsiSignature.c │ │ │ ├── PTmsiSignature.h │ │ │ ├── PacketFlowIdentifier.c │ │ │ ├── PacketFlowIdentifier.h │ │ │ ├── PagingIdentity.c │ │ │ ├── PagingIdentity.h │ │ │ ├── PdnAddress.c │ │ │ ├── PdnAddress.h │ │ │ ├── PdnType.c │ │ │ ├── PdnType.h │ │ │ ├── PlmnList.c │ │ │ ├── PlmnList.h │ │ │ ├── ProcedureTransactionIdentity.c │ │ │ ├── ProcedureTransactionIdentity.h │ │ │ ├── ProtocolConfigurationOptions.c │ │ │ ├── ProtocolConfigurationOptions.h │ │ │ ├── ProtocolDiscriminator.c │ │ │ ├── ProtocolDiscriminator.h │ │ │ ├── QualityOfService.c │ │ │ ├── QualityOfService.h │ │ │ ├── RadioPriority.c │ │ │ ├── RadioPriority.h │ │ │ ├── SecurityHeaderType.c │ │ │ ├── SecurityHeaderType.h │ │ │ ├── ServiceType.c │ │ │ ├── ServiceType.h │ │ │ ├── ShortMac.c │ │ │ ├── ShortMac.h │ │ │ ├── SsCode.c │ │ │ ├── SsCode.h │ │ │ ├── SupportedCodecList.c │ │ │ ├── SupportedCodecList.h │ │ │ ├── TimeZone.c │ │ │ ├── TimeZone.h │ │ │ ├── TimeZoneAndTime.c │ │ │ ├── TimeZoneAndTime.h │ │ │ ├── TmsiStatus.c │ │ │ ├── TmsiStatus.h │ │ │ ├── TrackingAreaIdentity.c │ │ │ ├── TrackingAreaIdentity.h │ │ │ ├── TrackingAreaIdentityList.c │ │ │ ├── TrackingAreaIdentityList.h │ │ │ ├── TrafficFlowAggregateDescription.c │ │ │ ├── TrafficFlowAggregateDescription.h │ │ │ ├── TrafficFlowTemplate.c │ │ │ ├── TrafficFlowTemplate.h │ │ │ ├── TransactionIdentifier.c │ │ │ ├── TransactionIdentifier.h │ │ │ ├── UeNetworkCapability.c │ │ │ ├── UeNetworkCapability.h │ │ │ ├── UeRadioCapabilityInformationUpdateNeeded.c │ │ │ ├── UeRadioCapabilityInformationUpdateNeeded.h │ │ │ ├── UeSecurityCapability.c │ │ │ ├── UeSecurityCapability.h │ │ │ ├── VoiceDomainPreferenceAndUeUsageSetting.c │ │ │ └── VoiceDomainPreferenceAndUeUsageSetting.h │ │ ├── UTIL │ │ │ ├── COPYING │ │ │ ├── Makefile │ │ │ ├── OctetString.c │ │ │ ├── OctetString.h │ │ │ ├── TLVDecoder.c │ │ │ ├── TLVDecoder.h │ │ │ ├── TLVEncoder.c │ │ │ ├── TLVEncoder.h │ │ │ ├── device.c │ │ │ ├── device.h │ │ │ ├── memory.c │ │ │ ├── memory.h │ │ │ ├── nas_log.c │ │ │ ├── nas_log.h │ │ │ ├── nas_timer.c │ │ │ ├── nas_timer.h │ │ │ ├── parser.c │ │ │ ├── parser.h │ │ │ ├── socket.c │ │ │ ├── socket.h │ │ │ ├── stty.c │ │ │ └── tst │ │ │ │ ├── Makefile │ │ │ │ ├── timer.c │ │ │ │ └── timer_debug.txt │ │ ├── commonDef.h │ │ ├── networkDef.h │ │ ├── securityDef.h │ │ └── userDef.h │ ├── COPYING │ ├── MME │ │ ├── API │ │ │ └── MME │ │ │ │ ├── COPYING │ │ │ │ ├── Makefile │ │ │ │ ├── mme_api.c │ │ │ │ └── mme_api.h │ │ ├── EMM │ │ │ ├── Attach.c │ │ │ ├── Authentication.c │ │ │ ├── COPYING │ │ │ ├── Detach.c │ │ │ ├── EmmCommon.c │ │ │ ├── EmmCommon.h │ │ │ ├── EmmStatusHdl.c │ │ │ ├── Identification.c │ │ │ ├── IdleMode.c │ │ │ ├── IdleMode.h │ │ │ ├── LowerLayer.c │ │ │ ├── LowerLayer.h │ │ │ ├── Makefile │ │ │ ├── SAP │ │ │ │ ├── COPYING │ │ │ │ ├── EmmCommonProcedureInitiated.c │ │ │ │ ├── EmmDeregistered.c │ │ │ │ ├── EmmDeregisteredAttachNeeded.c │ │ │ │ ├── EmmDeregisteredAttemptingToAttach.c │ │ │ │ ├── EmmDeregisteredInitiated.c │ │ │ │ ├── EmmDeregisteredLimitedService.c │ │ │ │ ├── EmmDeregisteredNoCellAvailable.c │ │ │ │ ├── EmmDeregisteredNoImsi.c │ │ │ │ ├── EmmDeregisteredNormalService.c │ │ │ │ ├── EmmDeregisteredPlmnSearch.c │ │ │ │ ├── EmmNull.c │ │ │ │ ├── EmmRegistered.c │ │ │ │ ├── EmmRegisteredAttemptingToUpdate.c │ │ │ │ ├── EmmRegisteredImsiDetachInitiated.c │ │ │ │ ├── EmmRegisteredInitiated.c │ │ │ │ ├── EmmRegisteredLimitedService.c │ │ │ │ ├── EmmRegisteredNoCellAvailable.c │ │ │ │ ├── EmmRegisteredNormalService.c │ │ │ │ ├── EmmRegisteredPlmnSearch.c │ │ │ │ ├── EmmRegisteredUpdateNeeded.c │ │ │ │ ├── EmmServiceRequestInitiated.c │ │ │ │ ├── EmmTrackingAreaUpdatingInitiated.c │ │ │ │ ├── Makefile │ │ │ │ ├── emm_as.c │ │ │ │ ├── emm_as.h │ │ │ │ ├── emm_asDef.h │ │ │ │ ├── emm_cn.c │ │ │ │ ├── emm_cn.h │ │ │ │ ├── emm_cnDef.h │ │ │ │ ├── emm_esm.c │ │ │ │ ├── emm_esm.h │ │ │ │ ├── emm_esmDef.h │ │ │ │ ├── emm_fsm.c │ │ │ │ ├── emm_fsm.h │ │ │ │ ├── emm_recv.c │ │ │ │ ├── emm_recv.h │ │ │ │ ├── emm_reg.c │ │ │ │ ├── emm_reg.h │ │ │ │ ├── emm_regDef.h │ │ │ │ ├── emm_sap.c │ │ │ │ ├── emm_sap.h │ │ │ │ ├── emm_send.c │ │ │ │ └── emm_send.h │ │ │ ├── SecurityModeControl.c │ │ │ ├── ServiceRequestHdl.c │ │ │ ├── TrackingAreaUpdate.c │ │ │ ├── emmData.h │ │ │ ├── emm_data_ctx.c │ │ │ ├── emm_main.c │ │ │ ├── emm_main.h │ │ │ └── emm_proc.h │ │ ├── ESM │ │ │ ├── COPYING │ │ │ ├── DedicatedEpsBearerContextActivation.c │ │ │ ├── DefaultEpsBearerContextActivation.c │ │ │ ├── EpsBearerContextDeactivation.c │ │ │ ├── EsmStatusHdl.c │ │ │ ├── Makefile │ │ │ ├── PdnConnectivity.c │ │ │ ├── PdnDisconnect.c │ │ │ ├── SAP │ │ │ │ ├── COPYING │ │ │ │ ├── Makefile │ │ │ │ ├── esm_recv.c │ │ │ │ ├── esm_recv.h │ │ │ │ ├── esm_sap.c │ │ │ │ ├── esm_sap.h │ │ │ │ ├── esm_sapDef.h │ │ │ │ ├── esm_send.c │ │ │ │ └── esm_send.h │ │ │ ├── esmData.h │ │ │ ├── esm_ebr.c │ │ │ ├── esm_ebr.h │ │ │ ├── esm_ebr_context.c │ │ │ ├── esm_ebr_context.h │ │ │ ├── esm_ip.c │ │ │ ├── esm_main.c │ │ │ ├── esm_main.h │ │ │ ├── esm_proc.h │ │ │ ├── esm_pt.c │ │ │ └── esm_pt.h │ │ ├── MMEprocess.c │ │ ├── nas_defs.h │ │ ├── nas_itti_messaging.c │ │ ├── nas_itti_messaging.h │ │ ├── nas_mme_task.c │ │ ├── nas_network.c │ │ ├── nas_network.h │ │ ├── nas_parser.c │ │ ├── nas_parser.h │ │ ├── nas_proc.c │ │ └── nas_proc.h │ ├── TEST │ │ ├── AS_SIMULATOR │ │ │ ├── COPYING │ │ │ ├── Makefile │ │ │ ├── as_data.c │ │ │ ├── as_data.h │ │ │ ├── as_process.c │ │ │ ├── as_process.h │ │ │ ├── as_simulator.c │ │ │ ├── as_simulator_parser.c │ │ │ ├── as_simulator_parser.h │ │ │ ├── nas_data.c │ │ │ ├── nas_data.h │ │ │ ├── nas_process.c │ │ │ └── nas_process.h │ │ ├── COPYING │ │ ├── MSC │ │ │ ├── ActivatePDN.png │ │ │ ├── AuthenticationReject.png │ │ │ ├── COPYING │ │ │ ├── DeactivatePDN.png │ │ │ ├── InitialAttach.png │ │ │ ├── InitialAttachReject.png │ │ │ ├── NomalDetach.png │ │ │ ├── README │ │ │ ├── SwitchOffDetach.png │ │ │ ├── msc_gen.py │ │ │ └── mscgen │ │ ├── NETWORK │ │ │ ├── COPYING │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── network_parser.c │ │ │ ├── network_parser.h │ │ │ └── network_simulator.c │ │ └── USER │ │ │ ├── COPYING │ │ │ ├── Makefile │ │ │ ├── user_parser.c │ │ │ ├── user_parser.h │ │ │ └── user_simulator.c │ ├── TOOLS │ │ ├── COPYING │ │ ├── Makefile │ │ ├── network.h │ │ ├── ue_data.c │ │ └── usim_data.c │ └── UE │ │ ├── API │ │ ├── USER │ │ │ ├── COPYING │ │ │ ├── Makefile │ │ │ ├── at_command.c │ │ │ ├── at_command.h │ │ │ ├── at_error.c │ │ │ ├── at_error.h │ │ │ ├── at_response.c │ │ │ ├── at_response.h │ │ │ ├── tst │ │ │ │ ├── Makefile │ │ │ │ ├── at_parser.c │ │ │ │ ├── at_parser.in │ │ │ │ ├── at_parser.in.bis │ │ │ │ ├── at_parser.out │ │ │ │ ├── at_parser.out.bis │ │ │ │ └── smartcom.txt │ │ │ ├── user_api.c │ │ │ ├── user_api.h │ │ │ ├── user_indication.c │ │ │ └── user_indication.h │ │ └── USIM │ │ │ ├── COPYING │ │ │ ├── Makefile │ │ │ ├── aka_functions.c │ │ │ ├── aka_functions.h │ │ │ ├── usim_api.c │ │ │ └── usim_api.h │ │ ├── EMM │ │ ├── Attach.c │ │ ├── Authentication.c │ │ ├── Detach.c │ │ ├── EmmStatusHdl.c │ │ ├── Identification.c │ │ ├── IdleMode.c │ │ ├── IdleMode.h │ │ ├── LowerLayer.c │ │ ├── LowerLayer.h │ │ ├── SAP │ │ │ ├── COPYING │ │ │ ├── EmmDeregistered.c │ │ │ ├── EmmDeregisteredAttachNeeded.c │ │ │ ├── EmmDeregisteredAttemptingToAttach.c │ │ │ ├── EmmDeregisteredInitiated.c │ │ │ ├── EmmDeregisteredLimitedService.c │ │ │ ├── EmmDeregisteredNoCellAvailable.c │ │ │ ├── EmmDeregisteredNoImsi.c │ │ │ ├── EmmDeregisteredNormalService.c │ │ │ ├── EmmDeregisteredPlmnSearch.c │ │ │ ├── EmmNull.c │ │ │ ├── EmmRegistered.c │ │ │ ├── EmmRegisteredAttemptingToUpdate.c │ │ │ ├── EmmRegisteredImsiDetachInitiated.c │ │ │ ├── EmmRegisteredInitiated.c │ │ │ ├── EmmRegisteredLimitedService.c │ │ │ ├── EmmRegisteredNoCellAvailable.c │ │ │ ├── EmmRegisteredNormalService.c │ │ │ ├── EmmRegisteredPlmnSearch.c │ │ │ ├── EmmRegisteredUpdateNeeded.c │ │ │ ├── EmmServiceRequestInitiated.c │ │ │ ├── EmmTrackingAreaUpdatingInitiated.c │ │ │ ├── emm_as.c │ │ │ ├── emm_as.h │ │ │ ├── emm_asDef.h │ │ │ ├── emm_esm.c │ │ │ ├── emm_esm.h │ │ │ ├── emm_esmDef.h │ │ │ ├── emm_fsm.c │ │ │ ├── emm_fsm.h │ │ │ ├── emm_recv.c │ │ │ ├── emm_recv.h │ │ │ ├── emm_reg.c │ │ │ ├── emm_reg.h │ │ │ ├── emm_regDef.h │ │ │ ├── emm_sap.c │ │ │ ├── emm_sap.h │ │ │ ├── emm_send.c │ │ │ └── emm_send.h │ │ ├── SecurityModeControl.c │ │ ├── ServiceRequestHdl.c │ │ ├── TrackingAreaUpdate.c │ │ ├── emmData.h │ │ ├── emm_main.c │ │ ├── emm_main.h │ │ └── emm_proc.h │ │ ├── ESM │ │ ├── DedicatedEpsBearerContextActivation.c │ │ ├── DefaultEpsBearerContextActivation.c │ │ ├── EpsBearerContextDeactivation.c │ │ ├── EsmStatusHdl.c │ │ ├── PdnConnectivity.c │ │ ├── PdnDisconnect.c │ │ ├── SAP │ │ │ ├── COPYING │ │ │ ├── esm_recv.c │ │ │ ├── esm_recv.h │ │ │ ├── esm_sap.c │ │ │ ├── esm_sap.h │ │ │ ├── esm_sapDef.h │ │ │ ├── esm_send.c │ │ │ └── esm_send.h │ │ ├── esmData.h │ │ ├── esm_ebr.c │ │ ├── esm_ebr.h │ │ ├── esm_ebr_context.c │ │ ├── esm_ebr_context.h │ │ ├── esm_ip.c │ │ ├── esm_main.c │ │ ├── esm_main.h │ │ ├── esm_proc.h │ │ ├── esm_pt.c │ │ └── esm_pt.h │ │ ├── UEprocess.c │ │ ├── nas_itti_messaging.c │ │ ├── nas_itti_messaging.h │ │ ├── nas_network.c │ │ ├── nas_network.h │ │ ├── nas_parser.c │ │ ├── nas_parser.h │ │ ├── nas_proc.c │ │ ├── nas_proc.h │ │ ├── nas_ue_task.c │ │ ├── nas_user.c │ │ └── nas_user.h ├── NEWS ├── OAISIM_MME │ ├── COPYING │ ├── Makefile.am │ ├── oai_mme_log.c │ ├── oaisim_mme.c │ └── oaisim_mme.h ├── OAI_EPC │ ├── COPYING │ ├── Makefile.am │ ├── oai_epc.c │ ├── oai_epc.h │ └── oai_epc_log.c ├── OAI_SGW │ ├── COPYING │ ├── Makefile.am │ ├── oai_sgw.c │ ├── oai_sgw.h │ └── oai_sgw_log.c ├── OPENAIRHSS │ ├── AUTHORS │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── access_restriction │ │ ├── COPYING │ │ ├── Makefile.am │ │ ├── access_restriction.c │ │ └── access_restriction.h │ ├── auc │ │ ├── COPYING │ │ ├── Makefile.am │ │ ├── auc.h │ │ ├── fx.c │ │ ├── kdf.c │ │ ├── random.c │ │ ├── rijndael.c │ │ └── sequence_number.c │ ├── autogen.sh │ ├── conf │ │ ├── COPYING │ │ ├── demoCA │ │ │ └── COPYING │ │ ├── hss.conf.in │ │ └── make_certs.sh │ ├── configure.ac │ ├── db │ │ ├── COPYING │ │ ├── Makefile.am │ │ ├── db_connector.c │ │ ├── db_epc_equipment.c │ │ ├── db_proto.h │ │ ├── db_subscription_data.c │ │ ├── oai_db.sql │ │ └── pft_db.sql │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── dirs │ │ ├── files │ │ ├── openair-hss.install │ │ └── rules │ ├── hss_main.c │ ├── s6a │ │ ├── COPYING │ │ ├── Makefile.am │ │ ├── s6a_auth_info.c │ │ ├── s6a_common.c │ │ ├── s6a_error.c │ │ ├── s6a_fd.c │ │ ├── s6a_in_addr.c │ │ ├── s6a_peers.c │ │ ├── s6a_proto.h │ │ ├── s6a_purge_ue.c │ │ ├── s6a_subscription_data.c │ │ ├── s6a_supported_features.c │ │ ├── s6a_supported_features.h │ │ └── s6a_up_loc.c │ ├── scripts │ │ ├── COPYING │ │ └── install_hss.sh │ ├── tests │ │ ├── COPYING │ │ ├── Makefile.am │ │ ├── test_fd.c │ │ ├── test_fd.h │ │ ├── test_kdf.c │ │ ├── test_security.c │ │ ├── test_security_f1.c │ │ ├── test_security_f2_f3_f5.c │ │ ├── test_security_f4_f5star.c │ │ ├── test_security_kasme.c │ │ ├── test_utils.c │ │ ├── test_utils.h │ │ └── up_loc_test.c │ └── utils │ │ ├── COPYING │ │ ├── Makefile.am │ │ ├── conversion.c │ │ ├── conversion.h │ │ ├── hss_config.c │ │ ├── hss_config.h │ │ ├── hss_parser.y │ │ ├── hss_scanner.l │ │ └── queue.h ├── README ├── S11 │ ├── COPYING │ ├── Makefile.am │ ├── s11_common.c │ ├── s11_common.h │ ├── s11_ie_formatter.c │ ├── s11_ie_formatter.h │ ├── s11_mme.h │ ├── s11_mme_peer_manager.c │ ├── s11_mme_session_manager.c │ ├── s11_mme_session_manager.h │ ├── s11_mme_task.c │ ├── s11_sgw.c │ ├── s11_sgw.h │ ├── s11_sgw_bearer_manager.c │ ├── s11_sgw_bearer_manager.h │ ├── s11_sgw_session_manager.c │ └── s11_sgw_session_manager.h ├── S1AP │ ├── COPYING │ ├── MESSAGES │ │ ├── ASN1 │ │ │ ├── COPYING │ │ │ ├── Makefile.am │ │ │ ├── R10.5 │ │ │ │ ├── COPYING │ │ │ │ ├── S1AP-CommonDataTypes.asn │ │ │ │ ├── S1AP-Constants.asn │ │ │ │ ├── S1AP-Containers.asn │ │ │ │ ├── S1AP-IEs.asn │ │ │ │ ├── S1AP-PDU-Contents.asn │ │ │ │ ├── S1AP-PDU-Descriptions.asn │ │ │ │ └── S1AP-PDU.asn │ │ │ ├── R8.10 │ │ │ │ ├── COPYING │ │ │ │ ├── S1AP-CommonDataTypes.asn │ │ │ │ ├── S1AP-Constants.asn │ │ │ │ ├── S1AP-IEs.asn │ │ │ │ ├── S1AP-PDU-Contents.asn │ │ │ │ └── S1AP-PDU.asn │ │ │ ├── R9.8 │ │ │ │ ├── COPYING │ │ │ │ ├── S1AP-CommonDataTypes.asn │ │ │ │ ├── S1AP-Constants.asn │ │ │ │ ├── S1AP-Containers.asn │ │ │ │ ├── S1AP-IEs.asn │ │ │ │ ├── S1AP-PDU-Contents.asn │ │ │ │ ├── S1AP-PDU-Descriptions.asn │ │ │ │ └── S1AP-PDU.asn │ │ │ ├── README │ │ │ ├── asn1cpatch.p0 │ │ │ ├── asn1cpatch_2.p0 │ │ │ └── asn1tostruct.py │ │ ├── COPYING │ │ ├── Makefile.am │ │ └── Makefile.inc │ ├── Makefile.am │ ├── Makefile.eNB │ ├── Makefile.inc │ ├── s1ap_common.c │ ├── s1ap_common.h │ ├── s1ap_eNB.c │ ├── s1ap_eNB.h │ ├── s1ap_eNB_context_management_procedures.c │ ├── s1ap_eNB_context_management_procedures.h │ ├── s1ap_eNB_decoder.c │ ├── s1ap_eNB_decoder.h │ ├── s1ap_eNB_default_values.h │ ├── s1ap_eNB_defs.h │ ├── s1ap_eNB_encoder.c │ ├── s1ap_eNB_encoder.h │ ├── s1ap_eNB_handlers.c │ ├── s1ap_eNB_handlers.h │ ├── s1ap_eNB_itti_messaging.c │ ├── s1ap_eNB_itti_messaging.h │ ├── s1ap_eNB_management_procedures.c │ ├── s1ap_eNB_management_procedures.h │ ├── s1ap_eNB_nas_procedures.c │ ├── s1ap_eNB_nas_procedures.h │ ├── s1ap_eNB_nnsf.c │ ├── s1ap_eNB_nnsf.h │ ├── s1ap_eNB_overload.c │ ├── s1ap_eNB_overload.h │ ├── s1ap_eNB_trace.c │ ├── s1ap_eNB_trace.h │ ├── s1ap_eNB_ue_context.c │ ├── s1ap_eNB_ue_context.h │ ├── s1ap_mme.c │ ├── s1ap_mme.h │ ├── s1ap_mme_decoder.c │ ├── s1ap_mme_decoder.h │ ├── s1ap_mme_encoder.c │ ├── s1ap_mme_encoder.h │ ├── s1ap_mme_handlers.c │ ├── s1ap_mme_handlers.h │ ├── s1ap_mme_itti_messaging.c │ ├── s1ap_mme_itti_messaging.h │ ├── s1ap_mme_nas_procedures.c │ ├── s1ap_mme_nas_procedures.h │ ├── s1ap_mme_retransmission.c │ ├── s1ap_mme_retransmission.h │ ├── s1ap_mme_ta.c │ └── s1ap_mme_ta.h ├── S6A │ ├── COPYING │ ├── Makefile.am │ ├── freediameter │ │ ├── README.txt │ │ ├── freediameter-1.1.5.patch │ │ ├── freediameter-1.2.0.patch │ │ ├── install_freediameter.sh │ │ ├── make_certs.sh │ │ └── s6a.conf │ ├── s6a_apn_conf.c │ ├── s6a_auth_info.c │ ├── s6a_defs.h │ ├── s6a_dict.c │ ├── s6a_error.c │ ├── s6a_messages.h │ ├── s6a_peer.c │ ├── s6a_subscription_data.c │ ├── s6a_task.c │ └── s6a_up_loc.c ├── SCTP │ ├── COPYING │ ├── Makefile.am │ ├── Makefile.eNB │ ├── sctp_common.c │ ├── sctp_common.h │ ├── sctp_default_values.h │ ├── sctp_eNB_defs.h │ ├── sctp_eNB_itti_messaging.c │ ├── sctp_eNB_itti_messaging.h │ ├── sctp_eNB_task.c │ ├── sctp_eNB_task.h │ ├── sctp_itti_messaging.c │ ├── sctp_itti_messaging.h │ ├── sctp_primitives_client.c │ ├── sctp_primitives_client.h │ ├── sctp_primitives_server.c │ └── sctp_primitives_server.h ├── SECU │ ├── COPYING │ ├── Makefile.am │ ├── Makefile.eNB │ ├── kdf.c │ ├── key_nas_deriver.c │ ├── key_nas_encryption.c │ ├── nas_stream_eea1.c │ ├── nas_stream_eea2.c │ ├── nas_stream_eia1.c │ ├── nas_stream_eia2.c │ ├── rijndael.c │ ├── rijndael.h │ ├── secu_defs.h │ ├── snow3g.c │ └── snow3g.h ├── SGW-LITE │ ├── COPYING │ ├── Makefile.am │ ├── pgw_lite_paa.c │ ├── pgw_lite_paa.h │ ├── s11_causes.c │ ├── s11_causes.h │ ├── sgw_lite.h │ ├── sgw_lite_context_manager.c │ ├── sgw_lite_context_manager.h │ ├── sgw_lite_defs.h │ ├── sgw_lite_handlers.c │ ├── sgw_lite_handlers.h │ ├── sgw_lite_ie_defs.h │ ├── sgw_lite_task.c │ ├── spgw_config.c │ └── spgw_config.h ├── TEST │ ├── COPYING │ ├── Makefile.am │ ├── mme_test_s1_generate_scenario_from_pcap │ ├── oaisim_mme_client_test.c │ ├── oaisim_mme_itti_test.c │ ├── oaisim_mme_list_benchmark.c │ ├── oaisim_mme_s1ap_test.c │ ├── oaisim_mme_sctp_test.c │ ├── oaisim_mme_test_s1c.c │ ├── oaisim_mme_test_s1c.h │ ├── oaisim_mme_test_s1c_s1ap.c │ ├── oaisim_mme_test_s1c_s1ap.h │ ├── oaisim_mme_test_s1c_scenario.c │ ├── oaisim_mme_test_s1c_scenario.h │ ├── oaisim_mme_test_s1c_scenario1.c │ ├── test_aes128_cmac_encrypt.c │ ├── test_aes128_ctr_decrypt.c │ ├── test_aes128_ctr_encrypt.c │ ├── test_kdf.c │ ├── test_s1ap.c │ ├── test_secu.c │ ├── test_secu_kenb.c │ ├── test_secu_knas.c │ ├── test_secu_knas_encrypt_eea1.c │ ├── test_secu_knas_encrypt_eea2.c │ ├── test_secu_knas_encrypt_eia1.c │ ├── test_secu_knas_encrypt_eia2.c │ ├── test_secu_knas_stream_int.c │ ├── test_util.c │ └── test_util.h ├── UDP │ ├── COPYING │ ├── Makefile.am │ ├── Makefile.eNB │ ├── udp_eNB_task.c │ ├── udp_eNB_task.h │ ├── udp_primitives_server.c │ └── udp_primitives_server.h ├── UTILS │ ├── CONF │ │ └── COPYING │ ├── COPYING │ ├── HASHTABLE │ │ ├── COPYING │ │ ├── Makefile.am │ │ ├── Makefile.eNB │ │ ├── hashtable.c │ │ ├── hashtable.h │ │ ├── obj_hashtable.c │ │ └── obj_hashtable.h │ ├── Makefile.am │ ├── conversions.c │ ├── conversions.h │ ├── enum_string.c │ ├── enum_string.h │ ├── log.c │ ├── log.h │ ├── mcc_mnc_itu.c │ ├── mcc_mnc_itu.h │ ├── mme_config.c │ ├── mme_config.h │ ├── mme_default_values.h │ ├── mme_parser.y │ ├── mme_scanner.l │ ├── queue.h │ └── tree.h ├── autogen.sh ├── configure.ac ├── cppcheck.sh └── valgrind.sh ├── openair1 ├── COPYING ├── MAC_INTERFACE │ ├── COPYING │ ├── Makefile.inc │ ├── defs.h │ ├── extern.h │ ├── init.c │ ├── register.c │ └── vars.h ├── Makefile ├── PHY │ ├── CODING │ │ ├── 3gpplte.c │ │ ├── 3gpplte_sse.c │ │ ├── 3gpplte_turbo_decoder.c │ │ ├── 3gpplte_turbo_decoder_sse.c │ │ ├── 3gpplte_turbo_decoder_sse_16bit.c │ │ ├── 3gpplte_turbo_decoder_sse_8bit.c │ │ ├── COPYING │ │ ├── Makefile │ │ ├── Makefile.arm │ │ ├── README.txt │ │ ├── TESTBENCH │ │ │ ├── COPYING │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ ├── ltetest.c │ │ │ ├── pdcch_test.c │ │ │ └── viterbi_test.c │ │ ├── ccoding_byte.c │ │ ├── ccoding_byte_lte.c │ │ ├── crc_byte.c │ │ ├── defs.h │ │ ├── extern.h │ │ ├── extern_3GPPinterleaver.h │ │ ├── lte_interleaver.h │ │ ├── lte_interleaver2.h │ │ ├── lte_interleaver_inline.h │ │ ├── lte_rate_matching.c │ │ ├── lte_segmentation.c │ │ ├── lte_tf.m │ │ ├── rate_matching.c │ │ ├── scrambler.h │ │ ├── vars.h │ │ ├── viterbi.c │ │ └── viterbi_lte.c │ ├── COPYING │ ├── INIT │ │ ├── COPYING │ │ ├── README.txt │ │ ├── defs.h │ │ ├── extern.h │ │ ├── init_top.c │ │ ├── lte_init.c │ │ ├── lte_parms.c │ │ └── vars.h │ ├── LTE_ESTIMATION │ │ ├── COPYING │ │ ├── README.txt │ │ ├── adjust_gain.c │ │ ├── defs.h │ │ ├── extern.h │ │ ├── filt96_32.h │ │ ├── freq_domain_filters.m │ │ ├── freq_equalization.c │ │ ├── lte_adjust_sync.c │ │ ├── lte_dl_channel_estimation.c │ │ ├── lte_dl_channel_estimation_emos.c │ │ ├── lte_dl_mbsfn_channel_estimation.c │ │ ├── lte_eNB_measurements.c │ │ ├── lte_est_freq_offset.c │ │ ├── lte_sync_time.c │ │ ├── lte_sync_timefreq.c │ │ ├── lte_sync_timefreq.m │ │ ├── lte_ue_measurements.c │ │ ├── lte_ul_channel_estimation.c │ │ ├── pss6144.h │ │ └── vars.h │ ├── LTE_REFSIG │ │ ├── COPYING │ │ ├── README.txt │ │ ├── defs.h │ │ ├── gen_mod_table.m │ │ ├── lte_dl_cell_spec.c │ │ ├── lte_dl_mbsfn.c │ │ ├── lte_dl_uespec.c │ │ ├── lte_gold.c │ │ ├── lte_gold_mbsfn.c │ │ ├── lte_ul.m │ │ ├── lte_ul_ref.c │ │ ├── mod_table.h │ │ ├── primary_synch.h │ │ └── primary_synch.m │ ├── LTE_TRANSPORT │ │ ├── COPYING │ │ ├── README.txt │ │ ├── dci.c │ │ ├── dci.h │ │ ├── dci_tools.c │ │ ├── defs.h │ │ ├── dlsch_coding.c │ │ ├── dlsch_decoding.c │ │ ├── dlsch_demodulation.c │ │ ├── dlsch_llr_computation.c │ │ ├── dlsch_modulation.c │ │ ├── dlsch_scrambling.c │ │ ├── dlsch_tbs.h │ │ ├── dlsch_tbs_full.h │ │ ├── drs_modulation.c │ │ ├── extern.h │ │ ├── group_hopping.c │ │ ├── initial_sync.c │ │ ├── lte_mcs.c │ │ ├── mcs_tbs_tools.h │ │ ├── pbch.c │ │ ├── pcfich.c │ │ ├── phich.c │ │ ├── pilots.c │ │ ├── pilots_mbsfn.c │ │ ├── pmch.c │ │ ├── power_control.c │ │ ├── prach.c │ │ ├── prach.h │ │ ├── print_stats.c │ │ ├── proto.h │ │ ├── pss.c │ │ ├── pucch.c │ │ ├── rar_tools.c │ │ ├── srs_modulation.c │ │ ├── sss.c │ │ ├── sss.h │ │ ├── sss_gen.m │ │ ├── uci.h │ │ ├── uci_tools.c │ │ ├── ulsch_coding.c │ │ ├── ulsch_decoding.c │ │ ├── ulsch_demodulation.c │ │ ├── ulsch_modulation.c │ │ ├── vars.h │ │ └── vrb_maps.m │ ├── MODULATION │ │ ├── COPYING │ │ ├── defs.h │ │ ├── extern.h │ │ ├── gen_7_5_kHz.m │ │ ├── kHz_7_5.h │ │ ├── ofdm_mod.c │ │ ├── prach625Hz.h │ │ ├── slot_fep.c │ │ ├── slot_fep_mbsfn.c │ │ ├── slot_fep_ul.c │ │ ├── ul_7_5_kHz.c │ │ └── vars.h │ ├── Makefile.inc │ ├── TOOLS │ │ ├── 8bit_rxdemux.c │ │ ├── 8bit_txmux.c │ │ ├── COPYING │ │ ├── Makefile │ │ ├── angle.c │ │ ├── cadd_sv.c │ │ ├── cadd_vv.c │ │ ├── cdot_prod.c │ │ ├── cmult_mm.c │ │ ├── cmult_sv.c │ │ ├── cmult_vv.c │ │ ├── cmult_vvh.c │ │ ├── costable.h │ │ ├── dB_routines.c │ │ ├── dB_routines.h │ │ ├── defs.h │ │ ├── extern.h │ │ ├── file_output.c │ │ ├── invSqrt.c │ │ ├── log2_approx.c │ │ ├── lte_dfts.c │ │ ├── lte_phy_scope.c │ │ ├── lte_phy_scope.h │ │ ├── lut.c │ │ ├── memory_routines.c │ │ ├── signal_energy.c │ │ ├── smbv.c │ │ ├── smbv.h │ │ ├── sqrt.c │ │ ├── time_meas.c │ │ ├── time_meas.h │ │ ├── twiddle12288.h │ │ ├── twiddle1536.h │ │ ├── twiddle24576.h │ │ ├── twiddle6144.h │ │ ├── twiddles4096.h │ │ └── vars.h │ ├── defs.h │ ├── extern.h │ ├── impl_defs_lte.h │ ├── impl_defs_top.h │ ├── spec_defs.h │ ├── spec_defs_top.h │ ├── sse_intrin.h │ ├── types.h │ └── vars.h ├── README.TXT ├── SCHED │ ├── COPYING │ ├── Makefile.inc │ ├── defs.h │ ├── extern.h │ ├── phy_procedures_emos.h │ ├── phy_procedures_lte_common.c │ ├── phy_procedures_lte_eNb.c │ ├── phy_procedures_lte_ue.c │ ├── pucch_pc.c │ ├── pusch_pc.c │ ├── rt_compat.h │ └── vars.h └── SIMULATION │ ├── COPYING │ ├── ETH_TRANSPORT │ ├── COPYING │ ├── Makefile.inc │ ├── README.txt │ ├── bypass_session_layer.c │ ├── defs.h │ ├── emu_transport.c │ ├── extern.h │ ├── multicast_link.c │ ├── multicast_link.h │ ├── netlink_init.c │ ├── pgm_link.c │ ├── pgm_link.h │ ├── proto.h │ ├── socket.c │ ├── socket.h │ └── vars.h │ ├── LTE_PHY │ ├── Abstraction │ │ ├── Training │ │ │ ├── IEEEtran.cls │ │ │ ├── bare_adv.tex │ │ │ ├── bare_jrnl.tex │ │ │ ├── bare_jrnl_compsoc.tex │ │ │ ├── create_plots.m │ │ │ ├── delta_BLER_1.m │ │ │ ├── polyfit_beta_training.m │ │ │ ├── polyfit_delta_BLER.m │ │ │ ├── sinr_Eff_Calc.m │ │ │ ├── training_abstraction.m │ │ │ └── training_top_script.m │ │ ├── beta_training_EESM.m │ │ ├── data_collection_mode5.m │ │ ├── data_extraction.m │ │ ├── delta_BLER.m │ │ ├── delta_BLER_1.m │ │ ├── demap_q.m │ │ ├── matFiles │ │ │ ├── 16_16_noMF_lte_Mode5_1.mat │ │ │ ├── 16_16_noMF_lte_Mode5_2.mat │ │ │ ├── 16_16_noMF_lte_Mode5_3.mat │ │ │ ├── 16_16_noMF_lte_Mode5_4.mat │ │ │ ├── 16_16_noMF_lte_Mode5_5.mat │ │ │ ├── 16_4_noMF_lte_Mode5_1.mat │ │ │ ├── 16_4_noMF_lte_Mode5_2.mat │ │ │ ├── 16_4_noMF_lte_Mode5_3.mat │ │ │ ├── 16_4_noMF_lte_Mode5_4.mat │ │ │ ├── 16_4_noMF_lte_Mode5_5.mat │ │ │ ├── 4_16_noMF_lte_Mode5_1.mat │ │ │ ├── 4_16_noMF_lte_Mode5_2.mat │ │ │ ├── 4_16_noMF_lte_Mode5_3.mat │ │ │ ├── 4_16_noMF_lte_Mode5_4.mat │ │ │ ├── 4_16_noMF_lte_Mode5_5.mat │ │ │ ├── QPSK_QPSK_noMF_lte_Mode5_1.mat │ │ │ ├── QPSK_QPSK_noMF_lte_Mode5_2.mat │ │ │ ├── QPSK_QPSK_noMF_lte_Mode5_3.mat │ │ │ ├── QPSK_QPSK_noMF_lte_Mode5_4.mat │ │ │ ├── QPSK_QPSK_noMF_lte_Mode5_5.mat │ │ │ ├── data_mode5_16_16.mat │ │ │ ├── data_mode5_4_4_morerealizations.mat │ │ │ ├── siso_MI_abs_16Qam.mat │ │ │ ├── siso_MI_abs_4Qam.mat │ │ │ └── siso_MI_abs_64Qam.mat │ │ └── opposite_q.m │ ├── BLER_SIMULATIONS │ │ ├── AWGN │ │ │ ├── AWGN_results │ │ │ │ ├── bler_tx1_chan18_nrx1_mcs0.csv │ │ │ │ ├── bler_tx1_chan18_nrx1_mcs1.csv │ │ │ │ ├── bler_tx1_chan18_nrx1_mcs10.csv │ │ │ │ ├── bler_tx1_chan18_nrx1_mcs11.csv │ │ │ │ ├── bler_tx1_chan18_nrx1_mcs12.csv │ │ │ │ ├── bler_tx1_chan18_nrx1_mcs13.csv │ │ │ │ ├── bler_tx1_chan18_nrx1_mcs14.csv │ │ │ │ ├── bler_tx1_chan18_nrx1_mcs15.csv │ │ │ │ ├── bler_tx1_chan18_nrx1_mcs16.csv │ │ │ │ ├── bler_tx1_chan18_nrx1_mcs17.csv │ │ │ │ ├── bler_tx1_chan18_nrx1_mcs18.csv │ │ │ │ ├── bler_tx1_chan18_nrx1_mcs19.csv │ │ │ │ ├── bler_tx1_chan18_nrx1_mcs2.csv │ │ │ │ ├── bler_tx1_chan18_nrx1_mcs20.csv │ │ │ │ ├── bler_tx1_chan18_nrx1_mcs21.csv │ │ │ │ ├── bler_tx1_chan18_nrx1_mcs22.csv │ │ │ │ ├── bler_tx1_chan18_nrx1_mcs23.csv │ │ │ │ ├── bler_tx1_chan18_nrx1_mcs24.csv │ │ │ │ ├── bler_tx1_chan18_nrx1_mcs25.csv │ │ │ │ ├── bler_tx1_chan18_nrx1_mcs26.csv │ │ │ │ ├── bler_tx1_chan18_nrx1_mcs27.csv │ │ │ │ ├── bler_tx1_chan18_nrx1_mcs3.csv │ │ │ │ ├── bler_tx1_chan18_nrx1_mcs4.csv │ │ │ │ ├── bler_tx1_chan18_nrx1_mcs5.csv │ │ │ │ ├── bler_tx1_chan18_nrx1_mcs6.csv │ │ │ │ ├── bler_tx1_chan18_nrx1_mcs7.csv │ │ │ │ ├── bler_tx1_chan18_nrx1_mcs8.csv │ │ │ │ └── bler_tx1_chan18_nrx1_mcs9.csv │ │ │ └── Perf_Curves_Abs │ │ │ │ ├── awgn_bler_tx1_mcs0.csv │ │ │ │ ├── awgn_bler_tx1_mcs1.csv │ │ │ │ ├── awgn_bler_tx1_mcs10.csv │ │ │ │ ├── awgn_bler_tx1_mcs11.csv │ │ │ │ ├── awgn_bler_tx1_mcs12.csv │ │ │ │ ├── awgn_bler_tx1_mcs13.csv │ │ │ │ ├── awgn_bler_tx1_mcs14.csv │ │ │ │ ├── awgn_bler_tx1_mcs15.csv │ │ │ │ ├── awgn_bler_tx1_mcs16.csv │ │ │ │ ├── awgn_bler_tx1_mcs17.csv │ │ │ │ ├── awgn_bler_tx1_mcs18.csv │ │ │ │ ├── awgn_bler_tx1_mcs19.csv │ │ │ │ ├── awgn_bler_tx1_mcs2.csv │ │ │ │ ├── awgn_bler_tx1_mcs20.csv │ │ │ │ ├── awgn_bler_tx1_mcs21.csv │ │ │ │ ├── awgn_bler_tx1_mcs22.csv │ │ │ │ ├── awgn_bler_tx1_mcs23.csv │ │ │ │ ├── awgn_bler_tx1_mcs24.csv │ │ │ │ ├── awgn_bler_tx1_mcs25.csv │ │ │ │ ├── awgn_bler_tx1_mcs26.csv │ │ │ │ ├── awgn_bler_tx1_mcs27.csv │ │ │ │ ├── awgn_bler_tx1_mcs3.csv │ │ │ │ ├── awgn_bler_tx1_mcs4.csv │ │ │ │ ├── awgn_bler_tx1_mcs5.csv │ │ │ │ ├── awgn_bler_tx1_mcs6.csv │ │ │ │ ├── awgn_bler_tx1_mcs7.csv │ │ │ │ ├── awgn_bler_tx1_mcs8.csv │ │ │ │ └── awgn_bler_tx1_mcs9.csv │ │ ├── bler_0.m │ │ ├── bler_100.m │ │ ├── bler_119.m │ │ ├── bler_150.m │ │ ├── bler_200.m │ │ ├── bler_250.m │ │ ├── bler_300.m │ │ ├── bler_350.m │ │ ├── bler_400.m │ │ ├── bler_450.m │ │ ├── bler_500.m │ │ ├── bler_550.m │ │ ├── bler_66.m │ │ ├── bler_80.m │ │ └── eval_results.m │ ├── COPYING │ ├── LTE_Configuration.c │ ├── LTE_Configuration.h │ ├── Makefile │ ├── README.txt │ ├── REFERENCE_DATA │ │ ├── embms.m │ │ ├── embms_20_25.m │ │ ├── oai_embms_r39-1.png │ │ ├── pdcch_20MHz_awgn.m │ │ └── pdsch.txt │ ├── blerCurvesTemplate.tex │ ├── blerSimus.zip │ ├── dlsim.c │ ├── fancyheadings.sty │ ├── framegen.c │ ├── gpib_send.c │ ├── gpib_send.h │ ├── launch_sim.sh │ ├── mat2wv.m │ ├── mbmssim.c │ ├── pbch_awgn.txt │ ├── pbch_awgn_interp.txt │ ├── pbchsim.c │ ├── pbsPhyProcSim.sh │ ├── pdcch_eval_results.m │ ├── pdcchsim.c │ ├── plotTools │ │ ├── p │ │ ├── plotTool.m │ │ ├── plot_channel_PePu.m │ │ ├── plot_channel_SePu.m │ │ ├── plot_channels.m │ │ ├── plot_constellations.m │ │ ├── plot_dl_ce_prec_ul.m │ │ ├── plot_dl_ch_est.m │ │ ├── plot_floating_point_signals.m │ │ ├── plot_srs_ce.m │ │ ├── plot_srs_ce_.m │ │ ├── plot_srs_prec_dl.m │ │ ├── plot_srs_rxF.m │ │ ├── plot_tx_bf.m │ │ └── plot_txdata.m │ ├── prachsim.c │ ├── pucchsignalgegerator.h │ ├── pucchsignalgenerator.c │ ├── pucchsim.c │ ├── scansim.c │ ├── signalanalyzer.c │ ├── signalanalyzer.h │ ├── syncsim.c │ ├── test.c │ ├── ulsignalgenerator.c │ ├── ulsignalgenerator.h │ ├── ulsim.c │ └── ulsim2.c │ ├── Makefile.inc │ ├── RF │ ├── COPYING │ ├── Makefile │ ├── README.txt │ ├── adc.c │ ├── dac.c │ ├── defs.h │ └── rf.c │ └── TOOLS │ ├── COPYING │ ├── abstraction.c │ ├── ch_desc_proto.c │ ├── corr_mat.m │ ├── defs.h │ ├── gauss.c │ ├── llr_quantization.c │ ├── multipath_channel.c │ ├── multipath_tv_channel.c │ ├── random_channel.c │ ├── rangen_double.c │ ├── scm.m │ ├── scm_corrmat.h │ └── taus.c ├── openair2 ├── COMMON │ ├── COPYING │ ├── as_message.h │ ├── commonDef.h │ ├── gtpv1_u_messages_def.h │ ├── gtpv1_u_messages_types.h │ ├── intertask_interface_conf.h │ ├── mac_messages_def.h │ ├── mac_messages_types.h │ ├── mac_primitives.h │ ├── mac_rlc_primitives.h │ ├── mac_rrc_primitives.h │ ├── messages_def.h │ ├── messages_types.h │ ├── nas_messages_def.h │ ├── nas_messages_types.h │ ├── networkDef.h │ ├── openair_defs.h │ ├── openair_types.h │ ├── pdcp_messages_def.h │ ├── pdcp_messages_types.h │ ├── phy_messages_def.h │ ├── phy_messages_types.h │ ├── platform_constants.h │ ├── platform_types.h │ ├── ral_messages_def.h │ ├── ral_messages_types.h │ ├── rlc_messages_def.h │ ├── rlc_messages_types.h │ ├── rrc_messages_def.h │ ├── rrc_messages_types.h │ ├── rrm_config_structs.h │ ├── rrm_constants.h │ ├── rtos_header.h │ ├── s1ap_messages_def.h │ ├── s1ap_messages_types.h │ ├── sctp_messages_def.h │ ├── sctp_messages_types.h │ ├── tasks_def.h │ ├── udp_messages_def.h │ ├── udp_messages_types.h │ ├── x2ap_messages_def.h │ └── x2ap_messages_types.h ├── DOCS │ ├── DOXYGEN │ │ ├── Doxyfile │ │ └── images │ │ │ ├── DLC_arch.png │ │ │ ├── Diapositive6.JPG │ │ │ ├── Framing.png │ │ │ ├── Framing.vsd │ │ │ ├── MAC Services.vsd │ │ │ ├── MAC_Measurements.png │ │ │ ├── MAC_Measurements.vsd │ │ │ ├── MAC_Services.eps │ │ │ ├── MAC_Services.vsd │ │ │ ├── MAC_Services2.eps │ │ │ ├── MAC_Services2.png │ │ │ ├── MAC_Services2.vsd │ │ │ ├── MAC_arch.eps │ │ │ ├── MAC_architecture.JPG │ │ │ ├── OFDM Transmitter.png │ │ │ ├── OFDM Transmitter.vsd │ │ │ ├── PHY_arch.eps │ │ │ ├── PHY_arch.png │ │ │ ├── PHY_arch.vsd │ │ │ ├── QAM modulation.png │ │ │ ├── QAM modulation.vsd │ │ │ ├── QAMmodulation.png │ │ │ ├── Transmission.pdf │ │ │ ├── Transmission.png │ │ │ ├── Transmission.ps │ │ │ ├── cellular_topology.doc │ │ │ ├── cellular_topology.pdf │ │ │ ├── cellular_topology_small.png │ │ │ ├── channel server.png │ │ │ ├── channel server.vsd │ │ │ ├── convolutional.png │ │ │ ├── convolutional.vsd │ │ │ ├── irs_dcf.jpg │ │ │ ├── irs_pcf.jpg │ │ │ ├── layer2_stack.jpg │ │ │ ├── layer2_stack.pdf │ │ │ ├── layer2_stack.png │ │ │ ├── mac_channels.png │ │ │ ├── mac_w3g4f_mac_channels.pdf │ │ │ ├── mac_w3g4f_mac_channels.png │ │ │ ├── mac_w3g4f_mac_channels.vsd │ │ │ ├── mac_wbs.jpg │ │ │ ├── macphynet.eps │ │ │ ├── macphynet.png │ │ │ ├── mesh_frame.pdf │ │ │ ├── mesh_topology.pdf │ │ │ ├── mesh_topology_small.png │ │ │ ├── scrambler.png │ │ │ ├── scrambler.vsd │ │ │ ├── w3g4f_framing.png │ │ │ ├── w3g4f_framing.vsd │ │ │ └── widens_mac_channels.vsd │ ├── Documentation │ │ └── flow.txt │ └── TEMPLATES │ │ ├── CODE │ │ ├── COPYING │ │ ├── Doxyfile │ │ ├── example_doxy.h │ │ └── images │ │ │ ├── arch.eps │ │ │ └── arch.png │ │ └── README │ │ ├── Readme.doxy │ │ └── readme.txt ├── ENB_APP │ ├── Makefile.inc │ ├── enb_app.c │ ├── enb_app.h │ ├── enb_config.c │ └── enb_config.h ├── LAYER2 │ ├── COPYING │ ├── MAC │ │ ├── COPYING │ │ ├── config.c │ │ ├── defs.h │ │ ├── eNB_scheduler.c │ │ ├── eNB_scheduler_RA.c │ │ ├── eNB_scheduler_bch.c │ │ ├── eNB_scheduler_dlsch.c │ │ ├── eNB_scheduler_mch.c │ │ ├── eNB_scheduler_primitives.c │ │ ├── eNB_scheduler_ulsch.c │ │ ├── extern.h │ │ ├── l1_helpers.c │ │ ├── lte_transport_init.c │ │ ├── main.c │ │ ├── openair2_proc.c │ │ ├── pre_processor.c │ │ ├── proto.h │ │ ├── ra_procedures.c │ │ ├── rar_tools.c │ │ ├── ue_procedures.c │ │ └── vars.h │ ├── Makefile │ ├── Makefile.inc │ ├── PDCP_v10.1.0 │ │ ├── COPYING │ │ ├── pdcp.c │ │ ├── pdcp.h │ │ ├── pdcp_control_primitive.c │ │ ├── pdcp_control_primitives_proto_extern.h │ │ ├── pdcp_fifo.c │ │ ├── pdcp_netlink.c │ │ ├── pdcp_primitives.c │ │ ├── pdcp_primitives.h │ │ ├── pdcp_proto_extern.h │ │ ├── pdcp_security.c │ │ ├── pdcp_sequence_manager.c │ │ ├── pdcp_sequence_manager.h │ │ ├── pdcp_thread.c │ │ ├── pdcp_util.c │ │ └── pdcp_util.h │ ├── RLC │ │ ├── AM_v9.3.0 │ │ │ ├── COPYING │ │ │ ├── rlc_am.c │ │ │ ├── rlc_am.h │ │ │ ├── rlc_am_constants.h │ │ │ ├── rlc_am_entity.h │ │ │ ├── rlc_am_in_sdu.c │ │ │ ├── rlc_am_in_sdu.h │ │ │ ├── rlc_am_init.c │ │ │ ├── rlc_am_init.h │ │ │ ├── rlc_am_proto_extern.h │ │ │ ├── rlc_am_reassembly.c │ │ │ ├── rlc_am_reassembly.h │ │ │ ├── rlc_am_receiver.c │ │ │ ├── rlc_am_receiver.h │ │ │ ├── rlc_am_retransmit.c │ │ │ ├── rlc_am_retransmit.h │ │ │ ├── rlc_am_rx_list.c │ │ │ ├── rlc_am_rx_list.h │ │ │ ├── rlc_am_segment.c │ │ │ ├── rlc_am_segment.h │ │ │ ├── rlc_am_segments_holes.c │ │ │ ├── rlc_am_segments_holes.h │ │ │ ├── rlc_am_status_report.c │ │ │ ├── rlc_am_status_report.h │ │ │ ├── rlc_am_structs.h │ │ │ ├── rlc_am_test.c │ │ │ ├── rlc_am_test.h │ │ │ ├── rlc_am_timer_poll_retransmit.c │ │ │ ├── rlc_am_timer_poll_retransmit.h │ │ │ ├── rlc_am_timer_reordering.c │ │ │ ├── rlc_am_timer_reordering.h │ │ │ ├── rlc_am_timer_status_prohibit.c │ │ │ ├── rlc_am_timer_status_prohibit.h │ │ │ ├── rlc_am_windows.c │ │ │ └── rlc_am_windows.h │ │ ├── COPYING │ │ ├── TM_v9.3.0 │ │ │ ├── COPYING │ │ │ ├── rlc_tm.c │ │ │ ├── rlc_tm.h │ │ │ ├── rlc_tm_entity.h │ │ │ ├── rlc_tm_init.c │ │ │ ├── rlc_tm_init.h │ │ │ └── rlc_tm_structs.h │ │ ├── UM_v9.3.0 │ │ │ ├── COPYING │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── rlc_um.c │ │ │ ├── rlc_um.h │ │ │ ├── rlc_um_constants.h │ │ │ ├── rlc_um_control_primitives.c │ │ │ ├── rlc_um_control_primitives.h │ │ │ ├── rlc_um_dar.c │ │ │ ├── rlc_um_dar.h │ │ │ ├── rlc_um_entity.h │ │ │ ├── rlc_um_fsm.c │ │ │ ├── rlc_um_fsm.h │ │ │ ├── rlc_um_reassembly.c │ │ │ ├── rlc_um_reassembly.h │ │ │ ├── rlc_um_receiver.c │ │ │ ├── rlc_um_receiver.h │ │ │ ├── rlc_um_segment.c │ │ │ ├── rlc_um_segment.h │ │ │ ├── rlc_um_structs.h │ │ │ ├── rlc_um_test.c │ │ │ ├── rlc_um_test.h │ │ │ ├── rlc_um_very_simple_test.c │ │ │ └── rlc_um_very_simple_test.h │ │ ├── mac_primitives.h │ │ ├── rlc.c │ │ ├── rlc.h │ │ ├── rlc_def.h │ │ ├── rlc_def_lte.h │ │ ├── rlc_mac.c │ │ ├── rlc_mpls.c │ │ ├── rlc_primitives.h │ │ └── rlc_rrc.c │ ├── layer2_top.c │ ├── openair2_proc.c │ ├── register.c │ └── register.h ├── Makefile ├── NAS │ ├── DRIVER │ │ └── CELLULAR │ │ │ ├── CTL_TOOL │ │ │ ├── Makefile │ │ │ ├── nascell_ioctl.c │ │ │ └── nascell_ioctl.h │ │ │ ├── NASMT │ │ │ ├── Makefile │ │ │ ├── nasmt_ascontrol.c │ │ │ ├── nasmt_classifier.c │ │ │ ├── nasmt_common.c │ │ │ ├── nasmt_constant.h │ │ │ ├── nasmt_device.c │ │ │ ├── nasmt_iocontrol.c │ │ │ ├── nasmt_iocontrol.h │ │ │ ├── nasmt_netlink.c │ │ │ ├── nasmt_proto.h │ │ │ ├── nasmt_sap.h │ │ │ ├── nasmt_tool.c │ │ │ └── nasmt_variables.h │ │ │ ├── NASRG │ │ │ ├── Makefile │ │ │ ├── nasrg_ascontrol.c │ │ │ ├── nasrg_classifier.c │ │ │ ├── nasrg_common.c │ │ │ ├── nasrg_constant.h │ │ │ ├── nasrg_device.c │ │ │ ├── nasrg_iocontrol.c │ │ │ ├── nasrg_iocontrol.h │ │ │ ├── nasrg_netlink.c │ │ │ ├── nasrg_proto.h │ │ │ ├── nasrg_sap.h │ │ │ ├── nasrg_tool.c │ │ │ └── nasrg_variables.h │ │ │ ├── NETLTEST │ │ │ ├── Makefile │ │ │ ├── netltest │ │ │ ├── netltest.c │ │ │ └── nettestPDCP.c │ │ │ ├── readme.txt │ │ │ ├── start_mt_cellular │ │ │ ├── start_rg_cellular_noradvd │ │ │ ├── start_rg_cellular_radvd │ │ │ ├── stop_mt_cellular │ │ │ └── stop_rg_cellular │ ├── Makefile.inc │ ├── SIMU_CELLULAR │ │ ├── Makefile │ │ ├── nas_simu_proto.h │ │ ├── nasrg_simu_meas.c │ │ └── rrm_fifo_standalone.c │ └── nas_ue_task.h ├── NETWORK_DRIVER │ ├── LITE │ │ ├── COPYING │ │ ├── Makefile │ │ ├── RB_TOOL │ │ │ ├── Makefile │ │ │ └── rb_tool.c │ │ ├── classifier.c │ │ ├── common.c │ │ ├── constant.h │ │ ├── device.c │ │ ├── ioctl.c │ │ ├── ioctl.h │ │ ├── local.h │ │ ├── netlink.c │ │ ├── proto_extern.h │ │ ├── sap.h │ │ └── tool.c │ ├── MESH │ │ ├── COPYING │ │ ├── Makefile │ │ ├── RB_TOOL │ │ │ ├── Makefile │ │ │ └── rb_tool.c │ │ ├── TESTBENCH │ │ │ └── testbench.c │ │ ├── classifier.c │ │ ├── common.c │ │ ├── constant.h │ │ ├── device.c │ │ ├── ioctl.c │ │ ├── ioctl.h │ │ ├── local.h │ │ ├── mesh.c │ │ ├── netlink.c │ │ ├── proto_extern.h │ │ ├── rrc_nas_primitives.h │ │ ├── sap.h │ │ └── tool.c │ └── UE_IP │ │ ├── COPYING │ │ ├── Makefile │ │ ├── README │ │ ├── common.c │ │ ├── constant.h │ │ ├── device.c │ │ ├── local.h │ │ ├── netlink.c │ │ ├── proto_extern.h │ │ └── sap.h ├── PHY_INTERFACE │ ├── COPYING │ ├── defs.h │ ├── extern.h │ ├── mac_phy_primitives.c │ ├── mac_phy_primitives.h │ └── vars.h ├── RRC │ ├── L2_INTERFACE │ │ ├── COPYING │ │ ├── openair_rrc_L2_interface.c │ │ └── openair_rrc_L2_interface.h │ ├── LITE │ │ ├── COPYING │ │ ├── L2_interface.c │ │ ├── MESSAGES │ │ │ ├── COPYING │ │ │ ├── Makefile │ │ │ ├── Makefile.inc │ │ │ ├── README.txt │ │ │ ├── asn1_msg.c │ │ │ ├── asn1_msg.h │ │ │ ├── asn1_patch │ │ │ ├── asn1c │ │ │ │ ├── ASN1_files │ │ │ │ │ ├── 36331-860.txt │ │ │ │ │ ├── 36331-a20.txt │ │ │ │ │ ├── EUTRA-InterNodeDefinitions-86.asn │ │ │ │ │ ├── EUTRA-InterNodeDefinitions-a20.asn │ │ │ │ │ ├── EUTRA-RRC-Definitions-86.asn │ │ │ │ │ ├── EUTRA-RRC-Definitions-a20-lola.asn │ │ │ │ │ ├── EUTRA-RRC-Definitions-a20.asn │ │ │ │ │ ├── EUTRA-RRC-Definitions-a20.asn.orig │ │ │ │ │ ├── EUTRA-UE-Variables-86.asn │ │ │ │ │ ├── EUTRA-UE-Variables-a20.asn │ │ │ │ │ └── extract_asn1_from_spec.pl │ │ │ │ └── asn1cpatch.p0 │ │ │ ├── bsearch.c │ │ │ ├── bsearch.h │ │ │ ├── rtai_mem.c │ │ │ └── rtai_mem.h │ │ ├── defs.h │ │ ├── extern.h │ │ ├── mesh_top.c │ │ ├── plmn_data.h │ │ ├── proto.h │ │ ├── rrc_2_rrm_msg.c │ │ ├── rrc_UE.c │ │ ├── rrc_UE_ral.c │ │ ├── rrc_UE_ral.h │ │ ├── rrc_common.c │ │ ├── rrc_config.c │ │ ├── rrc_eNB.c │ │ ├── rrc_eNB_GTPV1U.c │ │ ├── rrc_eNB_GTPV1U.h │ │ ├── rrc_eNB_S1AP.c │ │ ├── rrc_eNB_S1AP.h │ │ ├── rrc_eNB_UE_context.c │ │ ├── rrc_eNB_UE_context.h │ │ ├── rrc_eNB_ral.c │ │ ├── rrc_eNB_ral.h │ │ ├── rrc_rrm_interface.c │ │ ├── rrc_rrm_interface.h │ │ ├── rrc_types.h │ │ ├── rrm_2_rrc_msg.c │ │ ├── utils.c │ │ └── vars.h │ └── NAS │ │ ├── COPYING │ │ ├── Makefile.inc │ │ ├── nas_config.c │ │ ├── nas_config.h │ │ ├── rb_config.c │ │ └── rb_config.h ├── RRM_4_RRC_LITE │ ├── COPYING │ ├── ChangeLog │ ├── Makefile │ ├── Makefile.Defines.linux-x86-32 │ ├── Makefile.Defines.linux-x86-64 │ ├── Makefile.am │ ├── Makefile.cvs │ ├── Makefile.objs │ ├── NEWS │ ├── README │ ├── configure.ac │ └── src │ │ ├── COPYING │ │ ├── com │ │ ├── Message.cpp │ │ ├── Message.h │ │ ├── asn1 │ │ │ ├── Makefile.am.sample │ │ │ └── rrc-rrm.asn │ │ ├── rrc │ │ │ ├── RRC2RRMMessageAddRadioAccessBearerConfirm.cpp │ │ │ ├── RRC2RRMMessageAddRadioAccessBearerConfirm.h │ │ │ ├── RRC2RRMMessageAddRadioAccessBearerRequest.cpp │ │ │ ├── RRC2RRMMessageAddRadioAccessBearerRequest.h │ │ │ ├── RRC2RRMMessageAddUserConfirm.cpp │ │ │ ├── RRC2RRMMessageAddUserConfirm.h │ │ │ ├── RRC2RRMMessageAddUserRequest.cpp │ │ │ ├── RRC2RRMMessageAddUserRequest.h │ │ │ ├── RRC2RRMMessageConnectionRequest.cpp │ │ │ ├── RRC2RRMMessageConnectionRequest.h │ │ │ ├── RRC2RRMMessageRemoveRadioAccessBearerRequest.cpp │ │ │ ├── RRC2RRMMessageRemoveRadioAccessBearerRequest.h │ │ │ ├── RRC2RRMMessageRemoveUserRequest.cpp │ │ │ ├── RRC2RRMMessageRemoveUserRequest.h │ │ │ ├── RRC2RRMMessageUserReconfigurationComplete.cpp │ │ │ ├── RRC2RRMMessageUserReconfigurationComplete.h │ │ │ ├── RRCMessageHandler.cpp │ │ │ ├── RRCMessageHandler.h │ │ │ ├── RRCUdpSocket.cpp │ │ │ ├── RRCUdpSocket.h │ │ │ ├── RRM2RRCMessageAddRadioAccessBearerResponse.cpp │ │ │ ├── RRM2RRCMessageAddRadioAccessBearerResponse.h │ │ │ ├── RRM2RRCMessageAddUserResponse.cpp │ │ │ ├── RRM2RRCMessageAddUserResponse.h │ │ │ ├── RRM2RRCMessageConnectionResponse.cpp │ │ │ ├── RRM2RRCMessageConnectionResponse.h │ │ │ ├── RRM2RRCMessageRemoveRadioAccessBearerResponse.cpp │ │ │ ├── RRM2RRCMessageRemoveRadioAccessBearerResponse.h │ │ │ ├── RRM2RRCMessageRemoveUserResponse.cpp │ │ │ ├── RRM2RRCMessageRemoveUserResponse.h │ │ │ ├── RRM2RRCMessageUserReconfiguration.cpp │ │ │ └── RRM2RRCMessageUserReconfiguration.h │ │ └── rrm │ │ │ ├── RRMMessageHandler.cpp │ │ │ ├── RRMMessageHandler.h │ │ │ ├── RRMUdpSocket.cpp │ │ │ └── RRMUdpSocket.h │ │ ├── foreign │ │ ├── generated_c_asn1_rrc │ │ │ ├── ASN1_files │ │ │ │ ├── 36331-860.txt │ │ │ │ ├── EUTRA-InterNodeDefinitions.asn │ │ │ │ ├── EUTRA-RRC-Definitions.asn │ │ │ │ └── EUTRA-UE-Variables.asn │ │ │ └── Makefile.am.sample │ │ ├── sockets-2.3.9.4 │ │ │ ├── Ajp13Socket.cpp │ │ │ ├── Ajp13Socket.h │ │ │ ├── AjpBaseSocket.cpp │ │ │ ├── AjpBaseSocket.h │ │ │ ├── Base64.cpp │ │ │ ├── Base64.h │ │ │ ├── Changelog │ │ │ ├── Debug.cpp │ │ │ ├── Debug.h │ │ │ ├── Event.cpp │ │ │ ├── Event.h │ │ │ ├── EventHandler.cpp │ │ │ ├── EventHandler.h │ │ │ ├── EventTime.cpp │ │ │ ├── EventTime.h │ │ │ ├── Exception.cpp │ │ │ ├── Exception.h │ │ │ ├── File.cpp │ │ │ ├── File.h │ │ │ ├── FileStream.cpp │ │ │ ├── FileStream.h │ │ │ ├── HTTPSocket.cpp │ │ │ ├── HTTPSocket.h │ │ │ ├── HttpBaseSocket.cpp │ │ │ ├── HttpBaseSocket.h │ │ │ ├── HttpClientSocket.cpp │ │ │ ├── HttpClientSocket.h │ │ │ ├── HttpDebugSocket.cpp │ │ │ ├── HttpDebugSocket.h │ │ │ ├── HttpGetSocket.cpp │ │ │ ├── HttpGetSocket.h │ │ │ ├── HttpPostSocket.cpp │ │ │ ├── HttpPostSocket.h │ │ │ ├── HttpPutSocket.cpp │ │ │ ├── HttpPutSocket.h │ │ │ ├── HttpRequest.cpp │ │ │ ├── HttpRequest.h │ │ │ ├── HttpResponse.cpp │ │ │ ├── HttpResponse.h │ │ │ ├── HttpTransaction.cpp │ │ │ ├── HttpTransaction.h │ │ │ ├── HttpdCookies.cpp │ │ │ ├── HttpdCookies.h │ │ │ ├── HttpdForm.cpp │ │ │ ├── HttpdForm.h │ │ │ ├── HttpdSocket.cpp │ │ │ ├── HttpdSocket.h │ │ │ ├── IBase.h │ │ │ ├── IEventHandler.h │ │ │ ├── IEventOwner.cpp │ │ │ ├── IEventOwner.h │ │ │ ├── IFile.h │ │ │ ├── IFileUpload.h │ │ │ ├── IHttpServer.h │ │ │ ├── IMutex.h │ │ │ ├── ISocketHandler.h │ │ │ ├── IStream.h │ │ │ ├── Ipv4Address.cpp │ │ │ ├── Ipv4Address.h │ │ │ ├── Ipv6Address.cpp │ │ │ ├── Ipv6Address.h │ │ │ ├── Json.cpp │ │ │ ├── Json.h │ │ │ ├── ListenSocket.h │ │ │ ├── Lock.cpp │ │ │ ├── Lock.h │ │ │ ├── Makefile.am │ │ │ ├── MemFile.cpp │ │ │ ├── MemFile.h │ │ │ ├── Mutex.cpp │ │ │ ├── Mutex.h │ │ │ ├── OSX.zip │ │ │ ├── Parse.cpp │ │ │ ├── Parse.h │ │ │ ├── README │ │ │ ├── README.macosx │ │ │ ├── ResolvServer.cpp │ │ │ ├── ResolvServer.h │ │ │ ├── ResolvSocket.cpp │ │ │ ├── ResolvSocket.h │ │ │ ├── SSLInitializer.cpp │ │ │ ├── SSLInitializer.h │ │ │ ├── SctpSocket.cpp │ │ │ ├── SctpSocket.h │ │ │ ├── Semaphore.cpp │ │ │ ├── Semaphore.h │ │ │ ├── SmtpdSocket.cpp │ │ │ ├── SmtpdSocket.h │ │ │ ├── Socket.cpp │ │ │ ├── Socket.h │ │ │ ├── SocketAddress.h │ │ │ ├── SocketHandler.cpp │ │ │ ├── SocketHandler.h │ │ │ ├── SocketHandlerEp.cpp │ │ │ ├── SocketHandlerEp.h │ │ │ ├── SocketHandlerThread.cpp │ │ │ ├── SocketHandlerThread.h │ │ │ ├── SocketStream.cpp │ │ │ ├── SocketStream.h │ │ │ ├── SocketThread.cpp │ │ │ ├── SocketThread.h │ │ │ ├── Sockets-config │ │ │ ├── Sockets-config.cpp │ │ │ ├── StdLog.h │ │ │ ├── StdoutLog.cpp │ │ │ ├── StdoutLog.h │ │ │ ├── StreamSocket.cpp │ │ │ ├── StreamSocket.h │ │ │ ├── StreamWriter.cpp │ │ │ ├── StreamWriter.h │ │ │ ├── TcpSocket.cpp │ │ │ ├── TcpSocket.h │ │ │ ├── Thread.cpp │ │ │ ├── Thread.h │ │ │ ├── UdpSocket.cpp │ │ │ ├── UdpSocket.h │ │ │ ├── Utility.cpp │ │ │ ├── Utility.h │ │ │ ├── XmlDocument.cpp │ │ │ ├── XmlDocument.h │ │ │ ├── XmlException.cpp │ │ │ ├── XmlException.h │ │ │ ├── XmlNode.cpp │ │ │ ├── XmlNode.h │ │ │ ├── ajp13.h │ │ │ ├── gpl.txt │ │ │ ├── mkdot.sh │ │ │ ├── pkgconfig │ │ │ │ ├── libSockets.pc │ │ │ │ ├── libSockets.pc.IN │ │ │ │ ├── libsockets2.pc │ │ │ │ └── libsockets2.pc.IN │ │ │ ├── socket_include.cpp │ │ │ ├── socket_include.h │ │ │ ├── sockets-config.h │ │ │ └── tests │ │ │ │ ├── Makefile │ │ │ │ ├── base64.cpp │ │ │ │ ├── chunked.cpp │ │ │ │ ├── copy.cpp │ │ │ │ ├── crlf.cpp │ │ │ │ ├── echoserver.cpp │ │ │ │ ├── events.cpp │ │ │ │ ├── http.cpp │ │ │ │ ├── http_post.cpp │ │ │ │ ├── httpd.cpp │ │ │ │ ├── httpd_test.cpp │ │ │ │ ├── https.cpp │ │ │ │ ├── json.cpp │ │ │ │ ├── listener.cpp │ │ │ │ ├── resolve.cpp │ │ │ │ ├── resume.cpp │ │ │ │ ├── retry.cpp │ │ │ │ ├── scanr.cpp │ │ │ │ ├── semtest.cpp │ │ │ │ ├── sloppy_http.cpp │ │ │ │ ├── sockets_test.cpp │ │ │ │ ├── stressclient.cpp │ │ │ │ ├── threadstress.cpp │ │ │ │ └── x.cpp │ │ ├── sql │ │ │ ├── Makefile.am │ │ │ ├── sqlite3.c │ │ │ └── sqlite3.h │ │ └── tcpip │ │ │ ├── Makefile.am │ │ │ ├── socket.cpp │ │ │ ├── socket.h │ │ │ ├── socketUnitTests.cpp │ │ │ ├── storage.cpp │ │ │ ├── storage.h │ │ │ └── tcpipUnitTests.cpp │ │ ├── platform.h │ │ ├── platform_constants.h │ │ ├── platform_defines.h │ │ ├── platform_dim.h │ │ ├── radio_resources │ │ ├── Asn1Utils.cpp │ │ ├── Asn1Utils.h │ │ ├── COPYING │ │ ├── Command.cpp │ │ ├── Command.h │ │ ├── DataRadioBearer.cpp │ │ ├── DataRadioBearer.h │ │ ├── ENodeB.cpp │ │ ├── ENodeB.h │ │ ├── Exceptions.h │ │ ├── LogicalChannel.cpp │ │ ├── LogicalChannel.h │ │ ├── Mobile.cpp │ │ ├── Mobile.h │ │ ├── RadioBearer.cpp │ │ ├── RadioBearer.h │ │ ├── RadioResources.cpp │ │ ├── RadioResources.h │ │ ├── SignallingRadioBearer.cpp │ │ ├── SignallingRadioBearer.h │ │ ├── Transaction.cpp │ │ ├── Transaction.h │ │ ├── Transactions.cpp │ │ └── Transactions.h │ │ ├── rrm.cpp │ │ ├── test │ │ ├── TestScenario.cpp │ │ ├── TestScenario.h │ │ └── test.cpp │ │ └── version.h ├── UTIL │ ├── AT_COMMANDS │ │ ├── COPYING │ │ ├── parser.c │ │ └── parser.h │ ├── BIGPHYS │ │ ├── COPYING │ │ ├── bigphys.c │ │ └── defs.h │ ├── CLI │ │ ├── COPYING │ │ ├── cli.c │ │ ├── cli.h │ │ ├── cli_cmd.c │ │ ├── cli_if.h │ │ └── cli_server.c │ ├── FIFO │ │ ├── COPYING │ │ ├── pad_list.c │ │ ├── pad_list.h │ │ └── types.h │ ├── LFDS │ │ └── liblfds6.1.1 │ │ │ ├── liblfds611 │ │ │ ├── building.txt │ │ │ ├── dirs │ │ │ ├── inc │ │ │ │ └── liblfds611.h │ │ │ ├── liblfds611.def │ │ │ ├── liblfds611.sln │ │ │ ├── liblfds611.vcproj │ │ │ ├── makefile.linux │ │ │ ├── makefile.windows │ │ │ ├── readme.txt │ │ │ ├── runme_before_win_kernel_build_readme.txt │ │ │ ├── runme_before_win_kernel_dynamic_lib_build.bat │ │ │ ├── runme_before_win_kernel_static_lib_build.bat │ │ │ ├── sources.dynamic │ │ │ ├── sources.static │ │ │ └── src │ │ │ │ ├── dirs │ │ │ │ ├── driver_entry.c │ │ │ │ ├── driver_entry_readme.txt │ │ │ │ ├── lfds611_abstraction │ │ │ │ ├── lfds611_abstraction_cas.c │ │ │ │ ├── lfds611_abstraction_dcas.c │ │ │ │ ├── lfds611_abstraction_free.c │ │ │ │ ├── lfds611_abstraction_increment.c │ │ │ │ ├── lfds611_abstraction_internal_body.h │ │ │ │ ├── lfds611_abstraction_internal_wrapper.h │ │ │ │ └── lfds611_abstraction_malloc.c │ │ │ │ ├── lfds611_freelist │ │ │ │ ├── lfds611_freelist_delete.c │ │ │ │ ├── lfds611_freelist_get_and_set.c │ │ │ │ ├── lfds611_freelist_internal.h │ │ │ │ ├── lfds611_freelist_new.c │ │ │ │ ├── lfds611_freelist_pop_push.c │ │ │ │ └── lfds611_freelist_query.c │ │ │ │ ├── lfds611_liblfds │ │ │ │ ├── lfds611_liblfds_abstraction_test_helpers.c │ │ │ │ ├── lfds611_liblfds_aligned_free.c │ │ │ │ ├── lfds611_liblfds_aligned_malloc.c │ │ │ │ ├── lfds611_liblfds_internal.h │ │ │ │ └── lfds611_liblfds_readme.txt │ │ │ │ ├── lfds611_queue │ │ │ │ ├── lfds611_queue_delete.c │ │ │ │ ├── lfds611_queue_internal.h │ │ │ │ ├── lfds611_queue_new.c │ │ │ │ ├── lfds611_queue_query.c │ │ │ │ └── lfds611_queue_queue.c │ │ │ │ ├── lfds611_ringbuffer │ │ │ │ ├── lfds611_ringbuffer_delete.c │ │ │ │ ├── lfds611_ringbuffer_get_and_put.c │ │ │ │ ├── lfds611_ringbuffer_internal.h │ │ │ │ ├── lfds611_ringbuffer_new.c │ │ │ │ └── lfds611_ringbuffer_query.c │ │ │ │ ├── lfds611_slist │ │ │ │ ├── lfds611_slist_delete.c │ │ │ │ ├── lfds611_slist_get_and_set.c │ │ │ │ ├── lfds611_slist_internal.h │ │ │ │ ├── lfds611_slist_link.c │ │ │ │ └── lfds611_slist_new.c │ │ │ │ ├── lfds611_stack │ │ │ │ ├── lfds611_stack_delete.c │ │ │ │ ├── lfds611_stack_internal.h │ │ │ │ ├── lfds611_stack_new.c │ │ │ │ ├── lfds611_stack_push_pop.c │ │ │ │ └── lfds611_stack_query.c │ │ │ │ └── liblfds611_internal.h │ │ │ └── test │ │ │ ├── building.txt │ │ │ ├── makefile.linux │ │ │ ├── makefile.windows │ │ │ ├── src │ │ │ ├── abstraction.h │ │ │ ├── abstraction_cpu_count.c │ │ │ ├── abstraction_thread_start.c │ │ │ ├── abstraction_thread_wait.c │ │ │ ├── benchmark_freelist.c │ │ │ ├── benchmark_queue.c │ │ │ ├── benchmark_ringbuffer.c │ │ │ ├── benchmark_stack.c │ │ │ ├── internal.h │ │ │ ├── main.c │ │ │ ├── misc.c │ │ │ ├── structures.h │ │ │ ├── test_abstraction.c │ │ │ ├── test_freelist.c │ │ │ ├── test_queue.c │ │ │ ├── test_ringbuffer.c │ │ │ ├── test_slist.c │ │ │ └── test_stack.c │ │ │ ├── test.sln │ │ │ └── test.vcproj │ ├── LISTS │ │ ├── COPYING │ │ ├── list.c │ │ ├── list.h │ │ └── list2.c │ ├── LOG │ │ ├── COPYING │ │ ├── README.txt │ │ ├── log.c │ │ ├── log.h │ │ ├── log_extern.h │ │ ├── log_if.h │ │ ├── vcd_signal_dumper.c │ │ └── vcd_signal_dumper.h │ ├── MATH │ │ ├── COPYING │ │ ├── crc_byte.c │ │ ├── oml.c │ │ ├── oml.h │ │ ├── random.c │ │ ├── random_proto_extern.h │ │ └── taus.c │ ├── MEM │ │ ├── COPYING │ │ ├── mem_block.c │ │ ├── mem_block.h │ │ ├── mem_mngt.c │ │ ├── mem_mngt_proto_extern.h │ │ └── mem_pool.h │ ├── Makefile.inc │ ├── OCG │ │ ├── .directory │ │ ├── COPYING │ │ ├── Doxyfile │ │ ├── OCG.c │ │ ├── OCG.h │ │ ├── OCG_call_emu.c │ │ ├── OCG_call_emu.h │ │ ├── OCG_config_mobi.c │ │ ├── OCG_config_mobi.h │ │ ├── OCG_create_dir.c │ │ ├── OCG_create_dir.h │ │ ├── OCG_detect_file.c │ │ ├── OCG_detect_file.h │ │ ├── OCG_extern.h │ │ ├── OCG_generate_report.c │ │ ├── OCG_generate_report.h │ │ ├── OCG_get_opt.c │ │ ├── OCG_get_opt.h │ │ ├── OCG_if.h │ │ ├── OCG_parse_XML.c │ │ ├── OCG_parse_XML.h │ │ ├── OCG_parse_filename.c │ │ ├── OCG_parse_filename.h │ │ ├── OCG_save_XML.c │ │ ├── OCG_save_XML.h │ │ ├── OCG_vars.h │ │ ├── Readme.doxy │ │ ├── XML_to_mobigen │ │ │ └── RWMEmulator.xml │ │ ├── eurecom_20110208110244.xml │ │ ├── local_XML │ │ │ └── Lusheng.20110208110244.xml │ │ ├── makefile │ │ ├── readme.txt │ │ └── temp_output │ │ │ └── OCG_report.xml │ ├── OMG │ │ ├── COPYING │ │ ├── OMG_TRACE_DESCRIPTION.pdf │ │ ├── README.TXT │ │ ├── SUMO │ │ │ ├── README.TXT │ │ │ └── SCENARIOS │ │ │ │ ├── scen.sumo.cfg │ │ │ │ ├── sumo_commands.txt │ │ │ │ ├── traci.scen.sumo.cfg │ │ │ │ ├── traci_ex_Map.net.xml │ │ │ │ └── traci_ex_ROU.rou.xml │ │ ├── TRACE │ │ │ ├── OMG_TRACE_update.pdf │ │ │ ├── README.TXT │ │ │ ├── example_trace.tr │ │ │ ├── handover.tr │ │ │ ├── handover_1ue.tr │ │ │ ├── hexagonal_eNBs.tr │ │ │ ├── mobility_2ues.tr │ │ │ ├── mobility_3ues.tr │ │ │ ├── regular.tr │ │ │ ├── static_1enb.tr │ │ │ ├── static_2ues.tr │ │ │ └── zero_speed.tr │ │ ├── TraCIConstants.h │ │ ├── client_traci_OMG.c │ │ ├── client_traci_OMG.h │ │ ├── common.c │ │ ├── defs.h │ │ ├── grid.c │ │ ├── grid.h │ │ ├── id_manager.c │ │ ├── id_manager.h │ │ ├── job.c │ │ ├── makefile │ │ ├── makefile_old │ │ ├── makefile_standalone │ │ ├── mobility.txt │ │ ├── mobility_parser.c │ │ ├── mobility_parser.h │ │ ├── omg.c │ │ ├── omg.h │ │ ├── omg_constants.h │ │ ├── omg_hashtable.c │ │ ├── omg_hashtable.h │ │ ├── omg_vars.h │ │ ├── rwalk.c │ │ ├── rwalk.h │ │ ├── rwp.c │ │ ├── rwp.h │ │ ├── socket_traci_OMG.c │ │ ├── socket_traci_OMG.h │ │ ├── static.c │ │ ├── static.h │ │ ├── steadystaterwp.c │ │ ├── steadystaterwp.h │ │ ├── storage_traci_OMG.c │ │ ├── storage_traci_OMG.h │ │ ├── sumo.c │ │ ├── sumo.h │ │ ├── trace.c │ │ ├── trace.h │ │ ├── trace_hashtable.c │ │ └── trace_hashtable.h │ ├── OMV │ │ ├── COPYING │ │ ├── README.txt │ │ ├── blue.png │ │ ├── communicationthread.cpp │ │ ├── communicationthread.h │ │ ├── green.png │ │ ├── jpg.jpeg │ │ ├── mus.png │ │ ├── mywindow.cpp │ │ ├── mywindow.h │ │ ├── new.jpg │ │ ├── new2.jpg │ │ ├── omv.cpp │ │ ├── openglwidget.cpp │ │ ├── openglwidget.h │ │ ├── red.png │ │ ├── structures.h │ │ ├── white.png │ │ └── wow.png │ ├── OPT │ │ ├── COPYING │ │ ├── README.txt │ │ ├── mac_pcap.h │ │ ├── opt.h │ │ ├── packet-mac-lte.c │ │ ├── packet-mac-lte.h │ │ ├── packet-rlc-lte.h │ │ ├── probe.c │ │ ├── socket_sender.c │ │ └── vars.h │ ├── OSA │ │ ├── COPYING │ │ ├── README │ │ ├── osa_defs.h │ │ ├── osa_internal.h │ │ ├── osa_key_deriver.c │ │ ├── osa_rijndael.c │ │ ├── osa_rijndael.h │ │ ├── osa_snow3g.c │ │ ├── osa_snow3g.h │ │ ├── osa_stream_eea.c │ │ └── osa_stream_eia.c │ ├── OSD │ │ ├── COPYING │ │ ├── OCG.pid │ │ ├── OpenAirEmu.conf │ │ ├── Platform_is_running.php │ │ ├── README.txt │ │ ├── css │ │ │ ├── blueprint.css │ │ │ ├── fix-ie-rtl.css │ │ │ ├── fix-ie.css │ │ │ ├── ie.css │ │ │ ├── ie6.css │ │ │ ├── images │ │ │ │ ├── false.png │ │ │ │ ├── false2.png │ │ │ │ ├── lquote.png │ │ │ │ ├── true.png │ │ │ │ └── warning.png │ │ │ ├── print.css │ │ │ ├── screen.css │ │ │ └── style.css │ │ ├── fake_oaisim │ │ ├── form.php │ │ ├── header.php │ │ ├── httpd-result.conf │ │ ├── index.php │ │ ├── jquery │ │ │ └── jquery.js │ │ ├── recep.php │ │ └── toto.php │ ├── OTG │ │ ├── COPYING │ │ ├── Doxyfile │ │ ├── OTGplot │ │ ├── help_OTGplot.txt │ │ ├── main.c │ │ ├── makefile │ │ ├── otg.c │ │ ├── otg.h │ │ ├── otg_config.h │ │ ├── otg_defs.h │ │ ├── otg_externs.h │ │ ├── otg_form.c │ │ ├── otg_form.h │ │ ├── otg_kpi.c │ │ ├── otg_kpi.h │ │ ├── otg_models.c │ │ ├── otg_models.h │ │ ├── otg_rx.c │ │ ├── otg_rx.h │ │ ├── otg_rx_socket.c │ │ ├── otg_rx_socket.h │ │ ├── otg_tx.c │ │ ├── otg_tx.h │ │ ├── otg_tx_socket.c │ │ ├── otg_tx_socket.h │ │ ├── otg_vars.h │ │ └── traffic_config.h │ ├── SCTP │ │ └── COPYING │ ├── TIMER │ │ ├── COPYING │ │ ├── umts_timer.c │ │ ├── umts_timer.h │ │ ├── umts_timer_proto_extern.h │ │ └── umts_timer_struct.h │ ├── TRACE │ │ ├── COPYING │ │ ├── fifo_printf.c │ │ ├── fifo_printf.h │ │ ├── fifo_printf_proto_extern.h │ │ └── print.h │ └── queue.h └── X2AP │ ├── COPYING │ ├── MESSAGES │ └── ASN1 │ │ ├── R.UNKNOWN │ │ ├── Makefile │ │ ├── Makefile.inc │ │ ├── X2AP-CommonDataTypes.asn │ │ ├── X2AP-Constants.asn │ │ ├── X2AP-Containers.asn │ │ ├── X2AP-IEs.asn │ │ ├── X2AP-PDU-Contents.asn │ │ ├── X2AP-PDU-Definitions.asn │ │ ├── X2AP-PDU-Descriptions.asn │ │ └── X2AP-PDU.asn │ │ ├── R11.2 │ │ ├── Makefile.inc │ │ ├── X2AP-CommonDataTypes.asn │ │ ├── X2AP-Constants.asn │ │ ├── X2AP-Containers.asn │ │ ├── X2AP-IEs.asn │ │ ├── X2AP-PDU-Contents.asn │ │ ├── X2AP-PDU-Descriptions.asn │ │ └── X2AP-PDU.asn │ │ └── asn1tostruct.py │ ├── Makefile.inc │ ├── x2ap.c │ ├── x2ap.h │ ├── x2ap_common.c │ └── x2ap_common.h ├── openair3 ├── COPYING ├── DOCS │ ├── COPYING │ ├── DOXYGEN │ │ └── Doxyfile │ └── TEMPLATES │ │ ├── CODE │ │ ├── COPYING │ │ ├── Doxyfile │ │ ├── example_doxy.h │ │ └── images │ │ │ ├── arch.eps │ │ │ └── arch.png │ │ └── README │ │ ├── Readme.doxy │ │ └── readme.txt ├── MESH │ ├── COPYING │ ├── L3_rrc_defs.h │ ├── L3_rrc_interface.h │ ├── RRM │ │ ├── DOC │ │ │ └── Doxyfile_rrm │ │ ├── EMUL │ │ │ ├── .tmp_versions │ │ │ │ └── kemul_nl.mod │ │ │ ├── Makefile │ │ │ ├── actdiff.c │ │ │ ├── actdiff.h │ │ │ ├── emul_interface.c │ │ │ ├── emul_interface.h │ │ │ └── scenario.c │ │ ├── GRAPH │ │ │ ├── Makefile │ │ │ ├── graph │ │ │ ├── graph_enum.h │ │ │ ├── graph_int.c │ │ │ ├── graph_int.h │ │ │ ├── graph_sock.c │ │ │ └── graph_sock.h │ │ ├── Makefile │ │ ├── SN_freq_form.c │ │ ├── SN_freq_form.fd │ │ ├── SN_freq_form.h │ │ ├── VCD │ │ │ ├── Config_wave.xxx │ │ │ ├── gtkwave.ini │ │ │ └── mkvcd │ │ ├── all_freq_to_users_form.c │ │ ├── all_freq_to_users_form.fd │ │ ├── all_freq_to_users_form.h │ │ ├── ch_init.c │ │ ├── ch_init.h │ │ ├── channels_db.c │ │ ├── channels_db.h │ │ ├── cmm_msg.c │ │ ├── cmm_msg.h │ │ ├── debug.h │ │ ├── freq_ass_op.c │ │ ├── freq_ass_op.h │ │ ├── ip_msg.c │ │ ├── ip_msg.h │ │ ├── mr_attach.c │ │ ├── mr_attach.h │ │ ├── msg_mngt.c │ │ ├── msg_mngt.h │ │ ├── neighbor_db.c │ │ ├── neighbor_db.h │ │ ├── pusu_msg.c │ │ ├── pusu_msg.h │ │ ├── rb_db.c │ │ ├── rb_db.h │ │ ├── rb_mngt.c │ │ ├── rb_mngt.h │ │ ├── rrc_2_rrm_msg.c │ │ ├── rrc_rrm_msg.h │ │ ├── rrm.c │ │ ├── rrm.cfg │ │ ├── rrm.h │ │ ├── rrm.sh │ │ ├── rrm_2_rrc_msg.c │ │ ├── rrm_2_sensing_msg.c │ │ ├── rrm_5nodes.sh │ │ ├── rrm_SENS.sh │ │ ├── rrm_SS2_CH1.sh │ │ ├── rrm_SS2_global.sh │ │ ├── rrm_constant.c │ │ ├── rrm_constant.h │ │ ├── rrm_graph.c │ │ ├── rrm_sock.c │ │ ├── rrm_sock.h │ │ ├── rrm_test.sh │ │ ├── rrm_util.c │ │ ├── rrm_util.h │ │ ├── sens_CH1_scen_2.c │ │ ├── sens_CH1_scen_2.fd │ │ ├── sens_CH1_scen_2.h │ │ ├── sens_db.c │ │ ├── sens_db.h │ │ ├── sens_op.c │ │ ├── sens_op.h │ │ ├── sens_scen_2_form.c │ │ ├── sens_scen_2_form.fd │ │ ├── sens_scen_2_form.h │ │ ├── sens_sensor.c │ │ ├── sens_sensor.fd │ │ ├── sens_sensor.h │ │ ├── sensing_2_rrm_msg.c │ │ ├── sensing_form.c │ │ ├── sensing_form.fd │ │ ├── sensing_form.h │ │ ├── sensing_rrm_msg.h │ │ ├── transact.c │ │ └── transact.h │ ├── cmm_ral_interface.h │ └── cmm_rrm_interface.h ├── UTILS │ ├── COPYING │ ├── GPSDRIVE │ │ ├── README.txt │ │ └── maps │ │ │ ├── expedia │ │ │ ├── map_27650000_43.847_7.448.gif │ │ │ ├── map_3950_41.282_1.989.gif │ │ │ ├── map_3950_41.501_2.111.gif │ │ │ ├── map_3950_41.502_2.113.gif │ │ │ ├── map_3950_41.516_2.087.gif │ │ │ ├── map_3950_43.735_7.421.gif │ │ │ ├── map_3950_43.883_7.355.gif │ │ │ ├── map_3950_43.912_7.516.gif │ │ │ ├── map_3950_43.923_7.527.gif │ │ │ ├── map_47400_41.282_1.989.gif │ │ │ └── map_98750_41.516_2.088.gif │ │ │ └── map_koord.txt │ └── REMSERIAL-1.4.UDP │ │ ├── Makefile │ │ ├── README.txt │ │ ├── remserial.c │ │ └── stty.c └── history.txt ├── svn2git ├── README.txt ├── authors.txt ├── authors_original.txt ├── authors_original_java_output.txt ├── check_diff_author.sh └── git-author-rewrite.sh └── targets ├── ARCH ├── BLADERF │ └── USERSPACE │ │ └── LIB │ │ ├── bladerf_lib.c │ │ └── bladerf_lib.h ├── COMMON │ ├── COPYING │ └── common_lib.h ├── ETHERNET │ └── USERSPACE │ │ └── LIB │ │ ├── COPYING │ │ ├── Makefile.inc │ │ ├── ethernet_lib.c │ │ └── ethernet_lib.h ├── EXMIMO │ ├── BITSTREAM │ │ ├── exmimo2_prom.cfi │ │ ├── exmimo2_prom.mcs │ │ ├── exmimo2_prom.prm │ │ ├── express-mimo2.bit │ │ ├── express-mimo2.ipf │ │ ├── express-mimo2.msk │ │ ├── fpga.cmd │ │ ├── program_fpga │ │ ├── prom_generate.cmd │ │ └── prom_load.cmd │ ├── DEFS │ │ ├── COPYING │ │ ├── openair_device.h │ │ └── pcie_interface.h │ ├── DRIVER │ │ ├── eurecom │ │ │ ├── COPYING │ │ │ ├── Makefile │ │ │ ├── compile.sh │ │ │ ├── defs.h │ │ │ ├── do_reenumerate_expressmimo.sh │ │ │ ├── do_reinsert_driver.sh │ │ │ ├── exmimo_fw.c │ │ │ ├── extern.h │ │ │ ├── fileops.c │ │ │ ├── irq.c │ │ │ ├── module_main.c │ │ │ └── vars.h │ │ ├── exmimo3 │ │ │ ├── COPYING │ │ │ ├── Makefile │ │ │ ├── compile.sh │ │ │ ├── defs.h │ │ │ ├── do_reenumerate_expressmimo.sh │ │ │ ├── do_reinsert_driver.sh │ │ │ ├── exmimo_fw.c │ │ │ ├── extern.h │ │ │ ├── fileops.c │ │ │ ├── irq.c │ │ │ ├── module_main.c │ │ │ ├── test_script.sh │ │ │ └── vars.h │ │ ├── readme.txt │ │ └── telecomparistech │ │ │ ├── COPYING │ │ │ ├── Makefile │ │ │ ├── em1_dev.c │ │ │ ├── em1_drv.c │ │ │ ├── em1_drv.h │ │ │ ├── em1_drv.sh │ │ │ ├── em1_fifos.c │ │ │ ├── em1_ioctl.c │ │ │ ├── em1_mmap.c │ │ │ └── em1_rw.c │ └── USERSPACE │ │ ├── LIB │ │ ├── COPYING │ │ ├── Makefile │ │ ├── example.c │ │ ├── gain_control.c │ │ ├── gain_control.h │ │ ├── openair0_lib.c │ │ └── openair0_lib.h │ │ ├── OAI_FW_INIT │ │ ├── COPYING │ │ ├── Makefile │ │ ├── elf.h │ │ ├── elftypes.h │ │ ├── sdr_expressmimo1 │ │ ├── sdr_expressmimo2 │ │ ├── sdr_expressmimo2_v10 │ │ ├── sdr_expressmimo2_v9 │ │ ├── updatefw.c │ │ └── updatefw.h │ │ └── OCTAVE │ │ ├── COPYING │ │ ├── Makefile │ │ ├── OFDM_TX.m │ │ ├── OFDM_TX_FRAME.m │ │ ├── QAM_MOD.m │ │ ├── bitplots.m │ │ ├── exmimo2_rx_iqimbalance.m │ │ ├── exmimo2_snr_nf.m │ │ ├── exmimo2_tx_iqimbalance.m │ │ ├── exmimo_config.m │ │ ├── exmimo_config_off.m │ │ ├── exmimo_test_loopback.m │ │ ├── exmimo_test_multicard.m │ │ ├── exmimo_test_tx_rx.m │ │ ├── freq_calibration.m │ │ ├── gpib_send.cc │ │ ├── initial_sync.m │ │ ├── lime_cal.m │ │ ├── lime_cal_rx.m │ │ ├── limeparms.m │ │ ├── oarf_config_exmimo.cc │ │ ├── oarf_get_frame.cc │ │ ├── oarf_get_num_detected_cards.cc │ │ ├── oarf_send_frame.cc │ │ ├── oarf_stop.cc │ │ ├── oarf_stop_without_reset.cc │ │ ├── phasenoise.m │ │ ├── rfl.m │ │ ├── rfldec.m │ │ ├── rx_calibration_exmimo.m │ │ ├── rx_calibration_exmimo_freq.m │ │ ├── rx_calibration_rffe.m │ │ ├── rx_spec.m │ │ ├── rx_spec_multicard_sync.m │ │ ├── txsig.m │ │ ├── txsig_multicard_sync.m │ │ └── txsig_ofdm.m └── USRP │ └── USERSPACE │ └── LIB │ ├── COPYING │ ├── Makefile.inc │ └── usrp_lib.cpp ├── COMMON ├── COPYING ├── Makefile.inc ├── create_tasks.c └── create_tasks.h ├── COPYING ├── DOCS ├── Doxyfile ├── E-UTRAN_User_Guide.docx ├── E-UTRAN_User_Guide.pdf ├── api_icic.xml ├── images │ └── oai_logo.png ├── oaiemu.doc ├── oaisim_walkthrough.pdf ├── openair_header.tex └── path_loss_oaisim.xlsx ├── Makefile ├── Makefile.common ├── Makerules ├── PROJECTS ├── CENTOS-LTE-EPC-INTEGRATION │ ├── CONF │ │ ├── enb.centos.calisson.conf │ │ ├── enb.centos.memphis.conf │ │ └── enb.centos.nord.conf │ └── COPYING ├── COPYING ├── E-MBMS │ ├── build_all.bash │ ├── enb.conf │ ├── start_enb.bash │ ├── start_ue.bash │ └── utils.bash ├── GENERIC-LTE-EPC │ ├── CONF │ │ ├── UE_config.xml │ │ ├── enb.band13.exmimo2.conf │ │ ├── enb.band13.rel10.exmimo2.conf │ │ ├── enb.band3.tm1.usrpb210.conf │ │ ├── enb.band38.conf │ │ ├── enb.band38.tm1.exmimo2.conf │ │ ├── enb.band39.conf │ │ ├── enb.band39.tm1.exmimo2.conf │ │ ├── enb.band39.tm1.usrpb210.conf │ │ ├── enb.band4.tm1.usrpb210.conf │ │ ├── enb.band5.tm1.usrpb210.conf │ │ ├── enb.band7.exmimo2.conf │ │ ├── enb.band7.exmimo2_2a.conf │ │ ├── enb.band7.generic.conf │ │ ├── enb.band7.generic.oaisim.local_mme.conf │ │ ├── enb.band7.generic.oaisim.local_no_mme.conf │ │ ├── enb.band7.tm1.100PRB.usrpb210.conf │ │ ├── enb.band7.tm1.50PRB.usrpb210.conf │ │ ├── enb.band7.tm1.bladerfx40.conf │ │ ├── enb.band7.tm1.exmimo2.conf │ │ ├── enb.band7.tm1.exmimo2.openEPC.conf │ │ ├── enb.band7.tm1.usrpb210.conf │ │ ├── enb.band7.tm1.usrpb210.epc.local.conf │ │ ├── enb.band7.tm1.usrpb210.epc.remote.conf │ │ ├── enb.band7.usrpb210.conf │ │ ├── enb.centos.nord.conf │ │ ├── enb.dual.band13_band4.exmimo2.conf │ │ ├── enb.dual.band38_band44.conf │ │ ├── enb.dual.band7_band20.conf │ │ ├── enb.dual.rel10.band13_band4.exmimo2.conf │ │ ├── enb.pft.memphis.conf │ │ ├── enb.sequans.sud.conf │ │ ├── enb.sfr.sud.conf │ │ ├── epc.generic.conf │ │ ├── epc.on.enb.example.conf │ │ ├── example.enb.band7.epc_eur.local.exmimo2_2a.conf │ │ └── example.enb.epc_eur.local.exmimo.conf │ ├── COPYING │ ├── interfaces.bash │ ├── networks.bash │ ├── start_enb_and_ue_virt.bash │ ├── start_ue.bash │ ├── utils.bash │ └── virtual_box.bash ├── LOCALIZATION │ ├── filesave0811.mat │ ├── generation.m │ ├── initial_sync.m │ ├── initparams.m │ ├── plots.m │ ├── recup.m │ ├── where2.m │ ├── where2_v1_final.mat │ └── where2_vf.m └── TDDREC │ ├── f_ch_est.m │ ├── f_ofdm_mod.m │ ├── f_ofdm_rx.m │ ├── f_ofdm_tx.m │ ├── f_tls_ap.m │ ├── f_tls_diag.m │ ├── f_tls_svd.m │ ├── s_beamforming.m │ ├── s_calib.m │ ├── s_draw_F.m │ ├── s_init_params.m │ ├── s_run_meas.m │ ├── v0 │ ├── alterproj.m │ ├── beamforming.m │ ├── calibration.m │ ├── genorthqpskseq.m │ ├── genrandpskseq.m │ ├── initparams.m │ ├── initparams2.m │ ├── ofdm_mod.m │ ├── readme.txt │ ├── runmeas_full_duplex.m │ ├── runmeas_long_chanest.m │ ├── runmeas_mimo.m │ ├── runmeas_wduplex.m │ └── runmeas_woduplex.m │ └── v4_CH_EST │ ├── f_ch_est.m │ ├── f_ofdm_rx.m │ ├── f_ofdm_tx.m │ ├── s_H_est.m │ └── s_init_params.m ├── README.txt ├── RT ├── LAUNCH_SCRIPTS │ ├── load_module.sh │ ├── nas_enb.sh │ ├── nas_ue.sh │ ├── nas_ue2.sh │ ├── start_eNb_mode1.sh │ ├── start_eNb_mode2.sh │ ├── start_eNb_mode6.sh │ ├── start_emos.sh │ ├── start_rf.sh │ ├── start_test_fs4.sh │ ├── start_ue.sh │ ├── start_ue2.sh │ └── stop_rf.sh ├── Makefile └── USER │ ├── .runinfo │ ├── .ue.nvram │ ├── .ue_emm.nvram │ ├── .usim.nvram │ ├── COPYING │ ├── Makefile │ ├── Makefile.agilent │ ├── Makefile.msg_many │ ├── TOOLS │ ├── thread_ipc.c │ └── thread_ipc.h │ ├── UE_transport_IQ.c │ ├── condtest.c │ ├── dot11.c │ ├── eNB_exmimo2.gtkw │ ├── eNB_transport_IQ.c │ ├── eNB_usrp.gtkw │ ├── emos-raw.c │ ├── exmimo2_2arxg.lime │ ├── exmimo2_2brxg.lime │ ├── ieee80211p-softmodem.c │ ├── init_b200.sh │ ├── init_exmimo.sh │ ├── init_exmimo2.sh │ ├── init_rtai.sh │ ├── lte-softmodem.c │ ├── lte-ue.c │ ├── make_for_usrp.sh │ ├── msg_helper.c │ ├── msg_many.c │ ├── msg_many.h │ ├── rrh.c │ ├── rrh.gtkw │ ├── rrh_gw.c │ ├── rrh_gw.h │ ├── rrh_gw_externs.h │ ├── rt_wrapper.c │ ├── rt_wrapper.h │ ├── sched_dlsch.c │ ├── sched_rx_pdsch.c │ ├── sched_ulsch.c │ ├── sleeptest.c │ ├── stats.c │ ├── stats.fd │ ├── stats.h │ ├── synctest.c │ └── ue_exmimo2.gtkw ├── SCRIPTS ├── PROFILING │ ├── gprof2dot.py │ └── profoai.sh ├── asn1_generate_rrc_messaging_c_code.bash ├── install_asn1.sh ├── install_asn1c_0.9.24.modified.bash ├── msc_gen.py └── svn-merge-meld.py ├── SIMU ├── EXAMPLES │ ├── ETH_EMUL_1eNB_1UE │ │ ├── Makefile │ │ ├── start_enb │ │ └── start_ue │ ├── ETH_EMUL_1eNB_1UE_OAI_DRIVER_ETHERNET │ │ ├── AT_serial_bouchon.py │ │ ├── Makefile │ │ ├── start_enb │ │ ├── start_enb_v2 │ │ ├── start_ue │ │ └── start_ue_cx2android │ ├── ETH_EMUL_1eNB_2UE │ │ ├── Makefile │ │ ├── start_enb │ │ ├── start_ue1 │ │ └── start_ue2 │ ├── OSD │ │ ├── README.txt │ │ └── WEBXML │ │ │ ├── template_0.xml │ │ │ ├── template_1.xml │ │ │ ├── template_10.xml │ │ │ ├── template_11.xml │ │ │ ├── template_120.xml │ │ │ ├── template_121.xml │ │ │ ├── template_122.xml │ │ │ ├── template_123.xml │ │ │ ├── template_124.xml │ │ │ ├── template_125.xml │ │ │ ├── template_126.xml │ │ │ ├── template_127.xml │ │ │ ├── template_128.xml │ │ │ ├── template_129.xml │ │ │ ├── template_13.xml │ │ │ ├── template_14.xml │ │ │ ├── template_15.xml │ │ │ ├── template_16.xml │ │ │ ├── template_17.xml │ │ │ ├── template_18.xml │ │ │ ├── template_19.xml │ │ │ ├── template_2.xml │ │ │ ├── template_20.xml │ │ │ ├── template_21.xml │ │ │ ├── template_22.xml │ │ │ ├── template_26.xml │ │ │ ├── template_27.xml │ │ │ ├── template_29.xml │ │ │ ├── template_3.xml │ │ │ ├── template_33.xml │ │ │ ├── template_34.xml │ │ │ ├── template_4.xml │ │ │ ├── template_40.xml │ │ │ ├── template_41.xml │ │ │ ├── template_42.xml │ │ │ ├── template_43.xml │ │ │ ├── template_5.xml │ │ │ ├── template_6.xml │ │ │ ├── template_60.xml │ │ │ ├── template_7.xml │ │ │ ├── template_70.xml │ │ │ ├── template_8.xml │ │ │ └── template_9.xml │ ├── VIRT_EMUL_1eNB │ │ ├── Makefile │ │ ├── start_one_eNB_multi_UE_nas │ │ └── start_one_eNB_two_UE_PHY_nas │ └── VIRT_EMUL_1eNB_OAI_LITE │ │ ├── Makefile │ │ └── start_one_eNB_multi_UE_nas ├── PROC │ ├── COPYING │ ├── Process.c │ ├── Process.h │ ├── SCRIPT │ │ └── Run.py │ ├── Tsync.h │ ├── channel_sim_proc.c │ ├── channel_sim_proc.h │ └── interface.h └── USER │ ├── .ue.nvram │ ├── .ue_emm.nvram │ ├── .usim.nvram │ ├── COPYING │ ├── Makefile │ ├── channel_sim.c │ ├── cor_SF_sim.c │ ├── cor_SF_sim.h │ ├── event_handler.c │ ├── event_handler.h │ ├── files │ ├── MI_16qam.csv │ ├── MI_16qam.txt │ ├── MI_4qam.csv │ ├── MI_4qam.txt │ ├── MI_64qam.csv │ └── MI_64qam.txt │ ├── init_lte.c │ ├── init_lte.h │ ├── oaisim.c │ ├── oaisim.h │ ├── oaisim_config.c │ ├── oaisim_config.h │ ├── oaisim_functions.c │ ├── oaisim_functions.h │ ├── oaisim_pad.c │ ├── phy_procedures_sim_form.c │ ├── phy_procedures_sim_form.fd │ ├── phy_procedures_sim_form.h │ ├── plot_results.m │ ├── sinr_sim.c │ ├── threadpool.c │ ├── threadpool.h │ └── valgrind.sh ├── TEST ├── AT_COMMANDS │ ├── Makefile │ └── oaisim.c ├── OAI │ ├── README │ ├── case01.py │ ├── case02.py │ ├── case03.py │ ├── case04.py │ ├── case05.py │ ├── case11.py │ ├── case12.py │ ├── case13.py │ ├── core.py │ ├── log.py │ ├── openair.py │ ├── test01.py │ └── test02.py ├── PACKET_TRACER │ ├── Makefile │ ├── README.txt │ ├── messages │ │ ├── Msg4.txt │ │ ├── rrcconnectionreconfiguration.txt │ │ ├── rrcconnectionsetup.txt │ │ ├── sib1.txt │ │ ├── sib2.txt │ │ ├── sib2_3_oai.txt │ │ ├── sib2_3_oai_Rel10.txt │ │ └── sib3.txt │ └── pt.c ├── PDCP │ ├── Makefile │ ├── readme.txt │ ├── test_pdcp.c │ ├── test_pdcp.h │ ├── test_util.h │ ├── todo.txt │ └── with_rlc │ │ ├── Makefile.data_bearer │ │ ├── readme_test_pdcp_rlc.txt │ │ └── test_pdcp_rlc.c ├── RLC_AM_V9.3.0 │ ├── Makefile │ └── oaisim.c ├── RLC_UM_V9.3.0 │ ├── Makefile │ └── oaisim.c └── ROHDE_SCHWARZ │ ├── EthernetRawCommand.cpp │ ├── Makefile │ ├── TcpClient.cpp │ └── TcpClient.h ├── build_helper.bash ├── build_oai.bash ├── itti_vcd_tasks.sav └── perf_oai.bash /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/COPYING -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/README.txt -------------------------------------------------------------------------------- /cmake_targets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/cmake_targets/CMakeLists.txt -------------------------------------------------------------------------------- /cmake_targets/build_oai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/cmake_targets/build_oai -------------------------------------------------------------------------------- /cmake_targets/hss_build/acl.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/cmake_targets/hss_build/acl.conf.in -------------------------------------------------------------------------------- /cmake_targets/hss_build/hss.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/cmake_targets/hss_build/hss.conf.in -------------------------------------------------------------------------------- /cmake_targets/rrh_gw/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/cmake_targets/rrh_gw/CMakeLists.txt -------------------------------------------------------------------------------- /cmake_targets/tools/Kbuild.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/cmake_targets/tools/Kbuild.cmake -------------------------------------------------------------------------------- /cmake_targets/tools/build_epc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/cmake_targets/tools/build_epc -------------------------------------------------------------------------------- /cmake_targets/tools/build_helper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/cmake_targets/tools/build_helper -------------------------------------------------------------------------------- /cmake_targets/tools/build_hss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/cmake_targets/tools/build_hss -------------------------------------------------------------------------------- /cmake_targets/tools/epc.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/cmake_targets/tools/epc.conf.in -------------------------------------------------------------------------------- /cmake_targets/tools/generate_asn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/cmake_targets/tools/generate_asn1 -------------------------------------------------------------------------------- /cmake_targets/tools/init_exmimo2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/cmake_targets/tools/init_exmimo2 -------------------------------------------------------------------------------- /cmake_targets/tools/init_nas_nos1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/cmake_targets/tools/init_nas_nos1 -------------------------------------------------------------------------------- /cmake_targets/tools/mem_usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/cmake_targets/tools/mem_usage -------------------------------------------------------------------------------- /cmake_targets/tools/perf_oai.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/cmake_targets/tools/perf_oai.bash -------------------------------------------------------------------------------- /cmake_targets/tools/run_enb_s1_usrp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/cmake_targets/tools/run_enb_s1_usrp -------------------------------------------------------------------------------- /cmake_targets/tools/run_epc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/cmake_targets/tools/run_epc -------------------------------------------------------------------------------- /cmake_targets/tools/run_hss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/cmake_targets/tools/run_hss -------------------------------------------------------------------------------- /cmake_targets/tools/s6a.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/cmake_targets/tools/s6a.conf.in -------------------------------------------------------------------------------- /cmake_targets/tools/test_helper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/cmake_targets/tools/test_helper -------------------------------------------------------------------------------- /common/utils/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/common/utils/COPYING -------------------------------------------------------------------------------- /common/utils/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/common/utils/Makefile.inc -------------------------------------------------------------------------------- /common/utils/asn1_conversions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/common/utils/asn1_conversions.h -------------------------------------------------------------------------------- /common/utils/assertions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/common/utils/assertions.h -------------------------------------------------------------------------------- /common/utils/collection/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/common/utils/collection/COPYING -------------------------------------------------------------------------------- /common/utils/collection/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/common/utils/collection/queue.h -------------------------------------------------------------------------------- /common/utils/collection/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/common/utils/collection/tree.h -------------------------------------------------------------------------------- /common/utils/itti/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/common/utils/itti/COPYING -------------------------------------------------------------------------------- /common/utils/itti/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/common/utils/itti/Makefile.am -------------------------------------------------------------------------------- /common/utils/itti/assertions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/common/utils/itti/assertions.h -------------------------------------------------------------------------------- /common/utils/itti/backtrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/common/utils/itti/backtrace.c -------------------------------------------------------------------------------- /common/utils/itti/backtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/common/utils/itti/backtrace.h -------------------------------------------------------------------------------- /common/utils/itti/itti_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/common/utils/itti/itti_types.h -------------------------------------------------------------------------------- /common/utils/itti/memory_pools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/common/utils/itti/memory_pools.c -------------------------------------------------------------------------------- /common/utils/itti/memory_pools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/common/utils/itti/memory_pools.h -------------------------------------------------------------------------------- /common/utils/itti/messages_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/common/utils/itti/messages_def.h -------------------------------------------------------------------------------- /common/utils/itti/messages_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/common/utils/itti/messages_types.h -------------------------------------------------------------------------------- /common/utils/itti/signals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/common/utils/itti/signals.c -------------------------------------------------------------------------------- /common/utils/itti/signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/common/utils/itti/signals.h -------------------------------------------------------------------------------- /common/utils/itti/tasks_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/common/utils/itti/tasks_def.h -------------------------------------------------------------------------------- /common/utils/itti/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/common/utils/itti/timer.c -------------------------------------------------------------------------------- /common/utils/itti/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/common/utils/itti/timer.h -------------------------------------------------------------------------------- /common/utils/itti_analyzer/AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/utils/itti_analyzer/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/common/utils/itti_analyzer/COPYING -------------------------------------------------------------------------------- /common/utils/itti_analyzer/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/utils/itti_analyzer/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/common/utils/itti_analyzer/INSTALL -------------------------------------------------------------------------------- /common/utils/itti_analyzer/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/utils/itti_analyzer/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/common/utils/itti_analyzer/README -------------------------------------------------------------------------------- /common/utils/msc/msc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/common/utils/msc/msc.c -------------------------------------------------------------------------------- /common/utils/msc/msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/common/utils/msc/msc.h -------------------------------------------------------------------------------- /maketags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/maketags -------------------------------------------------------------------------------- /oaienv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/oaienv -------------------------------------------------------------------------------- /openair-cn/AUTHORS: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /openair-cn/COMMON/as_message.h: -------------------------------------------------------------------------------- 1 | ../../openair2/COMMON/as_message.h -------------------------------------------------------------------------------- /openair-cn/COMMON/common_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/COMMON/common_types.h -------------------------------------------------------------------------------- /openair-cn/COMMON/messages_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/COMMON/messages_def.h -------------------------------------------------------------------------------- /openair-cn/COMMON/messages_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/COMMON/messages_types.h -------------------------------------------------------------------------------- /openair-cn/COMMON/security_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/COMMON/security_types.h -------------------------------------------------------------------------------- /openair-cn/COMMON/sgw_lite_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/COMMON/sgw_lite_def.h -------------------------------------------------------------------------------- /openair-cn/COMMON/tasks_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/COMMON/tasks_def.h -------------------------------------------------------------------------------- /openair-cn/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/COPYING -------------------------------------------------------------------------------- /openair-cn/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/ChangeLog -------------------------------------------------------------------------------- /openair-cn/DOCS/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/DOCS/COPYING -------------------------------------------------------------------------------- /openair-cn/DOCS/DOXYGEN/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/DOCS/DOXYGEN/COPYING -------------------------------------------------------------------------------- /openair-cn/DOCS/DOXYGEN/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/DOCS/DOXYGEN/Doxyfile.in -------------------------------------------------------------------------------- /openair-cn/DOCS/DOXYGEN/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/DOCS/DOXYGEN/Makefile.am -------------------------------------------------------------------------------- /openair-cn/DOCS/EPC_User_Guide.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/DOCS/EPC_User_Guide.docx -------------------------------------------------------------------------------- /openair-cn/DOCS/EPC_User_Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/DOCS/EPC_User_Guide.pdf -------------------------------------------------------------------------------- /openair-cn/DOCS/Latex/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/DOCS/Latex/COPYING -------------------------------------------------------------------------------- /openair-cn/DOCS/Latex/EPC/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/DOCS/Latex/EPC/COPYING -------------------------------------------------------------------------------- /openair-cn/DOCS/Latex/EPC/EPC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/DOCS/Latex/EPC/EPC.pdf -------------------------------------------------------------------------------- /openair-cn/DOCS/Latex/EPC/EPC.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/DOCS/Latex/EPC/EPC.tex -------------------------------------------------------------------------------- /openair-cn/DOCS/Latex/EPC/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/DOCS/Latex/EPC/Makefile -------------------------------------------------------------------------------- /openair-cn/DOCS/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/DOCS/Makefile.am -------------------------------------------------------------------------------- /openair-cn/GTPV1-U/GTPU_SP/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/GTPV1-U/GTPU_SP/COPYING -------------------------------------------------------------------------------- /openair-cn/GTPV1-U/GTPU_SP/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/GTPV1-U/GTPU_SP/INSTALL -------------------------------------------------------------------------------- /openair-cn/GTPV1-U/GTPU_SP/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/GTPV1-U/GTPU_SP/Makefile -------------------------------------------------------------------------------- /openair-cn/GTPV1-U/GTPU_SP/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/GTPV1-U/GTPU_SP/README -------------------------------------------------------------------------------- /openair-cn/GTPV1-U/GTPU_SP/cmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/GTPV1-U/GTPU_SP/cmd.sh -------------------------------------------------------------------------------- /openair-cn/GTPV1-U/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/GTPV1-U/Makefile.am -------------------------------------------------------------------------------- /openair-cn/GTPV1-U/Makefile.eNB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/GTPV1-U/Makefile.eNB -------------------------------------------------------------------------------- /openair-cn/GTPV1-U/gtpv1u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/GTPV1-U/gtpv1u.h -------------------------------------------------------------------------------- /openair-cn/GTPV1-U/gtpv1u_eNB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/GTPV1-U/gtpv1u_eNB.c -------------------------------------------------------------------------------- /openair-cn/GTPV1-U/gtpv1u_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/GTPV1-U/gtpv1u_task.c -------------------------------------------------------------------------------- /openair-cn/GTPV1-U/nw-gtpv1u/AUTHORS: -------------------------------------------------------------------------------- 1 | Amit Chawre 2 | -------------------------------------------------------------------------------- /openair-cn/GTPV1-U/nw-gtpv1u/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openair-cn/GTPV1-U/nw-gtpv1u/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openair-cn/GTPV1-U/nw-gtpv1u/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openair-cn/GTPV2-C/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/GTPV2-C/Makefile.am -------------------------------------------------------------------------------- /openair-cn/GTPV2-C/nwgtpv2c-0.11/AUTHORS: -------------------------------------------------------------------------------- 1 | Amit Chawre 2 | -------------------------------------------------------------------------------- /openair-cn/GTPV2-C/nwgtpv2c-0.11/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openair-cn/GTPV2-C/nwgtpv2c-0.11/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openair-cn/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/INSTALL -------------------------------------------------------------------------------- /openair-cn/INTERTASK_INTERFACE: -------------------------------------------------------------------------------- 1 | ../common/utils/itti -------------------------------------------------------------------------------- /openair-cn/MME_APP/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/MME_APP/COPYING -------------------------------------------------------------------------------- /openair-cn/MME_APP/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/MME_APP/Makefile.am -------------------------------------------------------------------------------- /openair-cn/MME_APP/mme_app_bearer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/MME_APP/mme_app_bearer.c -------------------------------------------------------------------------------- /openair-cn/MME_APP/mme_app_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/MME_APP/mme_app_config.c -------------------------------------------------------------------------------- /openair-cn/MME_APP/mme_app_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/MME_APP/mme_app_config.h -------------------------------------------------------------------------------- /openair-cn/MME_APP/mme_app_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/MME_APP/mme_app_defs.h -------------------------------------------------------------------------------- /openair-cn/MME_APP/mme_app_extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/MME_APP/mme_app_extern.h -------------------------------------------------------------------------------- /openair-cn/MME_APP/mme_app_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/MME_APP/mme_app_main.c -------------------------------------------------------------------------------- /openair-cn/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/Makefile.am -------------------------------------------------------------------------------- /openair-cn/NAS/COMMON/API/NETWORK/as_message.h: -------------------------------------------------------------------------------- 1 | ../../../../../openair2/COMMON/as_message.h -------------------------------------------------------------------------------- /openair-cn/NAS/COMMON/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/COMMON/COPYING -------------------------------------------------------------------------------- /openair-cn/NAS/COMMON/IES/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/COMMON/IES/COPYING -------------------------------------------------------------------------------- /openair-cn/NAS/COMMON/IES/Cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/COMMON/IES/Cli.c -------------------------------------------------------------------------------- /openair-cn/NAS/COMMON/IES/Cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/COMMON/IES/Cli.h -------------------------------------------------------------------------------- /openair-cn/NAS/COMMON/IES/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/COMMON/IES/Makefile -------------------------------------------------------------------------------- /openair-cn/NAS/COMMON/IES/Nonce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/COMMON/IES/Nonce.c -------------------------------------------------------------------------------- /openair-cn/NAS/COMMON/IES/Nonce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/COMMON/IES/Nonce.h -------------------------------------------------------------------------------- /openair-cn/NAS/COMMON/IES/PdnType.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/COMMON/IES/PdnType.c -------------------------------------------------------------------------------- /openair-cn/NAS/COMMON/IES/PdnType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/COMMON/IES/PdnType.h -------------------------------------------------------------------------------- /openair-cn/NAS/COMMON/IES/SsCode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/COMMON/IES/SsCode.c -------------------------------------------------------------------------------- /openair-cn/NAS/COMMON/IES/SsCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/COMMON/IES/SsCode.h -------------------------------------------------------------------------------- /openair-cn/NAS/COMMON/UTIL/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/COMMON/UTIL/COPYING -------------------------------------------------------------------------------- /openair-cn/NAS/COMMON/UTIL/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/COMMON/UTIL/Makefile -------------------------------------------------------------------------------- /openair-cn/NAS/COMMON/UTIL/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/COMMON/UTIL/device.c -------------------------------------------------------------------------------- /openair-cn/NAS/COMMON/UTIL/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/COMMON/UTIL/device.h -------------------------------------------------------------------------------- /openair-cn/NAS/COMMON/UTIL/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/COMMON/UTIL/memory.c -------------------------------------------------------------------------------- /openair-cn/NAS/COMMON/UTIL/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/COMMON/UTIL/memory.h -------------------------------------------------------------------------------- /openair-cn/NAS/COMMON/UTIL/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/COMMON/UTIL/parser.c -------------------------------------------------------------------------------- /openair-cn/NAS/COMMON/UTIL/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/COMMON/UTIL/parser.h -------------------------------------------------------------------------------- /openair-cn/NAS/COMMON/UTIL/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/COMMON/UTIL/socket.c -------------------------------------------------------------------------------- /openair-cn/NAS/COMMON/UTIL/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/COMMON/UTIL/socket.h -------------------------------------------------------------------------------- /openair-cn/NAS/COMMON/UTIL/stty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/COMMON/UTIL/stty.c -------------------------------------------------------------------------------- /openair-cn/NAS/COMMON/commonDef.h: -------------------------------------------------------------------------------- 1 | ../../../openair2/COMMON/commonDef.h -------------------------------------------------------------------------------- /openair-cn/NAS/COMMON/networkDef.h: -------------------------------------------------------------------------------- 1 | ../../../openair2/COMMON/networkDef.h -------------------------------------------------------------------------------- /openair-cn/NAS/COMMON/securityDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/COMMON/securityDef.h -------------------------------------------------------------------------------- /openair-cn/NAS/COMMON/userDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/COMMON/userDef.h -------------------------------------------------------------------------------- /openair-cn/NAS/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/COPYING -------------------------------------------------------------------------------- /openair-cn/NAS/MME/API/MME/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/API/MME/COPYING -------------------------------------------------------------------------------- /openair-cn/NAS/MME/API/MME/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/API/MME/Makefile -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/Attach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/EMM/Attach.c -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/EMM/COPYING -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/Detach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/EMM/Detach.c -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/EmmCommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/EMM/EmmCommon.c -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/EmmCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/EMM/EmmCommon.h -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/IdleMode.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/IdleMode.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/LowerLayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/EMM/LowerLayer.c -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/LowerLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/EMM/LowerLayer.h -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/EMM/Makefile -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/SAP/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/EMM/SAP/COPYING -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/SAP/EmmDeregisteredAttachNeeded.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/SAP/EmmDeregisteredAttemptingToAttach.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/SAP/EmmDeregisteredLimitedService.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/SAP/EmmDeregisteredNoCellAvailable.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/SAP/EmmDeregisteredNoImsi.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/SAP/EmmDeregisteredNormalService.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/SAP/EmmDeregisteredPlmnSearch.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/SAP/EmmNull.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/SAP/EmmRegisteredAttemptingToUpdate.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/SAP/EmmRegisteredImsiDetachInitiated.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/SAP/EmmRegisteredInitiated.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/SAP/EmmRegisteredLimitedService.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/SAP/EmmRegisteredNoCellAvailable.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/SAP/EmmRegisteredNormalService.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/SAP/EmmRegisteredPlmnSearch.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/SAP/EmmRegisteredUpdateNeeded.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/SAP/EmmServiceRequestInitiated.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/SAP/EmmTrackingAreaUpdatingInitiated.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/SAP/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/EMM/SAP/Makefile -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/SAP/emm_as.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/EMM/SAP/emm_as.c -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/SAP/emm_as.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/EMM/SAP/emm_as.h -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/SAP/emm_cn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/EMM/SAP/emm_cn.c -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/SAP/emm_cn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/EMM/SAP/emm_cn.h -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/emmData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/EMM/emmData.h -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/emm_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/EMM/emm_main.c -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/emm_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/EMM/emm_main.h -------------------------------------------------------------------------------- /openair-cn/NAS/MME/EMM/emm_proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/EMM/emm_proc.h -------------------------------------------------------------------------------- /openair-cn/NAS/MME/ESM/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/ESM/COPYING -------------------------------------------------------------------------------- /openair-cn/NAS/MME/ESM/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/ESM/Makefile -------------------------------------------------------------------------------- /openair-cn/NAS/MME/ESM/SAP/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/ESM/SAP/COPYING -------------------------------------------------------------------------------- /openair-cn/NAS/MME/ESM/SAP/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/ESM/SAP/Makefile -------------------------------------------------------------------------------- /openair-cn/NAS/MME/ESM/esmData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/ESM/esmData.h -------------------------------------------------------------------------------- /openair-cn/NAS/MME/ESM/esm_ebr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/ESM/esm_ebr.c -------------------------------------------------------------------------------- /openair-cn/NAS/MME/ESM/esm_ebr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/ESM/esm_ebr.h -------------------------------------------------------------------------------- /openair-cn/NAS/MME/ESM/esm_ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/ESM/esm_ip.c -------------------------------------------------------------------------------- /openair-cn/NAS/MME/ESM/esm_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/ESM/esm_main.c -------------------------------------------------------------------------------- /openair-cn/NAS/MME/ESM/esm_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/ESM/esm_main.h -------------------------------------------------------------------------------- /openair-cn/NAS/MME/ESM/esm_proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/ESM/esm_proc.h -------------------------------------------------------------------------------- /openair-cn/NAS/MME/ESM/esm_pt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/ESM/esm_pt.c -------------------------------------------------------------------------------- /openair-cn/NAS/MME/ESM/esm_pt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/ESM/esm_pt.h -------------------------------------------------------------------------------- /openair-cn/NAS/MME/MMEprocess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/MMEprocess.c -------------------------------------------------------------------------------- /openair-cn/NAS/MME/nas_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/nas_defs.h -------------------------------------------------------------------------------- /openair-cn/NAS/MME/nas_mme_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/nas_mme_task.c -------------------------------------------------------------------------------- /openair-cn/NAS/MME/nas_network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/nas_network.c -------------------------------------------------------------------------------- /openair-cn/NAS/MME/nas_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/nas_network.h -------------------------------------------------------------------------------- /openair-cn/NAS/MME/nas_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/nas_parser.c -------------------------------------------------------------------------------- /openair-cn/NAS/MME/nas_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/nas_parser.h -------------------------------------------------------------------------------- /openair-cn/NAS/MME/nas_proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/nas_proc.c -------------------------------------------------------------------------------- /openair-cn/NAS/MME/nas_proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/MME/nas_proc.h -------------------------------------------------------------------------------- /openair-cn/NAS/TEST/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/TEST/COPYING -------------------------------------------------------------------------------- /openair-cn/NAS/TEST/MSC/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/TEST/MSC/COPYING -------------------------------------------------------------------------------- /openair-cn/NAS/TEST/MSC/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/TEST/MSC/README -------------------------------------------------------------------------------- /openair-cn/NAS/TEST/MSC/msc_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/TEST/MSC/msc_gen.py -------------------------------------------------------------------------------- /openair-cn/NAS/TEST/MSC/mscgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/TEST/MSC/mscgen -------------------------------------------------------------------------------- /openair-cn/NAS/TEST/NETWORK/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/TEST/NETWORK/COPYING -------------------------------------------------------------------------------- /openair-cn/NAS/TEST/NETWORK/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/TEST/NETWORK/README -------------------------------------------------------------------------------- /openair-cn/NAS/TEST/USER/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/TEST/USER/COPYING -------------------------------------------------------------------------------- /openair-cn/NAS/TEST/USER/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/TEST/USER/Makefile -------------------------------------------------------------------------------- /openair-cn/NAS/TOOLS/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/TOOLS/COPYING -------------------------------------------------------------------------------- /openair-cn/NAS/TOOLS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/TOOLS/Makefile -------------------------------------------------------------------------------- /openair-cn/NAS/TOOLS/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/TOOLS/network.h -------------------------------------------------------------------------------- /openair-cn/NAS/TOOLS/ue_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/TOOLS/ue_data.c -------------------------------------------------------------------------------- /openair-cn/NAS/TOOLS/usim_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/TOOLS/usim_data.c -------------------------------------------------------------------------------- /openair-cn/NAS/UE/API/USER/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/UE/API/USER/COPYING -------------------------------------------------------------------------------- /openair-cn/NAS/UE/API/USER/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/UE/API/USER/Makefile -------------------------------------------------------------------------------- /openair-cn/NAS/UE/API/USIM/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/UE/API/USIM/COPYING -------------------------------------------------------------------------------- /openair-cn/NAS/UE/API/USIM/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/UE/API/USIM/Makefile -------------------------------------------------------------------------------- /openair-cn/NAS/UE/EMM/Attach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/UE/EMM/Attach.c -------------------------------------------------------------------------------- /openair-cn/NAS/UE/EMM/Detach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/UE/EMM/Detach.c -------------------------------------------------------------------------------- /openair-cn/NAS/UE/EMM/IdleMode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/UE/EMM/IdleMode.c -------------------------------------------------------------------------------- /openair-cn/NAS/UE/EMM/IdleMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/UE/EMM/IdleMode.h -------------------------------------------------------------------------------- /openair-cn/NAS/UE/EMM/LowerLayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/UE/EMM/LowerLayer.c -------------------------------------------------------------------------------- /openair-cn/NAS/UE/EMM/LowerLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/UE/EMM/LowerLayer.h -------------------------------------------------------------------------------- /openair-cn/NAS/UE/EMM/SAP/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/UE/EMM/SAP/COPYING -------------------------------------------------------------------------------- /openair-cn/NAS/UE/EMM/SAP/EmmNull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/UE/EMM/SAP/EmmNull.c -------------------------------------------------------------------------------- /openair-cn/NAS/UE/EMM/emmData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/UE/EMM/emmData.h -------------------------------------------------------------------------------- /openair-cn/NAS/UE/EMM/emm_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/UE/EMM/emm_main.c -------------------------------------------------------------------------------- /openair-cn/NAS/UE/EMM/emm_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/UE/EMM/emm_main.h -------------------------------------------------------------------------------- /openair-cn/NAS/UE/EMM/emm_proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/UE/EMM/emm_proc.h -------------------------------------------------------------------------------- /openair-cn/NAS/UE/ESM/esmData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/UE/ESM/esmData.h -------------------------------------------------------------------------------- /openair-cn/NAS/UE/ESM/esm_ebr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/UE/ESM/esm_ebr.c -------------------------------------------------------------------------------- /openair-cn/NAS/UE/ESM/esm_ebr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/UE/ESM/esm_ebr.h -------------------------------------------------------------------------------- /openair-cn/NAS/UE/ESM/esm_ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/UE/ESM/esm_ip.c -------------------------------------------------------------------------------- /openair-cn/NAS/UE/ESM/esm_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/UE/ESM/esm_main.c -------------------------------------------------------------------------------- /openair-cn/NAS/UE/ESM/esm_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/UE/ESM/esm_main.h -------------------------------------------------------------------------------- /openair-cn/NAS/UE/ESM/esm_proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/UE/ESM/esm_proc.h -------------------------------------------------------------------------------- /openair-cn/NAS/UE/ESM/esm_pt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/UE/ESM/esm_pt.c -------------------------------------------------------------------------------- /openair-cn/NAS/UE/ESM/esm_pt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/UE/ESM/esm_pt.h -------------------------------------------------------------------------------- /openair-cn/NAS/UE/UEprocess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/UE/UEprocess.c -------------------------------------------------------------------------------- /openair-cn/NAS/UE/nas_network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/UE/nas_network.c -------------------------------------------------------------------------------- /openair-cn/NAS/UE/nas_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/UE/nas_network.h -------------------------------------------------------------------------------- /openair-cn/NAS/UE/nas_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/UE/nas_parser.c -------------------------------------------------------------------------------- /openair-cn/NAS/UE/nas_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/UE/nas_parser.h -------------------------------------------------------------------------------- /openair-cn/NAS/UE/nas_proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/UE/nas_proc.c -------------------------------------------------------------------------------- /openair-cn/NAS/UE/nas_proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/UE/nas_proc.h -------------------------------------------------------------------------------- /openair-cn/NAS/UE/nas_ue_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/UE/nas_ue_task.c -------------------------------------------------------------------------------- /openair-cn/NAS/UE/nas_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/UE/nas_user.c -------------------------------------------------------------------------------- /openair-cn/NAS/UE/nas_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/NAS/UE/nas_user.h -------------------------------------------------------------------------------- /openair-cn/NEWS: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /openair-cn/OAISIM_MME/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/OAISIM_MME/COPYING -------------------------------------------------------------------------------- /openair-cn/OAI_EPC/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/OAI_EPC/COPYING -------------------------------------------------------------------------------- /openair-cn/OAI_EPC/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/OAI_EPC/Makefile.am -------------------------------------------------------------------------------- /openair-cn/OAI_EPC/oai_epc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/OAI_EPC/oai_epc.c -------------------------------------------------------------------------------- /openair-cn/OAI_EPC/oai_epc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/OAI_EPC/oai_epc.h -------------------------------------------------------------------------------- /openair-cn/OAI_EPC/oai_epc_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/OAI_EPC/oai_epc_log.c -------------------------------------------------------------------------------- /openair-cn/OAI_SGW/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/OAI_SGW/COPYING -------------------------------------------------------------------------------- /openair-cn/OAI_SGW/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/OAI_SGW/Makefile.am -------------------------------------------------------------------------------- /openair-cn/OAI_SGW/oai_sgw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/OAI_SGW/oai_sgw.c -------------------------------------------------------------------------------- /openair-cn/OAI_SGW/oai_sgw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/OAI_SGW/oai_sgw.h -------------------------------------------------------------------------------- /openair-cn/OAI_SGW/oai_sgw_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/OAI_SGW/oai_sgw_log.c -------------------------------------------------------------------------------- /openair-cn/OPENAIRHSS/AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openair-cn/OPENAIRHSS/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openair-cn/OPENAIRHSS/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/OPENAIRHSS/INSTALL -------------------------------------------------------------------------------- /openair-cn/OPENAIRHSS/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openair-cn/OPENAIRHSS/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/OPENAIRHSS/README -------------------------------------------------------------------------------- /openair-cn/OPENAIRHSS/auc/auc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/OPENAIRHSS/auc/auc.h -------------------------------------------------------------------------------- /openair-cn/OPENAIRHSS/auc/fx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/OPENAIRHSS/auc/fx.c -------------------------------------------------------------------------------- /openair-cn/OPENAIRHSS/auc/kdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/OPENAIRHSS/auc/kdf.c -------------------------------------------------------------------------------- /openair-cn/OPENAIRHSS/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | autoreconf --force --install -I m4 -------------------------------------------------------------------------------- /openair-cn/OPENAIRHSS/db/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/OPENAIRHSS/db/COPYING -------------------------------------------------------------------------------- /openair-cn/OPENAIRHSS/debian/compat: -------------------------------------------------------------------------------- 1 | 7 -------------------------------------------------------------------------------- /openair-cn/OPENAIRHSS/debian/copyright: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openair-cn/OPENAIRHSS/debian/dirs: -------------------------------------------------------------------------------- 1 | etc/openair-hss/ -------------------------------------------------------------------------------- /openair-cn/OPENAIRHSS/debian/files: -------------------------------------------------------------------------------- 1 | openair-hss_1.0.0-1_i386.deb misc optional 2 | -------------------------------------------------------------------------------- /openair-cn/OPENAIRHSS/hss_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/OPENAIRHSS/hss_main.c -------------------------------------------------------------------------------- /openair-cn/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/README -------------------------------------------------------------------------------- /openair-cn/S11/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/S11/COPYING -------------------------------------------------------------------------------- /openair-cn/S11/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/S11/Makefile.am -------------------------------------------------------------------------------- /openair-cn/S11/s11_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/S11/s11_common.c -------------------------------------------------------------------------------- /openair-cn/S11/s11_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/S11/s11_common.h -------------------------------------------------------------------------------- /openair-cn/S11/s11_mme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/S11/s11_mme.h -------------------------------------------------------------------------------- /openair-cn/S11/s11_mme_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/S11/s11_mme_task.c -------------------------------------------------------------------------------- /openair-cn/S11/s11_sgw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/S11/s11_sgw.c -------------------------------------------------------------------------------- /openair-cn/S11/s11_sgw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/S11/s11_sgw.h -------------------------------------------------------------------------------- /openair-cn/S1AP/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/S1AP/COPYING -------------------------------------------------------------------------------- /openair-cn/S1AP/MESSAGES/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/S1AP/MESSAGES/COPYING -------------------------------------------------------------------------------- /openair-cn/S1AP/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/S1AP/Makefile.am -------------------------------------------------------------------------------- /openair-cn/S1AP/Makefile.eNB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/S1AP/Makefile.eNB -------------------------------------------------------------------------------- /openair-cn/S1AP/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/S1AP/Makefile.inc -------------------------------------------------------------------------------- /openair-cn/S1AP/s1ap_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/S1AP/s1ap_common.c -------------------------------------------------------------------------------- /openair-cn/S1AP/s1ap_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/S1AP/s1ap_common.h -------------------------------------------------------------------------------- /openair-cn/S1AP/s1ap_eNB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/S1AP/s1ap_eNB.c -------------------------------------------------------------------------------- /openair-cn/S1AP/s1ap_eNB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/S1AP/s1ap_eNB.h -------------------------------------------------------------------------------- /openair-cn/S1AP/s1ap_eNB_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/S1AP/s1ap_eNB_defs.h -------------------------------------------------------------------------------- /openair-cn/S1AP/s1ap_eNB_nnsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/S1AP/s1ap_eNB_nnsf.c -------------------------------------------------------------------------------- /openair-cn/S1AP/s1ap_eNB_nnsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/S1AP/s1ap_eNB_nnsf.h -------------------------------------------------------------------------------- /openair-cn/S1AP/s1ap_eNB_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/S1AP/s1ap_eNB_trace.c -------------------------------------------------------------------------------- /openair-cn/S1AP/s1ap_eNB_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/S1AP/s1ap_eNB_trace.h -------------------------------------------------------------------------------- /openair-cn/S1AP/s1ap_mme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/S1AP/s1ap_mme.c -------------------------------------------------------------------------------- /openair-cn/S1AP/s1ap_mme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/S1AP/s1ap_mme.h -------------------------------------------------------------------------------- /openair-cn/S1AP/s1ap_mme_ta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/S1AP/s1ap_mme_ta.c -------------------------------------------------------------------------------- /openair-cn/S1AP/s1ap_mme_ta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/S1AP/s1ap_mme_ta.h -------------------------------------------------------------------------------- /openair-cn/S6A/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/S6A/COPYING -------------------------------------------------------------------------------- /openair-cn/S6A/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/S6A/Makefile.am -------------------------------------------------------------------------------- /openair-cn/S6A/s6a_apn_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/S6A/s6a_apn_conf.c -------------------------------------------------------------------------------- /openair-cn/S6A/s6a_auth_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/S6A/s6a_auth_info.c -------------------------------------------------------------------------------- /openair-cn/S6A/s6a_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/S6A/s6a_defs.h -------------------------------------------------------------------------------- /openair-cn/S6A/s6a_dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/S6A/s6a_dict.c -------------------------------------------------------------------------------- /openair-cn/S6A/s6a_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/S6A/s6a_error.c -------------------------------------------------------------------------------- /openair-cn/S6A/s6a_messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/S6A/s6a_messages.h -------------------------------------------------------------------------------- /openair-cn/S6A/s6a_peer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/S6A/s6a_peer.c -------------------------------------------------------------------------------- /openair-cn/S6A/s6a_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/S6A/s6a_task.c -------------------------------------------------------------------------------- /openair-cn/S6A/s6a_up_loc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/S6A/s6a_up_loc.c -------------------------------------------------------------------------------- /openair-cn/SCTP/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/SCTP/COPYING -------------------------------------------------------------------------------- /openair-cn/SCTP/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/SCTP/Makefile.am -------------------------------------------------------------------------------- /openair-cn/SCTP/Makefile.eNB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/SCTP/Makefile.eNB -------------------------------------------------------------------------------- /openair-cn/SCTP/sctp_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/SCTP/sctp_common.c -------------------------------------------------------------------------------- /openair-cn/SCTP/sctp_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/SCTP/sctp_common.h -------------------------------------------------------------------------------- /openair-cn/SCTP/sctp_eNB_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/SCTP/sctp_eNB_defs.h -------------------------------------------------------------------------------- /openair-cn/SCTP/sctp_eNB_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/SCTP/sctp_eNB_task.c -------------------------------------------------------------------------------- /openair-cn/SCTP/sctp_eNB_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/SCTP/sctp_eNB_task.h -------------------------------------------------------------------------------- /openair-cn/SECU/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/SECU/COPYING -------------------------------------------------------------------------------- /openair-cn/SECU/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/SECU/Makefile.am -------------------------------------------------------------------------------- /openair-cn/SECU/Makefile.eNB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/SECU/Makefile.eNB -------------------------------------------------------------------------------- /openair-cn/SECU/kdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/SECU/kdf.c -------------------------------------------------------------------------------- /openair-cn/SECU/rijndael.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/SECU/rijndael.c -------------------------------------------------------------------------------- /openair-cn/SECU/rijndael.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/SECU/rijndael.h -------------------------------------------------------------------------------- /openair-cn/SECU/secu_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/SECU/secu_defs.h -------------------------------------------------------------------------------- /openair-cn/SECU/snow3g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/SECU/snow3g.c -------------------------------------------------------------------------------- /openair-cn/SECU/snow3g.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/SECU/snow3g.h -------------------------------------------------------------------------------- /openair-cn/SGW-LITE/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/SGW-LITE/COPYING -------------------------------------------------------------------------------- /openair-cn/SGW-LITE/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/SGW-LITE/Makefile.am -------------------------------------------------------------------------------- /openair-cn/SGW-LITE/s11_causes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/SGW-LITE/s11_causes.c -------------------------------------------------------------------------------- /openair-cn/SGW-LITE/s11_causes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/SGW-LITE/s11_causes.h -------------------------------------------------------------------------------- /openair-cn/SGW-LITE/sgw_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/SGW-LITE/sgw_lite.h -------------------------------------------------------------------------------- /openair-cn/TEST/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/TEST/COPYING -------------------------------------------------------------------------------- /openair-cn/TEST/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/TEST/Makefile.am -------------------------------------------------------------------------------- /openair-cn/TEST/test_kdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/TEST/test_kdf.c -------------------------------------------------------------------------------- /openair-cn/TEST/test_s1ap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/TEST/test_s1ap.c -------------------------------------------------------------------------------- /openair-cn/TEST/test_secu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/TEST/test_secu.c -------------------------------------------------------------------------------- /openair-cn/TEST/test_secu_kenb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/TEST/test_secu_kenb.c -------------------------------------------------------------------------------- /openair-cn/TEST/test_secu_knas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/TEST/test_secu_knas.c -------------------------------------------------------------------------------- /openair-cn/TEST/test_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/TEST/test_util.c -------------------------------------------------------------------------------- /openair-cn/TEST/test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/TEST/test_util.h -------------------------------------------------------------------------------- /openair-cn/UDP/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/UDP/COPYING -------------------------------------------------------------------------------- /openair-cn/UDP/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/UDP/Makefile.am -------------------------------------------------------------------------------- /openair-cn/UDP/Makefile.eNB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/UDP/Makefile.eNB -------------------------------------------------------------------------------- /openair-cn/UDP/udp_eNB_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/UDP/udp_eNB_task.c -------------------------------------------------------------------------------- /openair-cn/UDP/udp_eNB_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/UDP/udp_eNB_task.h -------------------------------------------------------------------------------- /openair-cn/UTILS/CONF/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/UTILS/CONF/COPYING -------------------------------------------------------------------------------- /openair-cn/UTILS/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/UTILS/COPYING -------------------------------------------------------------------------------- /openair-cn/UTILS/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/UTILS/Makefile.am -------------------------------------------------------------------------------- /openair-cn/UTILS/conversions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/UTILS/conversions.c -------------------------------------------------------------------------------- /openair-cn/UTILS/conversions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/UTILS/conversions.h -------------------------------------------------------------------------------- /openair-cn/UTILS/enum_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/UTILS/enum_string.c -------------------------------------------------------------------------------- /openair-cn/UTILS/enum_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/UTILS/enum_string.h -------------------------------------------------------------------------------- /openair-cn/UTILS/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/UTILS/log.c -------------------------------------------------------------------------------- /openair-cn/UTILS/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/UTILS/log.h -------------------------------------------------------------------------------- /openair-cn/UTILS/mcc_mnc_itu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/UTILS/mcc_mnc_itu.c -------------------------------------------------------------------------------- /openair-cn/UTILS/mcc_mnc_itu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/UTILS/mcc_mnc_itu.h -------------------------------------------------------------------------------- /openair-cn/UTILS/mme_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/UTILS/mme_config.c -------------------------------------------------------------------------------- /openair-cn/UTILS/mme_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/UTILS/mme_config.h -------------------------------------------------------------------------------- /openair-cn/UTILS/mme_parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/UTILS/mme_parser.y -------------------------------------------------------------------------------- /openair-cn/UTILS/mme_scanner.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/UTILS/mme_scanner.l -------------------------------------------------------------------------------- /openair-cn/UTILS/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/UTILS/queue.h -------------------------------------------------------------------------------- /openair-cn/UTILS/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/UTILS/tree.h -------------------------------------------------------------------------------- /openair-cn/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/autogen.sh -------------------------------------------------------------------------------- /openair-cn/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/configure.ac -------------------------------------------------------------------------------- /openair-cn/cppcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/cppcheck.sh -------------------------------------------------------------------------------- /openair-cn/valgrind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair-cn/valgrind.sh -------------------------------------------------------------------------------- /openair1/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/COPYING -------------------------------------------------------------------------------- /openair1/MAC_INTERFACE/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/MAC_INTERFACE/COPYING -------------------------------------------------------------------------------- /openair1/MAC_INTERFACE/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/MAC_INTERFACE/defs.h -------------------------------------------------------------------------------- /openair1/MAC_INTERFACE/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/MAC_INTERFACE/extern.h -------------------------------------------------------------------------------- /openair1/MAC_INTERFACE/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/MAC_INTERFACE/init.c -------------------------------------------------------------------------------- /openair1/MAC_INTERFACE/vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/MAC_INTERFACE/vars.h -------------------------------------------------------------------------------- /openair1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/Makefile -------------------------------------------------------------------------------- /openair1/PHY/CODING/3gpplte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/CODING/3gpplte.c -------------------------------------------------------------------------------- /openair1/PHY/CODING/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/CODING/COPYING -------------------------------------------------------------------------------- /openair1/PHY/CODING/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/CODING/Makefile -------------------------------------------------------------------------------- /openair1/PHY/CODING/Makefile.arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/CODING/Makefile.arm -------------------------------------------------------------------------------- /openair1/PHY/CODING/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/CODING/README.txt -------------------------------------------------------------------------------- /openair1/PHY/CODING/crc_byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/CODING/crc_byte.c -------------------------------------------------------------------------------- /openair1/PHY/CODING/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/CODING/defs.h -------------------------------------------------------------------------------- /openair1/PHY/CODING/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/CODING/extern.h -------------------------------------------------------------------------------- /openair1/PHY/CODING/lte_tf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/CODING/lte_tf.m -------------------------------------------------------------------------------- /openair1/PHY/CODING/scrambler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/CODING/scrambler.h -------------------------------------------------------------------------------- /openair1/PHY/CODING/vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/CODING/vars.h -------------------------------------------------------------------------------- /openair1/PHY/CODING/viterbi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/CODING/viterbi.c -------------------------------------------------------------------------------- /openair1/PHY/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/COPYING -------------------------------------------------------------------------------- /openair1/PHY/INIT/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/INIT/COPYING -------------------------------------------------------------------------------- /openair1/PHY/INIT/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/INIT/README.txt -------------------------------------------------------------------------------- /openair1/PHY/INIT/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/INIT/defs.h -------------------------------------------------------------------------------- /openair1/PHY/INIT/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/INIT/extern.h -------------------------------------------------------------------------------- /openair1/PHY/INIT/init_top.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/INIT/init_top.c -------------------------------------------------------------------------------- /openair1/PHY/INIT/lte_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/INIT/lte_init.c -------------------------------------------------------------------------------- /openair1/PHY/INIT/lte_parms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/INIT/lte_parms.c -------------------------------------------------------------------------------- /openair1/PHY/INIT/vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/INIT/vars.h -------------------------------------------------------------------------------- /openair1/PHY/LTE_REFSIG/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/LTE_REFSIG/COPYING -------------------------------------------------------------------------------- /openair1/PHY/LTE_REFSIG/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/LTE_REFSIG/defs.h -------------------------------------------------------------------------------- /openair1/PHY/LTE_REFSIG/lte_ul.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/LTE_REFSIG/lte_ul.m -------------------------------------------------------------------------------- /openair1/PHY/LTE_TRANSPORT/dci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/LTE_TRANSPORT/dci.c -------------------------------------------------------------------------------- /openair1/PHY/LTE_TRANSPORT/dci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/LTE_TRANSPORT/dci.h -------------------------------------------------------------------------------- /openair1/PHY/LTE_TRANSPORT/pss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/LTE_TRANSPORT/pss.c -------------------------------------------------------------------------------- /openair1/PHY/LTE_TRANSPORT/sss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/LTE_TRANSPORT/sss.c -------------------------------------------------------------------------------- /openair1/PHY/LTE_TRANSPORT/sss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/LTE_TRANSPORT/sss.h -------------------------------------------------------------------------------- /openair1/PHY/LTE_TRANSPORT/uci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/LTE_TRANSPORT/uci.h -------------------------------------------------------------------------------- /openair1/PHY/MODULATION/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/MODULATION/COPYING -------------------------------------------------------------------------------- /openair1/PHY/MODULATION/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/MODULATION/defs.h -------------------------------------------------------------------------------- /openair1/PHY/MODULATION/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/MODULATION/extern.h -------------------------------------------------------------------------------- /openair1/PHY/MODULATION/vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/MODULATION/vars.h -------------------------------------------------------------------------------- /openair1/PHY/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/Makefile.inc -------------------------------------------------------------------------------- /openair1/PHY/TOOLS/8bit_txmux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/TOOLS/8bit_txmux.c -------------------------------------------------------------------------------- /openair1/PHY/TOOLS/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/TOOLS/COPYING -------------------------------------------------------------------------------- /openair1/PHY/TOOLS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/TOOLS/Makefile -------------------------------------------------------------------------------- /openair1/PHY/TOOLS/angle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/TOOLS/angle.c -------------------------------------------------------------------------------- /openair1/PHY/TOOLS/cadd_sv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/TOOLS/cadd_sv.c -------------------------------------------------------------------------------- /openair1/PHY/TOOLS/cadd_vv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/TOOLS/cadd_vv.c -------------------------------------------------------------------------------- /openair1/PHY/TOOLS/cdot_prod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/TOOLS/cdot_prod.c -------------------------------------------------------------------------------- /openair1/PHY/TOOLS/cmult_mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/TOOLS/cmult_mm.c -------------------------------------------------------------------------------- /openair1/PHY/TOOLS/cmult_sv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/TOOLS/cmult_sv.c -------------------------------------------------------------------------------- /openair1/PHY/TOOLS/cmult_vv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/TOOLS/cmult_vv.c -------------------------------------------------------------------------------- /openair1/PHY/TOOLS/cmult_vvh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/TOOLS/cmult_vvh.c -------------------------------------------------------------------------------- /openair1/PHY/TOOLS/costable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/TOOLS/costable.h -------------------------------------------------------------------------------- /openair1/PHY/TOOLS/dB_routines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/TOOLS/dB_routines.c -------------------------------------------------------------------------------- /openair1/PHY/TOOLS/dB_routines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/TOOLS/dB_routines.h -------------------------------------------------------------------------------- /openair1/PHY/TOOLS/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/TOOLS/defs.h -------------------------------------------------------------------------------- /openair1/PHY/TOOLS/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/TOOLS/extern.h -------------------------------------------------------------------------------- /openair1/PHY/TOOLS/file_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/TOOLS/file_output.c -------------------------------------------------------------------------------- /openair1/PHY/TOOLS/invSqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/TOOLS/invSqrt.c -------------------------------------------------------------------------------- /openair1/PHY/TOOLS/log2_approx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/TOOLS/log2_approx.c -------------------------------------------------------------------------------- /openair1/PHY/TOOLS/lte_dfts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/TOOLS/lte_dfts.c -------------------------------------------------------------------------------- /openair1/PHY/TOOLS/lut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/TOOLS/lut.c -------------------------------------------------------------------------------- /openair1/PHY/TOOLS/smbv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/TOOLS/smbv.c -------------------------------------------------------------------------------- /openair1/PHY/TOOLS/smbv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/TOOLS/smbv.h -------------------------------------------------------------------------------- /openair1/PHY/TOOLS/sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/TOOLS/sqrt.c -------------------------------------------------------------------------------- /openair1/PHY/TOOLS/time_meas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/TOOLS/time_meas.c -------------------------------------------------------------------------------- /openair1/PHY/TOOLS/time_meas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/TOOLS/time_meas.h -------------------------------------------------------------------------------- /openair1/PHY/TOOLS/twiddle1536.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/TOOLS/twiddle1536.h -------------------------------------------------------------------------------- /openair1/PHY/TOOLS/twiddle6144.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/TOOLS/twiddle6144.h -------------------------------------------------------------------------------- /openair1/PHY/TOOLS/vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/TOOLS/vars.h -------------------------------------------------------------------------------- /openair1/PHY/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/defs.h -------------------------------------------------------------------------------- /openair1/PHY/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/extern.h -------------------------------------------------------------------------------- /openair1/PHY/impl_defs_lte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/impl_defs_lte.h -------------------------------------------------------------------------------- /openair1/PHY/impl_defs_top.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/impl_defs_top.h -------------------------------------------------------------------------------- /openair1/PHY/spec_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/spec_defs.h -------------------------------------------------------------------------------- /openair1/PHY/spec_defs_top.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/spec_defs_top.h -------------------------------------------------------------------------------- /openair1/PHY/sse_intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/sse_intrin.h -------------------------------------------------------------------------------- /openair1/PHY/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/types.h -------------------------------------------------------------------------------- /openair1/PHY/vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/PHY/vars.h -------------------------------------------------------------------------------- /openair1/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/README.TXT -------------------------------------------------------------------------------- /openair1/SCHED/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/SCHED/COPYING -------------------------------------------------------------------------------- /openair1/SCHED/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/SCHED/Makefile.inc -------------------------------------------------------------------------------- /openair1/SCHED/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/SCHED/defs.h -------------------------------------------------------------------------------- /openair1/SCHED/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/SCHED/extern.h -------------------------------------------------------------------------------- /openair1/SCHED/pucch_pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/SCHED/pucch_pc.c -------------------------------------------------------------------------------- /openair1/SCHED/pusch_pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/SCHED/pusch_pc.c -------------------------------------------------------------------------------- /openair1/SCHED/rt_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/SCHED/rt_compat.h -------------------------------------------------------------------------------- /openair1/SCHED/vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/SCHED/vars.h -------------------------------------------------------------------------------- /openair1/SIMULATION/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/SIMULATION/COPYING -------------------------------------------------------------------------------- /openair1/SIMULATION/LTE_PHY/BLER_SIMULATIONS/bler_0.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openair1/SIMULATION/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/SIMULATION/Makefile.inc -------------------------------------------------------------------------------- /openair1/SIMULATION/RF/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/SIMULATION/RF/COPYING -------------------------------------------------------------------------------- /openair1/SIMULATION/RF/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/SIMULATION/RF/Makefile -------------------------------------------------------------------------------- /openair1/SIMULATION/RF/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/SIMULATION/RF/adc.c -------------------------------------------------------------------------------- /openair1/SIMULATION/RF/dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/SIMULATION/RF/dac.c -------------------------------------------------------------------------------- /openair1/SIMULATION/RF/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/SIMULATION/RF/defs.h -------------------------------------------------------------------------------- /openair1/SIMULATION/RF/rf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/SIMULATION/RF/rf.c -------------------------------------------------------------------------------- /openair1/SIMULATION/TOOLS/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/SIMULATION/TOOLS/defs.h -------------------------------------------------------------------------------- /openair1/SIMULATION/TOOLS/scm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/SIMULATION/TOOLS/scm.m -------------------------------------------------------------------------------- /openair1/SIMULATION/TOOLS/taus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair1/SIMULATION/TOOLS/taus.c -------------------------------------------------------------------------------- /openair2/COMMON/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/COMMON/COPYING -------------------------------------------------------------------------------- /openair2/COMMON/as_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/COMMON/as_message.h -------------------------------------------------------------------------------- /openair2/COMMON/commonDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/COMMON/commonDef.h -------------------------------------------------------------------------------- /openair2/COMMON/mac_primitives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/COMMON/mac_primitives.h -------------------------------------------------------------------------------- /openair2/COMMON/messages_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/COMMON/messages_def.h -------------------------------------------------------------------------------- /openair2/COMMON/messages_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/COMMON/messages_types.h -------------------------------------------------------------------------------- /openair2/COMMON/networkDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/COMMON/networkDef.h -------------------------------------------------------------------------------- /openair2/COMMON/openair_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/COMMON/openair_defs.h -------------------------------------------------------------------------------- /openair2/COMMON/openair_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/COMMON/openair_types.h -------------------------------------------------------------------------------- /openair2/COMMON/platform_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/COMMON/platform_types.h -------------------------------------------------------------------------------- /openair2/COMMON/rrm_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/COMMON/rrm_constants.h -------------------------------------------------------------------------------- /openair2/COMMON/rtos_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/COMMON/rtos_header.h -------------------------------------------------------------------------------- /openair2/COMMON/tasks_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/COMMON/tasks_def.h -------------------------------------------------------------------------------- /openair2/DOCS/DOXYGEN/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/DOCS/DOXYGEN/Doxyfile -------------------------------------------------------------------------------- /openair2/ENB_APP/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/ENB_APP/Makefile.inc -------------------------------------------------------------------------------- /openair2/ENB_APP/enb_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/ENB_APP/enb_app.c -------------------------------------------------------------------------------- /openair2/ENB_APP/enb_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/ENB_APP/enb_app.h -------------------------------------------------------------------------------- /openair2/ENB_APP/enb_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/ENB_APP/enb_config.c -------------------------------------------------------------------------------- /openair2/ENB_APP/enb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/ENB_APP/enb_config.h -------------------------------------------------------------------------------- /openair2/LAYER2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/LAYER2/COPYING -------------------------------------------------------------------------------- /openair2/LAYER2/MAC/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/LAYER2/MAC/COPYING -------------------------------------------------------------------------------- /openair2/LAYER2/MAC/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/LAYER2/MAC/config.c -------------------------------------------------------------------------------- /openair2/LAYER2/MAC/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/LAYER2/MAC/defs.h -------------------------------------------------------------------------------- /openair2/LAYER2/MAC/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/LAYER2/MAC/extern.h -------------------------------------------------------------------------------- /openair2/LAYER2/MAC/l1_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/LAYER2/MAC/l1_helpers.c -------------------------------------------------------------------------------- /openair2/LAYER2/MAC/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/LAYER2/MAC/main.c -------------------------------------------------------------------------------- /openair2/LAYER2/MAC/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/LAYER2/MAC/proto.h -------------------------------------------------------------------------------- /openair2/LAYER2/MAC/rar_tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/LAYER2/MAC/rar_tools.c -------------------------------------------------------------------------------- /openair2/LAYER2/MAC/vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/LAYER2/MAC/vars.h -------------------------------------------------------------------------------- /openair2/LAYER2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/LAYER2/Makefile -------------------------------------------------------------------------------- /openair2/LAYER2/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/LAYER2/Makefile.inc -------------------------------------------------------------------------------- /openair2/LAYER2/RLC/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/LAYER2/RLC/COPYING -------------------------------------------------------------------------------- /openair2/LAYER2/RLC/mac_primitives.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openair2/LAYER2/RLC/rlc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/LAYER2/RLC/rlc.c -------------------------------------------------------------------------------- /openair2/LAYER2/RLC/rlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/LAYER2/RLC/rlc.h -------------------------------------------------------------------------------- /openair2/LAYER2/RLC/rlc_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/LAYER2/RLC/rlc_def.h -------------------------------------------------------------------------------- /openair2/LAYER2/RLC/rlc_mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/LAYER2/RLC/rlc_mac.c -------------------------------------------------------------------------------- /openair2/LAYER2/RLC/rlc_mpls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/LAYER2/RLC/rlc_mpls.c -------------------------------------------------------------------------------- /openair2/LAYER2/RLC/rlc_rrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/LAYER2/RLC/rlc_rrc.c -------------------------------------------------------------------------------- /openair2/LAYER2/layer2_top.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/LAYER2/layer2_top.c -------------------------------------------------------------------------------- /openair2/LAYER2/openair2_proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/LAYER2/openair2_proc.c -------------------------------------------------------------------------------- /openair2/LAYER2/register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/LAYER2/register.c -------------------------------------------------------------------------------- /openair2/LAYER2/register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/LAYER2/register.h -------------------------------------------------------------------------------- /openair2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/Makefile -------------------------------------------------------------------------------- /openair2/NAS/DRIVER/CELLULAR/stop_rg_cellular: -------------------------------------------------------------------------------- 1 | ifconfig oai0 down 2 | rmmod -w nascellrg 3 | -------------------------------------------------------------------------------- /openair2/NAS/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/NAS/Makefile.inc -------------------------------------------------------------------------------- /openair2/NAS/nas_ue_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/NAS/nas_ue_task.h -------------------------------------------------------------------------------- /openair2/PHY_INTERFACE/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/PHY_INTERFACE/COPYING -------------------------------------------------------------------------------- /openair2/PHY_INTERFACE/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/PHY_INTERFACE/defs.h -------------------------------------------------------------------------------- /openair2/PHY_INTERFACE/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/PHY_INTERFACE/extern.h -------------------------------------------------------------------------------- /openair2/PHY_INTERFACE/vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/PHY_INTERFACE/vars.h -------------------------------------------------------------------------------- /openair2/RRC/LITE/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/RRC/LITE/COPYING -------------------------------------------------------------------------------- /openair2/RRC/LITE/L2_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/RRC/LITE/L2_interface.c -------------------------------------------------------------------------------- /openair2/RRC/LITE/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/RRC/LITE/defs.h -------------------------------------------------------------------------------- /openair2/RRC/LITE/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/RRC/LITE/extern.h -------------------------------------------------------------------------------- /openair2/RRC/LITE/mesh_top.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/RRC/LITE/mesh_top.c -------------------------------------------------------------------------------- /openair2/RRC/LITE/plmn_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/RRC/LITE/plmn_data.h -------------------------------------------------------------------------------- /openair2/RRC/LITE/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/RRC/LITE/proto.h -------------------------------------------------------------------------------- /openair2/RRC/LITE/rrc_UE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/RRC/LITE/rrc_UE.c -------------------------------------------------------------------------------- /openair2/RRC/LITE/rrc_UE_ral.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/RRC/LITE/rrc_UE_ral.c -------------------------------------------------------------------------------- /openair2/RRC/LITE/rrc_UE_ral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/RRC/LITE/rrc_UE_ral.h -------------------------------------------------------------------------------- /openair2/RRC/LITE/rrc_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/RRC/LITE/rrc_common.c -------------------------------------------------------------------------------- /openair2/RRC/LITE/rrc_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/RRC/LITE/rrc_config.c -------------------------------------------------------------------------------- /openair2/RRC/LITE/rrc_eNB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/RRC/LITE/rrc_eNB.c -------------------------------------------------------------------------------- /openair2/RRC/LITE/rrc_eNB_S1AP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/RRC/LITE/rrc_eNB_S1AP.c -------------------------------------------------------------------------------- /openair2/RRC/LITE/rrc_eNB_S1AP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/RRC/LITE/rrc_eNB_S1AP.h -------------------------------------------------------------------------------- /openair2/RRC/LITE/rrc_eNB_ral.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/RRC/LITE/rrc_eNB_ral.c -------------------------------------------------------------------------------- /openair2/RRC/LITE/rrc_eNB_ral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/RRC/LITE/rrc_eNB_ral.h -------------------------------------------------------------------------------- /openair2/RRC/LITE/rrc_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/RRC/LITE/rrc_types.h -------------------------------------------------------------------------------- /openair2/RRC/LITE/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/RRC/LITE/utils.c -------------------------------------------------------------------------------- /openair2/RRC/LITE/vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/RRC/LITE/vars.h -------------------------------------------------------------------------------- /openair2/RRC/NAS/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/RRC/NAS/COPYING -------------------------------------------------------------------------------- /openair2/RRC/NAS/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/RRC/NAS/Makefile.inc -------------------------------------------------------------------------------- /openair2/RRC/NAS/nas_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/RRC/NAS/nas_config.c -------------------------------------------------------------------------------- /openair2/RRC/NAS/nas_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/RRC/NAS/nas_config.h -------------------------------------------------------------------------------- /openair2/RRC/NAS/rb_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/RRC/NAS/rb_config.c -------------------------------------------------------------------------------- /openair2/RRC/NAS/rb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/RRC/NAS/rb_config.h -------------------------------------------------------------------------------- /openair2/RRM_4_RRC_LITE/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/RRM_4_RRC_LITE/COPYING -------------------------------------------------------------------------------- /openair2/RRM_4_RRC_LITE/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openair2/RRM_4_RRC_LITE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/RRM_4_RRC_LITE/Makefile -------------------------------------------------------------------------------- /openair2/RRM_4_RRC_LITE/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openair2/RRM_4_RRC_LITE/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/RRM_4_RRC_LITE/README -------------------------------------------------------------------------------- /openair2/RRM_4_RRC_LITE/src/version.h: -------------------------------------------------------------------------------- 1 | #define VERSION_STRING "dev-SVN-r0" -------------------------------------------------------------------------------- /openair2/UTIL/BIGPHYS/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/BIGPHYS/COPYING -------------------------------------------------------------------------------- /openair2/UTIL/BIGPHYS/bigphys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/BIGPHYS/bigphys.c -------------------------------------------------------------------------------- /openair2/UTIL/BIGPHYS/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/BIGPHYS/defs.h -------------------------------------------------------------------------------- /openair2/UTIL/CLI/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/CLI/COPYING -------------------------------------------------------------------------------- /openair2/UTIL/CLI/cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/CLI/cli.c -------------------------------------------------------------------------------- /openair2/UTIL/CLI/cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/CLI/cli.h -------------------------------------------------------------------------------- /openair2/UTIL/CLI/cli_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/CLI/cli_cmd.c -------------------------------------------------------------------------------- /openair2/UTIL/CLI/cli_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/CLI/cli_if.h -------------------------------------------------------------------------------- /openair2/UTIL/CLI/cli_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/CLI/cli_server.c -------------------------------------------------------------------------------- /openair2/UTIL/FIFO/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/FIFO/COPYING -------------------------------------------------------------------------------- /openair2/UTIL/FIFO/pad_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/FIFO/pad_list.c -------------------------------------------------------------------------------- /openair2/UTIL/FIFO/pad_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/FIFO/pad_list.h -------------------------------------------------------------------------------- /openair2/UTIL/FIFO/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/FIFO/types.h -------------------------------------------------------------------------------- /openair2/UTIL/LFDS/liblfds6.1.1/liblfds611/dirs: -------------------------------------------------------------------------------- 1 | DIRS = src 2 | 3 | -------------------------------------------------------------------------------- /openair2/UTIL/LFDS/liblfds6.1.1/liblfds611/src/dirs: -------------------------------------------------------------------------------- 1 | DIRS = single_dir_for_windows_kernel 2 | 3 | 4 | -------------------------------------------------------------------------------- /openair2/UTIL/LISTS/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/LISTS/COPYING -------------------------------------------------------------------------------- /openair2/UTIL/LISTS/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/LISTS/list.c -------------------------------------------------------------------------------- /openair2/UTIL/LISTS/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/LISTS/list.h -------------------------------------------------------------------------------- /openair2/UTIL/LISTS/list2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/LISTS/list2.c -------------------------------------------------------------------------------- /openair2/UTIL/LOG/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/LOG/COPYING -------------------------------------------------------------------------------- /openair2/UTIL/LOG/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/LOG/README.txt -------------------------------------------------------------------------------- /openair2/UTIL/LOG/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/LOG/log.c -------------------------------------------------------------------------------- /openair2/UTIL/LOG/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/LOG/log.h -------------------------------------------------------------------------------- /openair2/UTIL/LOG/log_extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/LOG/log_extern.h -------------------------------------------------------------------------------- /openair2/UTIL/LOG/log_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/LOG/log_if.h -------------------------------------------------------------------------------- /openair2/UTIL/MATH/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/MATH/COPYING -------------------------------------------------------------------------------- /openair2/UTIL/MATH/crc_byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/MATH/crc_byte.c -------------------------------------------------------------------------------- /openair2/UTIL/MATH/oml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/MATH/oml.c -------------------------------------------------------------------------------- /openair2/UTIL/MATH/oml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/MATH/oml.h -------------------------------------------------------------------------------- /openair2/UTIL/MATH/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/MATH/random.c -------------------------------------------------------------------------------- /openair2/UTIL/MATH/taus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/MATH/taus.c -------------------------------------------------------------------------------- /openair2/UTIL/MEM/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/MEM/COPYING -------------------------------------------------------------------------------- /openair2/UTIL/MEM/mem_block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/MEM/mem_block.c -------------------------------------------------------------------------------- /openair2/UTIL/MEM/mem_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/MEM/mem_block.h -------------------------------------------------------------------------------- /openair2/UTIL/MEM/mem_mngt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/MEM/mem_mngt.c -------------------------------------------------------------------------------- /openair2/UTIL/MEM/mem_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/MEM/mem_pool.h -------------------------------------------------------------------------------- /openair2/UTIL/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/Makefile.inc -------------------------------------------------------------------------------- /openair2/UTIL/OCG/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Sorting=6 3 | Timestamp=2011,2,7,10,19,55 4 | -------------------------------------------------------------------------------- /openair2/UTIL/OCG/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OCG/COPYING -------------------------------------------------------------------------------- /openair2/UTIL/OCG/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OCG/Doxyfile -------------------------------------------------------------------------------- /openair2/UTIL/OCG/OCG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OCG/OCG.c -------------------------------------------------------------------------------- /openair2/UTIL/OCG/OCG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OCG/OCG.h -------------------------------------------------------------------------------- /openair2/UTIL/OCG/OCG_call_emu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OCG/OCG_call_emu.c -------------------------------------------------------------------------------- /openair2/UTIL/OCG/OCG_call_emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OCG/OCG_call_emu.h -------------------------------------------------------------------------------- /openair2/UTIL/OCG/OCG_extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OCG/OCG_extern.h -------------------------------------------------------------------------------- /openair2/UTIL/OCG/OCG_get_opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OCG/OCG_get_opt.c -------------------------------------------------------------------------------- /openair2/UTIL/OCG/OCG_get_opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OCG/OCG_get_opt.h -------------------------------------------------------------------------------- /openair2/UTIL/OCG/OCG_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OCG/OCG_if.h -------------------------------------------------------------------------------- /openair2/UTIL/OCG/OCG_save_XML.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OCG/OCG_save_XML.c -------------------------------------------------------------------------------- /openair2/UTIL/OCG/OCG_save_XML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OCG/OCG_save_XML.h -------------------------------------------------------------------------------- /openair2/UTIL/OCG/OCG_vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OCG/OCG_vars.h -------------------------------------------------------------------------------- /openair2/UTIL/OCG/Readme.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OCG/Readme.doxy -------------------------------------------------------------------------------- /openair2/UTIL/OCG/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OCG/makefile -------------------------------------------------------------------------------- /openair2/UTIL/OCG/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OCG/readme.txt -------------------------------------------------------------------------------- /openair2/UTIL/OMG/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMG/COPYING -------------------------------------------------------------------------------- /openair2/UTIL/OMG/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMG/README.TXT -------------------------------------------------------------------------------- /openair2/UTIL/OMG/TRACE/static_1enb.tr: -------------------------------------------------------------------------------- 1 | 1 0 2106 1813 0 2 | 3 | -------------------------------------------------------------------------------- /openair2/UTIL/OMG/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMG/common.c -------------------------------------------------------------------------------- /openair2/UTIL/OMG/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMG/defs.h -------------------------------------------------------------------------------- /openair2/UTIL/OMG/grid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMG/grid.c -------------------------------------------------------------------------------- /openair2/UTIL/OMG/grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMG/grid.h -------------------------------------------------------------------------------- /openair2/UTIL/OMG/id_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMG/id_manager.c -------------------------------------------------------------------------------- /openair2/UTIL/OMG/id_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMG/id_manager.h -------------------------------------------------------------------------------- /openair2/UTIL/OMG/job.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMG/job.c -------------------------------------------------------------------------------- /openair2/UTIL/OMG/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMG/makefile -------------------------------------------------------------------------------- /openair2/UTIL/OMG/makefile_old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMG/makefile_old -------------------------------------------------------------------------------- /openair2/UTIL/OMG/mobility.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMG/mobility.txt -------------------------------------------------------------------------------- /openair2/UTIL/OMG/omg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMG/omg.c -------------------------------------------------------------------------------- /openair2/UTIL/OMG/omg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMG/omg.h -------------------------------------------------------------------------------- /openair2/UTIL/OMG/omg_vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMG/omg_vars.h -------------------------------------------------------------------------------- /openair2/UTIL/OMG/rwalk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMG/rwalk.c -------------------------------------------------------------------------------- /openair2/UTIL/OMG/rwalk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMG/rwalk.h -------------------------------------------------------------------------------- /openair2/UTIL/OMG/rwp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMG/rwp.c -------------------------------------------------------------------------------- /openair2/UTIL/OMG/rwp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMG/rwp.h -------------------------------------------------------------------------------- /openair2/UTIL/OMG/static.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMG/static.c -------------------------------------------------------------------------------- /openair2/UTIL/OMG/static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMG/static.h -------------------------------------------------------------------------------- /openair2/UTIL/OMG/sumo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMG/sumo.c -------------------------------------------------------------------------------- /openair2/UTIL/OMG/sumo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMG/sumo.h -------------------------------------------------------------------------------- /openair2/UTIL/OMG/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMG/trace.c -------------------------------------------------------------------------------- /openair2/UTIL/OMG/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMG/trace.h -------------------------------------------------------------------------------- /openair2/UTIL/OMV/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMV/COPYING -------------------------------------------------------------------------------- /openair2/UTIL/OMV/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMV/README.txt -------------------------------------------------------------------------------- /openair2/UTIL/OMV/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMV/blue.png -------------------------------------------------------------------------------- /openair2/UTIL/OMV/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMV/green.png -------------------------------------------------------------------------------- /openair2/UTIL/OMV/jpg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMV/jpg.jpeg -------------------------------------------------------------------------------- /openair2/UTIL/OMV/mus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMV/mus.png -------------------------------------------------------------------------------- /openair2/UTIL/OMV/mywindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMV/mywindow.cpp -------------------------------------------------------------------------------- /openair2/UTIL/OMV/mywindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMV/mywindow.h -------------------------------------------------------------------------------- /openair2/UTIL/OMV/new.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMV/new.jpg -------------------------------------------------------------------------------- /openair2/UTIL/OMV/new2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMV/new2.jpg -------------------------------------------------------------------------------- /openair2/UTIL/OMV/omv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMV/omv.cpp -------------------------------------------------------------------------------- /openair2/UTIL/OMV/openglwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMV/openglwidget.h -------------------------------------------------------------------------------- /openair2/UTIL/OMV/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMV/red.png -------------------------------------------------------------------------------- /openair2/UTIL/OMV/structures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMV/structures.h -------------------------------------------------------------------------------- /openair2/UTIL/OMV/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMV/white.png -------------------------------------------------------------------------------- /openair2/UTIL/OMV/wow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OMV/wow.png -------------------------------------------------------------------------------- /openair2/UTIL/OPT/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OPT/COPYING -------------------------------------------------------------------------------- /openair2/UTIL/OPT/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OPT/README.txt -------------------------------------------------------------------------------- /openair2/UTIL/OPT/mac_pcap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OPT/mac_pcap.h -------------------------------------------------------------------------------- /openair2/UTIL/OPT/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OPT/opt.h -------------------------------------------------------------------------------- /openair2/UTIL/OPT/probe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OPT/probe.c -------------------------------------------------------------------------------- /openair2/UTIL/OPT/vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OPT/vars.h -------------------------------------------------------------------------------- /openair2/UTIL/OSA/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OSA/COPYING -------------------------------------------------------------------------------- /openair2/UTIL/OSA/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OSA/README -------------------------------------------------------------------------------- /openair2/UTIL/OSA/osa_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OSA/osa_defs.h -------------------------------------------------------------------------------- /openair2/UTIL/OSA/osa_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OSA/osa_internal.h -------------------------------------------------------------------------------- /openair2/UTIL/OSA/osa_rijndael.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OSA/osa_rijndael.c -------------------------------------------------------------------------------- /openair2/UTIL/OSA/osa_rijndael.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OSA/osa_rijndael.h -------------------------------------------------------------------------------- /openair2/UTIL/OSA/osa_snow3g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OSA/osa_snow3g.c -------------------------------------------------------------------------------- /openair2/UTIL/OSA/osa_snow3g.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OSA/osa_snow3g.h -------------------------------------------------------------------------------- /openair2/UTIL/OSD/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OSD/COPYING -------------------------------------------------------------------------------- /openair2/UTIL/OSD/OCG.pid: -------------------------------------------------------------------------------- 1 | 7415 2 | -------------------------------------------------------------------------------- /openair2/UTIL/OSD/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OSD/README.txt -------------------------------------------------------------------------------- /openair2/UTIL/OSD/css/fix-ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OSD/css/fix-ie.css -------------------------------------------------------------------------------- /openair2/UTIL/OSD/css/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OSD/css/ie.css -------------------------------------------------------------------------------- /openair2/UTIL/OSD/css/ie6.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OSD/css/ie6.css -------------------------------------------------------------------------------- /openair2/UTIL/OSD/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OSD/css/print.css -------------------------------------------------------------------------------- /openair2/UTIL/OSD/css/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OSD/css/screen.css -------------------------------------------------------------------------------- /openair2/UTIL/OSD/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OSD/css/style.css -------------------------------------------------------------------------------- /openair2/UTIL/OSD/fake_oaisim: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ls -lR / 3 | 4 | -------------------------------------------------------------------------------- /openair2/UTIL/OSD/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OSD/form.php -------------------------------------------------------------------------------- /openair2/UTIL/OSD/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OSD/header.php -------------------------------------------------------------------------------- /openair2/UTIL/OSD/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OSD/index.php -------------------------------------------------------------------------------- /openair2/UTIL/OSD/recep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OSD/recep.php -------------------------------------------------------------------------------- /openair2/UTIL/OSD/toto.php: -------------------------------------------------------------------------------- 1 | toto1234 2 | -------------------------------------------------------------------------------- /openair2/UTIL/OTG/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OTG/COPYING -------------------------------------------------------------------------------- /openair2/UTIL/OTG/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OTG/Doxyfile -------------------------------------------------------------------------------- /openair2/UTIL/OTG/OTGplot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OTG/OTGplot -------------------------------------------------------------------------------- /openair2/UTIL/OTG/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OTG/main.c -------------------------------------------------------------------------------- /openair2/UTIL/OTG/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OTG/makefile -------------------------------------------------------------------------------- /openair2/UTIL/OTG/otg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OTG/otg.c -------------------------------------------------------------------------------- /openair2/UTIL/OTG/otg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OTG/otg.h -------------------------------------------------------------------------------- /openair2/UTIL/OTG/otg_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OTG/otg_config.h -------------------------------------------------------------------------------- /openair2/UTIL/OTG/otg_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OTG/otg_defs.h -------------------------------------------------------------------------------- /openair2/UTIL/OTG/otg_externs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OTG/otg_externs.h -------------------------------------------------------------------------------- /openair2/UTIL/OTG/otg_form.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OTG/otg_form.c -------------------------------------------------------------------------------- /openair2/UTIL/OTG/otg_form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OTG/otg_form.h -------------------------------------------------------------------------------- /openair2/UTIL/OTG/otg_kpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OTG/otg_kpi.c -------------------------------------------------------------------------------- /openair2/UTIL/OTG/otg_kpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OTG/otg_kpi.h -------------------------------------------------------------------------------- /openair2/UTIL/OTG/otg_models.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OTG/otg_models.c -------------------------------------------------------------------------------- /openair2/UTIL/OTG/otg_models.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OTG/otg_models.h -------------------------------------------------------------------------------- /openair2/UTIL/OTG/otg_rx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OTG/otg_rx.c -------------------------------------------------------------------------------- /openair2/UTIL/OTG/otg_rx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OTG/otg_rx.h -------------------------------------------------------------------------------- /openair2/UTIL/OTG/otg_tx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OTG/otg_tx.c -------------------------------------------------------------------------------- /openair2/UTIL/OTG/otg_tx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OTG/otg_tx.h -------------------------------------------------------------------------------- /openair2/UTIL/OTG/otg_vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/OTG/otg_vars.h -------------------------------------------------------------------------------- /openair2/UTIL/SCTP/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/SCTP/COPYING -------------------------------------------------------------------------------- /openair2/UTIL/TIMER/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/TIMER/COPYING -------------------------------------------------------------------------------- /openair2/UTIL/TIMER/umts_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/TIMER/umts_timer.c -------------------------------------------------------------------------------- /openair2/UTIL/TIMER/umts_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/TIMER/umts_timer.h -------------------------------------------------------------------------------- /openair2/UTIL/TRACE/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/TRACE/COPYING -------------------------------------------------------------------------------- /openair2/UTIL/TRACE/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/TRACE/print.h -------------------------------------------------------------------------------- /openair2/UTIL/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/UTIL/queue.h -------------------------------------------------------------------------------- /openair2/X2AP/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/X2AP/COPYING -------------------------------------------------------------------------------- /openair2/X2AP/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/X2AP/Makefile.inc -------------------------------------------------------------------------------- /openair2/X2AP/x2ap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/X2AP/x2ap.c -------------------------------------------------------------------------------- /openair2/X2AP/x2ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/X2AP/x2ap.h -------------------------------------------------------------------------------- /openair2/X2AP/x2ap_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/X2AP/x2ap_common.c -------------------------------------------------------------------------------- /openair2/X2AP/x2ap_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair2/X2AP/x2ap_common.h -------------------------------------------------------------------------------- /openair3/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/COPYING -------------------------------------------------------------------------------- /openair3/DOCS/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/DOCS/COPYING -------------------------------------------------------------------------------- /openair3/DOCS/DOXYGEN/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/DOCS/DOXYGEN/Doxyfile -------------------------------------------------------------------------------- /openair3/MESH/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/COPYING -------------------------------------------------------------------------------- /openair3/MESH/L3_rrc_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/L3_rrc_defs.h -------------------------------------------------------------------------------- /openair3/MESH/L3_rrc_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/L3_rrc_interface.h -------------------------------------------------------------------------------- /openair3/MESH/RRM/EMUL/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/EMUL/Makefile -------------------------------------------------------------------------------- /openair3/MESH/RRM/EMUL/actdiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/EMUL/actdiff.c -------------------------------------------------------------------------------- /openair3/MESH/RRM/EMUL/actdiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/EMUL/actdiff.h -------------------------------------------------------------------------------- /openair3/MESH/RRM/GRAPH/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/GRAPH/Makefile -------------------------------------------------------------------------------- /openair3/MESH/RRM/GRAPH/graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/GRAPH/graph -------------------------------------------------------------------------------- /openair3/MESH/RRM/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/Makefile -------------------------------------------------------------------------------- /openair3/MESH/RRM/SN_freq_form.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/SN_freq_form.c -------------------------------------------------------------------------------- /openair3/MESH/RRM/SN_freq_form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/SN_freq_form.h -------------------------------------------------------------------------------- /openair3/MESH/RRM/VCD/mkvcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/VCD/mkvcd -------------------------------------------------------------------------------- /openair3/MESH/RRM/ch_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/ch_init.c -------------------------------------------------------------------------------- /openair3/MESH/RRM/ch_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/ch_init.h -------------------------------------------------------------------------------- /openair3/MESH/RRM/channels_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/channels_db.c -------------------------------------------------------------------------------- /openair3/MESH/RRM/channels_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/channels_db.h -------------------------------------------------------------------------------- /openair3/MESH/RRM/cmm_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/cmm_msg.c -------------------------------------------------------------------------------- /openair3/MESH/RRM/cmm_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/cmm_msg.h -------------------------------------------------------------------------------- /openair3/MESH/RRM/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/debug.h -------------------------------------------------------------------------------- /openair3/MESH/RRM/freq_ass_op.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/freq_ass_op.c -------------------------------------------------------------------------------- /openair3/MESH/RRM/freq_ass_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/freq_ass_op.h -------------------------------------------------------------------------------- /openair3/MESH/RRM/ip_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/ip_msg.c -------------------------------------------------------------------------------- /openair3/MESH/RRM/ip_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/ip_msg.h -------------------------------------------------------------------------------- /openair3/MESH/RRM/mr_attach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/mr_attach.c -------------------------------------------------------------------------------- /openair3/MESH/RRM/mr_attach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/mr_attach.h -------------------------------------------------------------------------------- /openair3/MESH/RRM/msg_mngt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/msg_mngt.c -------------------------------------------------------------------------------- /openair3/MESH/RRM/msg_mngt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/msg_mngt.h -------------------------------------------------------------------------------- /openair3/MESH/RRM/neighbor_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/neighbor_db.c -------------------------------------------------------------------------------- /openair3/MESH/RRM/neighbor_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/neighbor_db.h -------------------------------------------------------------------------------- /openair3/MESH/RRM/pusu_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/pusu_msg.c -------------------------------------------------------------------------------- /openair3/MESH/RRM/pusu_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/pusu_msg.h -------------------------------------------------------------------------------- /openair3/MESH/RRM/rb_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/rb_db.c -------------------------------------------------------------------------------- /openair3/MESH/RRM/rb_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/rb_db.h -------------------------------------------------------------------------------- /openair3/MESH/RRM/rb_mngt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/rb_mngt.c -------------------------------------------------------------------------------- /openair3/MESH/RRM/rb_mngt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/rb_mngt.h -------------------------------------------------------------------------------- /openair3/MESH/RRM/rrc_rrm_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/rrc_rrm_msg.h -------------------------------------------------------------------------------- /openair3/MESH/RRM/rrm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/rrm.c -------------------------------------------------------------------------------- /openair3/MESH/RRM/rrm.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/rrm.cfg -------------------------------------------------------------------------------- /openair3/MESH/RRM/rrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/rrm.h -------------------------------------------------------------------------------- /openair3/MESH/RRM/rrm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/rrm.sh -------------------------------------------------------------------------------- /openair3/MESH/RRM/rrm_5nodes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/rrm_5nodes.sh -------------------------------------------------------------------------------- /openair3/MESH/RRM/rrm_SENS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/rrm_SENS.sh -------------------------------------------------------------------------------- /openair3/MESH/RRM/rrm_SS2_CH1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/rrm_SS2_CH1.sh -------------------------------------------------------------------------------- /openair3/MESH/RRM/rrm_constant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/rrm_constant.c -------------------------------------------------------------------------------- /openair3/MESH/RRM/rrm_constant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/rrm_constant.h -------------------------------------------------------------------------------- /openair3/MESH/RRM/rrm_graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/rrm_graph.c -------------------------------------------------------------------------------- /openair3/MESH/RRM/rrm_sock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/rrm_sock.c -------------------------------------------------------------------------------- /openair3/MESH/RRM/rrm_sock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/rrm_sock.h -------------------------------------------------------------------------------- /openair3/MESH/RRM/rrm_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/rrm_test.sh -------------------------------------------------------------------------------- /openair3/MESH/RRM/rrm_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/rrm_util.c -------------------------------------------------------------------------------- /openair3/MESH/RRM/rrm_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/rrm_util.h -------------------------------------------------------------------------------- /openair3/MESH/RRM/sens_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/sens_db.c -------------------------------------------------------------------------------- /openair3/MESH/RRM/sens_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/sens_db.h -------------------------------------------------------------------------------- /openair3/MESH/RRM/sens_op.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/sens_op.c -------------------------------------------------------------------------------- /openair3/MESH/RRM/sens_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/sens_op.h -------------------------------------------------------------------------------- /openair3/MESH/RRM/sens_sensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/sens_sensor.c -------------------------------------------------------------------------------- /openair3/MESH/RRM/sens_sensor.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/sens_sensor.fd -------------------------------------------------------------------------------- /openair3/MESH/RRM/sens_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/sens_sensor.h -------------------------------------------------------------------------------- /openair3/MESH/RRM/sensing_form.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/sensing_form.c -------------------------------------------------------------------------------- /openair3/MESH/RRM/sensing_form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/sensing_form.h -------------------------------------------------------------------------------- /openair3/MESH/RRM/transact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/transact.c -------------------------------------------------------------------------------- /openair3/MESH/RRM/transact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/MESH/RRM/transact.h -------------------------------------------------------------------------------- /openair3/UTILS/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/UTILS/COPYING -------------------------------------------------------------------------------- /openair3/history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/openair3/history.txt -------------------------------------------------------------------------------- /svn2git/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/svn2git/README.txt -------------------------------------------------------------------------------- /svn2git/authors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/svn2git/authors.txt -------------------------------------------------------------------------------- /svn2git/authors_original.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/svn2git/authors_original.txt -------------------------------------------------------------------------------- /svn2git/check_diff_author.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/svn2git/check_diff_author.sh -------------------------------------------------------------------------------- /svn2git/git-author-rewrite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/svn2git/git-author-rewrite.sh -------------------------------------------------------------------------------- /targets/ARCH/COMMON/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/ARCH/COMMON/COPYING -------------------------------------------------------------------------------- /targets/ARCH/COMMON/common_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/ARCH/COMMON/common_lib.h -------------------------------------------------------------------------------- /targets/ARCH/EXMIMO/DEFS/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/ARCH/EXMIMO/DEFS/COPYING -------------------------------------------------------------------------------- /targets/COMMON/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/COMMON/COPYING -------------------------------------------------------------------------------- /targets/COMMON/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/COMMON/Makefile.inc -------------------------------------------------------------------------------- /targets/COMMON/create_tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/COMMON/create_tasks.c -------------------------------------------------------------------------------- /targets/COMMON/create_tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/COMMON/create_tasks.h -------------------------------------------------------------------------------- /targets/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/COPYING -------------------------------------------------------------------------------- /targets/DOCS/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/DOCS/Doxyfile -------------------------------------------------------------------------------- /targets/DOCS/api_icic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/DOCS/api_icic.xml -------------------------------------------------------------------------------- /targets/DOCS/images/oai_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/DOCS/images/oai_logo.png -------------------------------------------------------------------------------- /targets/DOCS/oaiemu.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/DOCS/oaiemu.doc -------------------------------------------------------------------------------- /targets/DOCS/openair_header.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/DOCS/openair_header.tex -------------------------------------------------------------------------------- /targets/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/Makefile -------------------------------------------------------------------------------- /targets/Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/Makefile.common -------------------------------------------------------------------------------- /targets/Makerules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/Makerules -------------------------------------------------------------------------------- /targets/PROJECTS/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/PROJECTS/COPYING -------------------------------------------------------------------------------- /targets/PROJECTS/E-MBMS/enb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/PROJECTS/E-MBMS/enb.conf -------------------------------------------------------------------------------- /targets/PROJECTS/TDDREC/v0/readme.txt: -------------------------------------------------------------------------------- 1 | old project by Misard and Florian 2 | -------------------------------------------------------------------------------- /targets/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/README.txt -------------------------------------------------------------------------------- /targets/RT/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/Makefile -------------------------------------------------------------------------------- /targets/RT/USER/.runinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/.runinfo -------------------------------------------------------------------------------- /targets/RT/USER/.ue.nvram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/.ue.nvram -------------------------------------------------------------------------------- /targets/RT/USER/.ue_emm.nvram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/.ue_emm.nvram -------------------------------------------------------------------------------- /targets/RT/USER/.usim.nvram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/.usim.nvram -------------------------------------------------------------------------------- /targets/RT/USER/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/COPYING -------------------------------------------------------------------------------- /targets/RT/USER/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/Makefile -------------------------------------------------------------------------------- /targets/RT/USER/Makefile.agilent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/Makefile.agilent -------------------------------------------------------------------------------- /targets/RT/USER/condtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/condtest.c -------------------------------------------------------------------------------- /targets/RT/USER/dot11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/dot11.c -------------------------------------------------------------------------------- /targets/RT/USER/eNB_exmimo2.gtkw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/eNB_exmimo2.gtkw -------------------------------------------------------------------------------- /targets/RT/USER/eNB_usrp.gtkw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/eNB_usrp.gtkw -------------------------------------------------------------------------------- /targets/RT/USER/emos-raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/emos-raw.c -------------------------------------------------------------------------------- /targets/RT/USER/init_b200.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/init_b200.sh -------------------------------------------------------------------------------- /targets/RT/USER/init_exmimo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/init_exmimo.sh -------------------------------------------------------------------------------- /targets/RT/USER/init_exmimo2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/init_exmimo2.sh -------------------------------------------------------------------------------- /targets/RT/USER/init_rtai.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/init_rtai.sh -------------------------------------------------------------------------------- /targets/RT/USER/lte-softmodem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/lte-softmodem.c -------------------------------------------------------------------------------- /targets/RT/USER/lte-ue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/lte-ue.c -------------------------------------------------------------------------------- /targets/RT/USER/make_for_usrp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/make_for_usrp.sh -------------------------------------------------------------------------------- /targets/RT/USER/msg_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/msg_helper.c -------------------------------------------------------------------------------- /targets/RT/USER/msg_many.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/msg_many.c -------------------------------------------------------------------------------- /targets/RT/USER/msg_many.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/msg_many.h -------------------------------------------------------------------------------- /targets/RT/USER/rrh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/rrh.c -------------------------------------------------------------------------------- /targets/RT/USER/rrh.gtkw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/rrh.gtkw -------------------------------------------------------------------------------- /targets/RT/USER/rrh_gw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/rrh_gw.c -------------------------------------------------------------------------------- /targets/RT/USER/rrh_gw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/rrh_gw.h -------------------------------------------------------------------------------- /targets/RT/USER/rrh_gw_externs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/rrh_gw_externs.h -------------------------------------------------------------------------------- /targets/RT/USER/rt_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/rt_wrapper.c -------------------------------------------------------------------------------- /targets/RT/USER/rt_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/rt_wrapper.h -------------------------------------------------------------------------------- /targets/RT/USER/sched_dlsch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/sched_dlsch.c -------------------------------------------------------------------------------- /targets/RT/USER/sched_rx_pdsch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/sched_rx_pdsch.c -------------------------------------------------------------------------------- /targets/RT/USER/sched_ulsch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/sched_ulsch.c -------------------------------------------------------------------------------- /targets/RT/USER/sleeptest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/sleeptest.c -------------------------------------------------------------------------------- /targets/RT/USER/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/stats.c -------------------------------------------------------------------------------- /targets/RT/USER/stats.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/stats.fd -------------------------------------------------------------------------------- /targets/RT/USER/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/stats.h -------------------------------------------------------------------------------- /targets/RT/USER/synctest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/synctest.c -------------------------------------------------------------------------------- /targets/RT/USER/ue_exmimo2.gtkw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/RT/USER/ue_exmimo2.gtkw -------------------------------------------------------------------------------- /targets/SCRIPTS/install_asn1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/SCRIPTS/install_asn1.sh -------------------------------------------------------------------------------- /targets/SCRIPTS/msc_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/SCRIPTS/msc_gen.py -------------------------------------------------------------------------------- /targets/SIMU/PROC/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/SIMU/PROC/COPYING -------------------------------------------------------------------------------- /targets/SIMU/PROC/Process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/SIMU/PROC/Process.c -------------------------------------------------------------------------------- /targets/SIMU/PROC/Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/SIMU/PROC/Process.h -------------------------------------------------------------------------------- /targets/SIMU/PROC/SCRIPT/Run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/SIMU/PROC/SCRIPT/Run.py -------------------------------------------------------------------------------- /targets/SIMU/PROC/Tsync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/SIMU/PROC/Tsync.h -------------------------------------------------------------------------------- /targets/SIMU/PROC/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/SIMU/PROC/interface.h -------------------------------------------------------------------------------- /targets/SIMU/USER/.ue.nvram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/SIMU/USER/.ue.nvram -------------------------------------------------------------------------------- /targets/SIMU/USER/.ue_emm.nvram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/SIMU/USER/.ue_emm.nvram -------------------------------------------------------------------------------- /targets/SIMU/USER/.usim.nvram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/SIMU/USER/.usim.nvram -------------------------------------------------------------------------------- /targets/SIMU/USER/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/SIMU/USER/COPYING -------------------------------------------------------------------------------- /targets/SIMU/USER/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/SIMU/USER/Makefile -------------------------------------------------------------------------------- /targets/SIMU/USER/channel_sim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/SIMU/USER/channel_sim.c -------------------------------------------------------------------------------- /targets/SIMU/USER/cor_SF_sim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/SIMU/USER/cor_SF_sim.c -------------------------------------------------------------------------------- /targets/SIMU/USER/cor_SF_sim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/SIMU/USER/cor_SF_sim.h -------------------------------------------------------------------------------- /targets/SIMU/USER/init_lte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/SIMU/USER/init_lte.c -------------------------------------------------------------------------------- /targets/SIMU/USER/init_lte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/SIMU/USER/init_lte.h -------------------------------------------------------------------------------- /targets/SIMU/USER/oaisim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/SIMU/USER/oaisim.c -------------------------------------------------------------------------------- /targets/SIMU/USER/oaisim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/SIMU/USER/oaisim.h -------------------------------------------------------------------------------- /targets/SIMU/USER/oaisim_pad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/SIMU/USER/oaisim_pad.c -------------------------------------------------------------------------------- /targets/SIMU/USER/plot_results.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/SIMU/USER/plot_results.m -------------------------------------------------------------------------------- /targets/SIMU/USER/sinr_sim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/SIMU/USER/sinr_sim.c -------------------------------------------------------------------------------- /targets/SIMU/USER/threadpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/SIMU/USER/threadpool.c -------------------------------------------------------------------------------- /targets/SIMU/USER/threadpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/SIMU/USER/threadpool.h -------------------------------------------------------------------------------- /targets/SIMU/USER/valgrind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/SIMU/USER/valgrind.sh -------------------------------------------------------------------------------- /targets/TEST/OAI/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/TEST/OAI/README -------------------------------------------------------------------------------- /targets/TEST/OAI/case01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/TEST/OAI/case01.py -------------------------------------------------------------------------------- /targets/TEST/OAI/case02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/TEST/OAI/case02.py -------------------------------------------------------------------------------- /targets/TEST/OAI/case03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/TEST/OAI/case03.py -------------------------------------------------------------------------------- /targets/TEST/OAI/case04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/TEST/OAI/case04.py -------------------------------------------------------------------------------- /targets/TEST/OAI/case05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/TEST/OAI/case05.py -------------------------------------------------------------------------------- /targets/TEST/OAI/case11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/TEST/OAI/case11.py -------------------------------------------------------------------------------- /targets/TEST/OAI/case12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/TEST/OAI/case12.py -------------------------------------------------------------------------------- /targets/TEST/OAI/case13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/TEST/OAI/case13.py -------------------------------------------------------------------------------- /targets/TEST/OAI/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/TEST/OAI/core.py -------------------------------------------------------------------------------- /targets/TEST/OAI/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/TEST/OAI/log.py -------------------------------------------------------------------------------- /targets/TEST/OAI/openair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/TEST/OAI/openair.py -------------------------------------------------------------------------------- /targets/TEST/OAI/test01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/TEST/OAI/test01.py -------------------------------------------------------------------------------- /targets/TEST/OAI/test02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/TEST/OAI/test02.py -------------------------------------------------------------------------------- /targets/TEST/PACKET_TRACER/messages/Msg4.txt: -------------------------------------------------------------------------------- 1 | 1C5AF0FA9E3966 2 | -------------------------------------------------------------------------------- /targets/TEST/PACKET_TRACER/messages/rrcconnectionsetup.txt: -------------------------------------------------------------------------------- 1 | 3F0060129B26E0D9E1C952C860C0827030 2 | -------------------------------------------------------------------------------- /targets/TEST/PACKET_TRACER/messages/sib3.txt: -------------------------------------------------------------------------------- 1 | 00043020384000 2 | -------------------------------------------------------------------------------- /targets/TEST/PACKET_TRACER/pt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/TEST/PACKET_TRACER/pt.c -------------------------------------------------------------------------------- /targets/TEST/PDCP/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/TEST/PDCP/Makefile -------------------------------------------------------------------------------- /targets/TEST/PDCP/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/TEST/PDCP/readme.txt -------------------------------------------------------------------------------- /targets/TEST/PDCP/test_pdcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/TEST/PDCP/test_pdcp.c -------------------------------------------------------------------------------- /targets/TEST/PDCP/test_pdcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/TEST/PDCP/test_pdcp.h -------------------------------------------------------------------------------- /targets/TEST/PDCP/test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/TEST/PDCP/test_util.h -------------------------------------------------------------------------------- /targets/TEST/PDCP/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/TEST/PDCP/todo.txt -------------------------------------------------------------------------------- /targets/build_helper.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/build_helper.bash -------------------------------------------------------------------------------- /targets/build_oai.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/build_oai.bash -------------------------------------------------------------------------------- /targets/itti_vcd_tasks.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/itti_vcd_tasks.sav -------------------------------------------------------------------------------- /targets/perf_oai.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sibbi77/openair4G/HEAD/targets/perf_oai.bash --------------------------------------------------------------------------------