├── .ci ├── install │ ├── cp-auto-install-options.txt │ └── dp-auto-install-options.txt ├── tc1 │ ├── config │ │ ├── cp_config.cfg │ │ ├── dp_config.cfg │ │ └── interface.cfg │ ├── cp │ │ └── custom-cp.mk │ └── dp │ │ └── custom-dp.mk └── tc2 │ ├── config │ ├── cp_config.cfg │ ├── dp_config.cfg │ ├── interface.cfg │ └── static_arp.cfg │ ├── cp │ └── custom-cp.mk │ └── dp │ └── custom-dp.mk ├── .fossa.yml ├── .gitattributes ├── .gitconfig ├── .gitignore ├── Dockerfile ├── INSTALL.MD ├── LICENSE ├── Makefile ├── README.MD ├── RELEASE_NOTES.MD ├── VERSION ├── config ├── adc_rules.cfg ├── cdr.cfg ├── cp_config.cfg ├── dp_config.cfg ├── interface.cfg ├── meter_profile.cfg ├── pcc_rules.cfg ├── rules_ipv4.cfg ├── rules_ipv6.cfg ├── sdf_rules.cfg ├── simu_cp.cfg └── static_arp.cfg ├── cp ├── Makefile ├── chk_cpcfg.sh ├── cp.h ├── cp_stats.c ├── cp_stats.h ├── cp_sync.c ├── custom-cp.mk ├── debug_str.c ├── debug_str.h ├── gtpv2c.c ├── gtpv2c.h ├── gtpv2c_ie.h ├── gtpv2c_messages │ ├── bearer_resource_cmd.c │ ├── create_bearer.c │ ├── create_s5s8_session.c │ ├── create_session.c │ ├── delete_bearer.c │ ├── delete_s5s8_session.c │ ├── delete_session.c │ ├── downlink_data_notification.c │ ├── gtpv2c_echo.c │ ├── modify_bearer.c │ └── release_access_bearer.c ├── gtpv2c_set_ie.c ├── gtpv2c_set_ie.h ├── main.c ├── nb.c ├── nb.h ├── packet_filters.c ├── packet_filters.h ├── run.sh ├── stats_sync.c ├── ue.c └── ue.h ├── cp_dp_api ├── vepc_cp_dp_api.c └── vepc_cp_dp_api.h ├── delete_af_ifaces.sh ├── deploy └── k8s │ ├── README.md │ ├── cp.yaml │ ├── dp-nets.yaml │ └── dp.yaml ├── dev_scripts ├── restore_wkni.sh ├── setenv_dpdk1611.sh ├── setenv_dpdk1802.sh ├── start-ZMQ_Streamer.sh ├── stop-ZMQ_Streamer.sh ├── switch_dpdk1611.sh ├── switch_dpdk1802.sh ├── switch_wokni.sh └── wokni │ ├── Makefile_wkni │ ├── Makefile_wokni │ ├── epc_arp_wokni.c │ ├── epc_dl_wokni.c │ ├── epc_ul_wokni.c │ └── init_wokni.c ├── docs ├── CP_README.MD ├── DP_README.MD ├── METER.MD └── PERF_TUNING.MD ├── doxy-api.conf ├── dp ├── Makefile ├── acl.c ├── acl_dp.h ├── adc_table.c ├── build_ngic.sh ├── cdr.c ├── cdr.h ├── cdrsummary.py ├── chk_dpcfg.sh ├── commands.c ├── commands.h ├── conf │ ├── cert.pem │ └── key.pem ├── config.c ├── custom-dp.mk ├── dataplane.c ├── ddn.c ├── ddn_utils.c ├── dp_rules_verify │ ├── Rule_verfication │ │ ├── test_Default_rule │ │ │ ├── adc_rules.cfg │ │ │ ├── pcc_rules.cfg │ │ │ ├── sdf_rules.cfg │ │ │ ├── test_result.txt │ │ │ └── xcdr_default_match.csv │ │ ├── test_adc-pcc-precede │ │ │ ├── adc_rules.cfg │ │ │ ├── pcc_rules.cfg │ │ │ ├── sdf_rules.cfg │ │ │ ├── test_result.txt │ │ │ └── xcdr_adc-pcc-precede.csv │ │ ├── test_sdfDL-adcUL │ │ │ ├── adc_rules.cfg │ │ │ ├── pcc_rules.cfg │ │ │ ├── sdf_rules.cfg │ │ │ ├── test_result.txt │ │ │ └── xcdr_sdfDL-adcUL.csv │ │ ├── test_sdfDLDROP-adcUL │ │ │ ├── adc_rules.cfg │ │ │ ├── pcc_rules.cfg │ │ │ ├── sdf_rules.cfg │ │ │ ├── test_result.txt │ │ │ └── xcdr_sdfDLDROP-adcUL.csv │ │ ├── test_sdfDLDROPip-adcDLip │ │ │ ├── adc_rules.cfg │ │ │ ├── pcc_rules.cfg │ │ │ ├── sdf_rules.cfg │ │ │ ├── test_result.txt │ │ │ └── xcdr_sdfDLDROPip-adcDLip.csv │ │ └── test_sdfULDROP-adcDL │ │ │ ├── adc_rules.cfg │ │ │ ├── pcc_rules.cfg │ │ │ ├── sdf_rules.cfg │ │ │ ├── test_result.txt │ │ │ └── xcdr_sdfULDROP-adcDL.csv │ ├── dp_rules_verify.py │ └── rules_parser.py ├── ether.c ├── ether.h ├── extended_cdr.c ├── gtpu.c ├── gtpu.h ├── gtpu_echo.c ├── init.c ├── ipv4.c ├── ipv4.h ├── kni_pkt_handler.c ├── main.c ├── main.h ├── master_cdr.c ├── master_cdr.h ├── meter.c ├── meter.h ├── pcc_table.c ├── perf_timer.h ├── pipeline │ ├── epc_arp.c │ ├── epc_arp.h │ ├── epc_arp_icmp_api.hlp │ ├── epc_dl.c │ ├── epc_load_balance.c │ ├── epc_packet_framework.c │ ├── epc_packet_framework.h │ ├── epc_rx.c │ ├── epc_spns_dns.c │ ├── epc_tx.c │ ├── epc_ul.c │ └── epc_worker.c ├── pkt_handler.c ├── run.sh ├── sess_table.c ├── session_cdr.c ├── session_cdr.h ├── ssl_client.c ├── ssl_client.h ├── stats.c ├── stats.h ├── structs.h ├── timer_stats.c ├── util.c └── util.h ├── dpdk-18.02_common_linuxapp ├── install.sh ├── install_builddeps.sh ├── install_rundeps.sh ├── interface ├── interface.c ├── interface.h ├── ipc │ ├── dp_ipc_api.c │ └── dp_ipc_api.h ├── udp │ ├── vepc_udp.c │ └── vepc_udp.h └── zmq │ ├── zmq_push_pull.c │ ├── zmq_push_pull.h │ ├── zmqpub.c │ ├── zmqpub.h │ ├── zmqsub.c │ └── zmqsub.h ├── kni_ifcfg ├── kni-S1Udevcfg.sh ├── kni-S1Udevdel.sh ├── kni-SGIdevcfg.sh └── kni-SGIdevdel.sh ├── lib ├── Makefile └── libsponsdn │ ├── Makefile │ ├── sponsdn.c │ └── sponsdn.h ├── libgtpv2c ├── .gitignore ├── Makefile ├── include │ ├── gtpv2c_messages.h │ ├── ie.h │ ├── req_resp.h │ └── util.h └── src │ ├── decoder.c │ ├── encoder.c │ └── util.c ├── patches └── v2-net-i40e-fix-avx2-driver-check-for-rx-rearm.diff ├── pcap ├── cp_in.pcap ├── dl_with_dn_ip.pcap ├── downlink_100flows.pcap ├── indirect_dn_resp_2.pcap ├── ul_with_dn_ip.pcap └── uplink_100flows.pcap ├── setenv.sh ├── setup_af_ifaces.sh └── test ├── Makefile ├── fmea ├── README.txt ├── fmea_test.cfg ├── host_config.cfg ├── pass_criteria.cfg ├── test.cfg ├── test_fmea.sh └── test_sample.cfg ├── simu_cp ├── ng4t │ └── .gitignore ├── nsb │ ├── nsb_test_util.c │ └── nsb_test_util.h ├── pkt_filtrs.c └── simu_cp.c ├── sponsdn ├── Makefile ├── fake_cp.cfg ├── hostnames.txt ├── main.c └── multiple_ip.pcap └── zmq_device ├── req_streamer_dev.py └── resp_streamer_dev.py /.ci/install/cp-auto-install-options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/.ci/install/cp-auto-install-options.txt -------------------------------------------------------------------------------- /.ci/install/dp-auto-install-options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/.ci/install/dp-auto-install-options.txt -------------------------------------------------------------------------------- /.ci/tc1/config/cp_config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/.ci/tc1/config/cp_config.cfg -------------------------------------------------------------------------------- /.ci/tc1/config/dp_config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/.ci/tc1/config/dp_config.cfg -------------------------------------------------------------------------------- /.ci/tc1/config/interface.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/.ci/tc1/config/interface.cfg -------------------------------------------------------------------------------- /.ci/tc1/cp/custom-cp.mk: -------------------------------------------------------------------------------- 1 | CFLAGS += -DZMQ_COMM 2 | -------------------------------------------------------------------------------- /.ci/tc1/dp/custom-dp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/.ci/tc1/dp/custom-dp.mk -------------------------------------------------------------------------------- /.ci/tc2/config/cp_config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/.ci/tc2/config/cp_config.cfg -------------------------------------------------------------------------------- /.ci/tc2/config/dp_config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/.ci/tc2/config/dp_config.cfg -------------------------------------------------------------------------------- /.ci/tc2/config/interface.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/.ci/tc2/config/interface.cfg -------------------------------------------------------------------------------- /.ci/tc2/config/static_arp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/.ci/tc2/config/static_arp.cfg -------------------------------------------------------------------------------- /.ci/tc2/cp/custom-cp.mk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.ci/tc2/dp/custom-dp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/.ci/tc2/dp/custom-dp.mk -------------------------------------------------------------------------------- /.fossa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/.fossa.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/.gitconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/Dockerfile -------------------------------------------------------------------------------- /INSTALL.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/INSTALL.MD -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/Makefile -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/README.MD -------------------------------------------------------------------------------- /RELEASE_NOTES.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/RELEASE_NOTES.MD -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.1.0-dev 2 | -------------------------------------------------------------------------------- /config/adc_rules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/config/adc_rules.cfg -------------------------------------------------------------------------------- /config/cdr.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/config/cdr.cfg -------------------------------------------------------------------------------- /config/cp_config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/config/cp_config.cfg -------------------------------------------------------------------------------- /config/dp_config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/config/dp_config.cfg -------------------------------------------------------------------------------- /config/interface.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/config/interface.cfg -------------------------------------------------------------------------------- /config/meter_profile.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/config/meter_profile.cfg -------------------------------------------------------------------------------- /config/pcc_rules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/config/pcc_rules.cfg -------------------------------------------------------------------------------- /config/rules_ipv4.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/config/rules_ipv4.cfg -------------------------------------------------------------------------------- /config/rules_ipv6.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/config/rules_ipv6.cfg -------------------------------------------------------------------------------- /config/sdf_rules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/config/sdf_rules.cfg -------------------------------------------------------------------------------- /config/simu_cp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/config/simu_cp.cfg -------------------------------------------------------------------------------- /config/static_arp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/config/static_arp.cfg -------------------------------------------------------------------------------- /cp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/cp/Makefile -------------------------------------------------------------------------------- /cp/chk_cpcfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/cp/chk_cpcfg.sh -------------------------------------------------------------------------------- /cp/cp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/cp/cp.h -------------------------------------------------------------------------------- /cp/cp_stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/cp/cp_stats.c -------------------------------------------------------------------------------- /cp/cp_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/cp/cp_stats.h -------------------------------------------------------------------------------- /cp/cp_sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/cp/cp_sync.c -------------------------------------------------------------------------------- /cp/custom-cp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/cp/custom-cp.mk -------------------------------------------------------------------------------- /cp/debug_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/cp/debug_str.c -------------------------------------------------------------------------------- /cp/debug_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/cp/debug_str.h -------------------------------------------------------------------------------- /cp/gtpv2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/cp/gtpv2c.c -------------------------------------------------------------------------------- /cp/gtpv2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/cp/gtpv2c.h -------------------------------------------------------------------------------- /cp/gtpv2c_ie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/cp/gtpv2c_ie.h -------------------------------------------------------------------------------- /cp/gtpv2c_messages/bearer_resource_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/cp/gtpv2c_messages/bearer_resource_cmd.c -------------------------------------------------------------------------------- /cp/gtpv2c_messages/create_bearer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/cp/gtpv2c_messages/create_bearer.c -------------------------------------------------------------------------------- /cp/gtpv2c_messages/create_s5s8_session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/cp/gtpv2c_messages/create_s5s8_session.c -------------------------------------------------------------------------------- /cp/gtpv2c_messages/create_session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/cp/gtpv2c_messages/create_session.c -------------------------------------------------------------------------------- /cp/gtpv2c_messages/delete_bearer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/cp/gtpv2c_messages/delete_bearer.c -------------------------------------------------------------------------------- /cp/gtpv2c_messages/delete_s5s8_session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/cp/gtpv2c_messages/delete_s5s8_session.c -------------------------------------------------------------------------------- /cp/gtpv2c_messages/delete_session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/cp/gtpv2c_messages/delete_session.c -------------------------------------------------------------------------------- /cp/gtpv2c_messages/downlink_data_notification.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/cp/gtpv2c_messages/downlink_data_notification.c -------------------------------------------------------------------------------- /cp/gtpv2c_messages/gtpv2c_echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/cp/gtpv2c_messages/gtpv2c_echo.c -------------------------------------------------------------------------------- /cp/gtpv2c_messages/modify_bearer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/cp/gtpv2c_messages/modify_bearer.c -------------------------------------------------------------------------------- /cp/gtpv2c_messages/release_access_bearer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/cp/gtpv2c_messages/release_access_bearer.c -------------------------------------------------------------------------------- /cp/gtpv2c_set_ie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/cp/gtpv2c_set_ie.c -------------------------------------------------------------------------------- /cp/gtpv2c_set_ie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/cp/gtpv2c_set_ie.h -------------------------------------------------------------------------------- /cp/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/cp/main.c -------------------------------------------------------------------------------- /cp/nb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/cp/nb.c -------------------------------------------------------------------------------- /cp/nb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/cp/nb.h -------------------------------------------------------------------------------- /cp/packet_filters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/cp/packet_filters.c -------------------------------------------------------------------------------- /cp/packet_filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/cp/packet_filters.h -------------------------------------------------------------------------------- /cp/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/cp/run.sh -------------------------------------------------------------------------------- /cp/stats_sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/cp/stats_sync.c -------------------------------------------------------------------------------- /cp/ue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/cp/ue.c -------------------------------------------------------------------------------- /cp/ue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/cp/ue.h -------------------------------------------------------------------------------- /cp_dp_api/vepc_cp_dp_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/cp_dp_api/vepc_cp_dp_api.c -------------------------------------------------------------------------------- /cp_dp_api/vepc_cp_dp_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/cp_dp_api/vepc_cp_dp_api.h -------------------------------------------------------------------------------- /delete_af_ifaces.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/delete_af_ifaces.sh -------------------------------------------------------------------------------- /deploy/k8s/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/deploy/k8s/README.md -------------------------------------------------------------------------------- /deploy/k8s/cp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/deploy/k8s/cp.yaml -------------------------------------------------------------------------------- /deploy/k8s/dp-nets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/deploy/k8s/dp-nets.yaml -------------------------------------------------------------------------------- /deploy/k8s/dp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/deploy/k8s/dp.yaml -------------------------------------------------------------------------------- /dev_scripts/restore_wkni.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dev_scripts/restore_wkni.sh -------------------------------------------------------------------------------- /dev_scripts/setenv_dpdk1611.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dev_scripts/setenv_dpdk1611.sh -------------------------------------------------------------------------------- /dev_scripts/setenv_dpdk1802.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dev_scripts/setenv_dpdk1802.sh -------------------------------------------------------------------------------- /dev_scripts/start-ZMQ_Streamer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dev_scripts/start-ZMQ_Streamer.sh -------------------------------------------------------------------------------- /dev_scripts/stop-ZMQ_Streamer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dev_scripts/stop-ZMQ_Streamer.sh -------------------------------------------------------------------------------- /dev_scripts/switch_dpdk1611.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dev_scripts/switch_dpdk1611.sh -------------------------------------------------------------------------------- /dev_scripts/switch_dpdk1802.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dev_scripts/switch_dpdk1802.sh -------------------------------------------------------------------------------- /dev_scripts/switch_wokni.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dev_scripts/switch_wokni.sh -------------------------------------------------------------------------------- /dev_scripts/wokni/Makefile_wkni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dev_scripts/wokni/Makefile_wkni -------------------------------------------------------------------------------- /dev_scripts/wokni/Makefile_wokni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dev_scripts/wokni/Makefile_wokni -------------------------------------------------------------------------------- /dev_scripts/wokni/epc_arp_wokni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dev_scripts/wokni/epc_arp_wokni.c -------------------------------------------------------------------------------- /dev_scripts/wokni/epc_dl_wokni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dev_scripts/wokni/epc_dl_wokni.c -------------------------------------------------------------------------------- /dev_scripts/wokni/epc_ul_wokni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dev_scripts/wokni/epc_ul_wokni.c -------------------------------------------------------------------------------- /dev_scripts/wokni/init_wokni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dev_scripts/wokni/init_wokni.c -------------------------------------------------------------------------------- /docs/CP_README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/docs/CP_README.MD -------------------------------------------------------------------------------- /docs/DP_README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/docs/DP_README.MD -------------------------------------------------------------------------------- /docs/METER.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/docs/METER.MD -------------------------------------------------------------------------------- /docs/PERF_TUNING.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/docs/PERF_TUNING.MD -------------------------------------------------------------------------------- /doxy-api.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/doxy-api.conf -------------------------------------------------------------------------------- /dp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/Makefile -------------------------------------------------------------------------------- /dp/acl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/acl.c -------------------------------------------------------------------------------- /dp/acl_dp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/acl_dp.h -------------------------------------------------------------------------------- /dp/adc_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/adc_table.c -------------------------------------------------------------------------------- /dp/build_ngic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/build_ngic.sh -------------------------------------------------------------------------------- /dp/cdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/cdr.c -------------------------------------------------------------------------------- /dp/cdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/cdr.h -------------------------------------------------------------------------------- /dp/cdrsummary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/cdrsummary.py -------------------------------------------------------------------------------- /dp/chk_dpcfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/chk_dpcfg.sh -------------------------------------------------------------------------------- /dp/commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/commands.c -------------------------------------------------------------------------------- /dp/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/commands.h -------------------------------------------------------------------------------- /dp/conf/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/conf/cert.pem -------------------------------------------------------------------------------- /dp/conf/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/conf/key.pem -------------------------------------------------------------------------------- /dp/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/config.c -------------------------------------------------------------------------------- /dp/custom-dp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/custom-dp.mk -------------------------------------------------------------------------------- /dp/dataplane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/dataplane.c -------------------------------------------------------------------------------- /dp/ddn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/ddn.c -------------------------------------------------------------------------------- /dp/ddn_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/ddn_utils.c -------------------------------------------------------------------------------- /dp/dp_rules_verify/Rule_verfication/test_Default_rule/adc_rules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/dp_rules_verify/Rule_verfication/test_Default_rule/adc_rules.cfg -------------------------------------------------------------------------------- /dp/dp_rules_verify/Rule_verfication/test_Default_rule/pcc_rules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/dp_rules_verify/Rule_verfication/test_Default_rule/pcc_rules.cfg -------------------------------------------------------------------------------- /dp/dp_rules_verify/Rule_verfication/test_Default_rule/sdf_rules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/dp_rules_verify/Rule_verfication/test_Default_rule/sdf_rules.cfg -------------------------------------------------------------------------------- /dp/dp_rules_verify/Rule_verfication/test_Default_rule/test_result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/dp_rules_verify/Rule_verfication/test_Default_rule/test_result.txt -------------------------------------------------------------------------------- /dp/dp_rules_verify/Rule_verfication/test_Default_rule/xcdr_default_match.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/dp_rules_verify/Rule_verfication/test_Default_rule/xcdr_default_match.csv -------------------------------------------------------------------------------- /dp/dp_rules_verify/Rule_verfication/test_adc-pcc-precede/adc_rules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/dp_rules_verify/Rule_verfication/test_adc-pcc-precede/adc_rules.cfg -------------------------------------------------------------------------------- /dp/dp_rules_verify/Rule_verfication/test_adc-pcc-precede/pcc_rules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/dp_rules_verify/Rule_verfication/test_adc-pcc-precede/pcc_rules.cfg -------------------------------------------------------------------------------- /dp/dp_rules_verify/Rule_verfication/test_adc-pcc-precede/sdf_rules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/dp_rules_verify/Rule_verfication/test_adc-pcc-precede/sdf_rules.cfg -------------------------------------------------------------------------------- /dp/dp_rules_verify/Rule_verfication/test_adc-pcc-precede/test_result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/dp_rules_verify/Rule_verfication/test_adc-pcc-precede/test_result.txt -------------------------------------------------------------------------------- /dp/dp_rules_verify/Rule_verfication/test_adc-pcc-precede/xcdr_adc-pcc-precede.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/dp_rules_verify/Rule_verfication/test_adc-pcc-precede/xcdr_adc-pcc-precede.csv -------------------------------------------------------------------------------- /dp/dp_rules_verify/Rule_verfication/test_sdfDL-adcUL/adc_rules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/dp_rules_verify/Rule_verfication/test_sdfDL-adcUL/adc_rules.cfg -------------------------------------------------------------------------------- /dp/dp_rules_verify/Rule_verfication/test_sdfDL-adcUL/pcc_rules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/dp_rules_verify/Rule_verfication/test_sdfDL-adcUL/pcc_rules.cfg -------------------------------------------------------------------------------- /dp/dp_rules_verify/Rule_verfication/test_sdfDL-adcUL/sdf_rules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/dp_rules_verify/Rule_verfication/test_sdfDL-adcUL/sdf_rules.cfg -------------------------------------------------------------------------------- /dp/dp_rules_verify/Rule_verfication/test_sdfDL-adcUL/test_result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/dp_rules_verify/Rule_verfication/test_sdfDL-adcUL/test_result.txt -------------------------------------------------------------------------------- /dp/dp_rules_verify/Rule_verfication/test_sdfDL-adcUL/xcdr_sdfDL-adcUL.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/dp_rules_verify/Rule_verfication/test_sdfDL-adcUL/xcdr_sdfDL-adcUL.csv -------------------------------------------------------------------------------- /dp/dp_rules_verify/Rule_verfication/test_sdfDLDROP-adcUL/adc_rules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/dp_rules_verify/Rule_verfication/test_sdfDLDROP-adcUL/adc_rules.cfg -------------------------------------------------------------------------------- /dp/dp_rules_verify/Rule_verfication/test_sdfDLDROP-adcUL/pcc_rules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/dp_rules_verify/Rule_verfication/test_sdfDLDROP-adcUL/pcc_rules.cfg -------------------------------------------------------------------------------- /dp/dp_rules_verify/Rule_verfication/test_sdfDLDROP-adcUL/sdf_rules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/dp_rules_verify/Rule_verfication/test_sdfDLDROP-adcUL/sdf_rules.cfg -------------------------------------------------------------------------------- /dp/dp_rules_verify/Rule_verfication/test_sdfDLDROP-adcUL/test_result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/dp_rules_verify/Rule_verfication/test_sdfDLDROP-adcUL/test_result.txt -------------------------------------------------------------------------------- /dp/dp_rules_verify/Rule_verfication/test_sdfDLDROP-adcUL/xcdr_sdfDLDROP-adcUL.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/dp_rules_verify/Rule_verfication/test_sdfDLDROP-adcUL/xcdr_sdfDLDROP-adcUL.csv -------------------------------------------------------------------------------- /dp/dp_rules_verify/Rule_verfication/test_sdfDLDROPip-adcDLip/adc_rules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/dp_rules_verify/Rule_verfication/test_sdfDLDROPip-adcDLip/adc_rules.cfg -------------------------------------------------------------------------------- /dp/dp_rules_verify/Rule_verfication/test_sdfDLDROPip-adcDLip/pcc_rules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/dp_rules_verify/Rule_verfication/test_sdfDLDROPip-adcDLip/pcc_rules.cfg -------------------------------------------------------------------------------- /dp/dp_rules_verify/Rule_verfication/test_sdfDLDROPip-adcDLip/sdf_rules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/dp_rules_verify/Rule_verfication/test_sdfDLDROPip-adcDLip/sdf_rules.cfg -------------------------------------------------------------------------------- /dp/dp_rules_verify/Rule_verfication/test_sdfDLDROPip-adcDLip/test_result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/dp_rules_verify/Rule_verfication/test_sdfDLDROPip-adcDLip/test_result.txt -------------------------------------------------------------------------------- /dp/dp_rules_verify/Rule_verfication/test_sdfDLDROPip-adcDLip/xcdr_sdfDLDROPip-adcDLip.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/dp_rules_verify/Rule_verfication/test_sdfDLDROPip-adcDLip/xcdr_sdfDLDROPip-adcDLip.csv -------------------------------------------------------------------------------- /dp/dp_rules_verify/Rule_verfication/test_sdfULDROP-adcDL/adc_rules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/dp_rules_verify/Rule_verfication/test_sdfULDROP-adcDL/adc_rules.cfg -------------------------------------------------------------------------------- /dp/dp_rules_verify/Rule_verfication/test_sdfULDROP-adcDL/pcc_rules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/dp_rules_verify/Rule_verfication/test_sdfULDROP-adcDL/pcc_rules.cfg -------------------------------------------------------------------------------- /dp/dp_rules_verify/Rule_verfication/test_sdfULDROP-adcDL/sdf_rules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/dp_rules_verify/Rule_verfication/test_sdfULDROP-adcDL/sdf_rules.cfg -------------------------------------------------------------------------------- /dp/dp_rules_verify/Rule_verfication/test_sdfULDROP-adcDL/test_result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/dp_rules_verify/Rule_verfication/test_sdfULDROP-adcDL/test_result.txt -------------------------------------------------------------------------------- /dp/dp_rules_verify/Rule_verfication/test_sdfULDROP-adcDL/xcdr_sdfULDROP-adcDL.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/dp_rules_verify/Rule_verfication/test_sdfULDROP-adcDL/xcdr_sdfULDROP-adcDL.csv -------------------------------------------------------------------------------- /dp/dp_rules_verify/dp_rules_verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/dp_rules_verify/dp_rules_verify.py -------------------------------------------------------------------------------- /dp/dp_rules_verify/rules_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/dp_rules_verify/rules_parser.py -------------------------------------------------------------------------------- /dp/ether.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/ether.c -------------------------------------------------------------------------------- /dp/ether.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/ether.h -------------------------------------------------------------------------------- /dp/extended_cdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/extended_cdr.c -------------------------------------------------------------------------------- /dp/gtpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/gtpu.c -------------------------------------------------------------------------------- /dp/gtpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/gtpu.h -------------------------------------------------------------------------------- /dp/gtpu_echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/gtpu_echo.c -------------------------------------------------------------------------------- /dp/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/init.c -------------------------------------------------------------------------------- /dp/ipv4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/ipv4.c -------------------------------------------------------------------------------- /dp/ipv4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/ipv4.h -------------------------------------------------------------------------------- /dp/kni_pkt_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/kni_pkt_handler.c -------------------------------------------------------------------------------- /dp/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/main.c -------------------------------------------------------------------------------- /dp/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/main.h -------------------------------------------------------------------------------- /dp/master_cdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/master_cdr.c -------------------------------------------------------------------------------- /dp/master_cdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/master_cdr.h -------------------------------------------------------------------------------- /dp/meter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/meter.c -------------------------------------------------------------------------------- /dp/meter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/meter.h -------------------------------------------------------------------------------- /dp/pcc_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/pcc_table.c -------------------------------------------------------------------------------- /dp/perf_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/perf_timer.h -------------------------------------------------------------------------------- /dp/pipeline/epc_arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/pipeline/epc_arp.c -------------------------------------------------------------------------------- /dp/pipeline/epc_arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/pipeline/epc_arp.h -------------------------------------------------------------------------------- /dp/pipeline/epc_arp_icmp_api.hlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/pipeline/epc_arp_icmp_api.hlp -------------------------------------------------------------------------------- /dp/pipeline/epc_dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/pipeline/epc_dl.c -------------------------------------------------------------------------------- /dp/pipeline/epc_load_balance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/pipeline/epc_load_balance.c -------------------------------------------------------------------------------- /dp/pipeline/epc_packet_framework.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/pipeline/epc_packet_framework.c -------------------------------------------------------------------------------- /dp/pipeline/epc_packet_framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/pipeline/epc_packet_framework.h -------------------------------------------------------------------------------- /dp/pipeline/epc_rx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/pipeline/epc_rx.c -------------------------------------------------------------------------------- /dp/pipeline/epc_spns_dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/pipeline/epc_spns_dns.c -------------------------------------------------------------------------------- /dp/pipeline/epc_tx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/pipeline/epc_tx.c -------------------------------------------------------------------------------- /dp/pipeline/epc_ul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/pipeline/epc_ul.c -------------------------------------------------------------------------------- /dp/pipeline/epc_worker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/pipeline/epc_worker.c -------------------------------------------------------------------------------- /dp/pkt_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/pkt_handler.c -------------------------------------------------------------------------------- /dp/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/run.sh -------------------------------------------------------------------------------- /dp/sess_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/sess_table.c -------------------------------------------------------------------------------- /dp/session_cdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/session_cdr.c -------------------------------------------------------------------------------- /dp/session_cdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/session_cdr.h -------------------------------------------------------------------------------- /dp/ssl_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/ssl_client.c -------------------------------------------------------------------------------- /dp/ssl_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/ssl_client.h -------------------------------------------------------------------------------- /dp/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/stats.c -------------------------------------------------------------------------------- /dp/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/stats.h -------------------------------------------------------------------------------- /dp/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/structs.h -------------------------------------------------------------------------------- /dp/timer_stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/timer_stats.c -------------------------------------------------------------------------------- /dp/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/util.c -------------------------------------------------------------------------------- /dp/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dp/util.h -------------------------------------------------------------------------------- /dpdk-18.02_common_linuxapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/dpdk-18.02_common_linuxapp -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/install.sh -------------------------------------------------------------------------------- /install_builddeps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/install_builddeps.sh -------------------------------------------------------------------------------- /install_rundeps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/install_rundeps.sh -------------------------------------------------------------------------------- /interface/interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/interface/interface.c -------------------------------------------------------------------------------- /interface/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/interface/interface.h -------------------------------------------------------------------------------- /interface/ipc/dp_ipc_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/interface/ipc/dp_ipc_api.c -------------------------------------------------------------------------------- /interface/ipc/dp_ipc_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/interface/ipc/dp_ipc_api.h -------------------------------------------------------------------------------- /interface/udp/vepc_udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/interface/udp/vepc_udp.c -------------------------------------------------------------------------------- /interface/udp/vepc_udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/interface/udp/vepc_udp.h -------------------------------------------------------------------------------- /interface/zmq/zmq_push_pull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/interface/zmq/zmq_push_pull.c -------------------------------------------------------------------------------- /interface/zmq/zmq_push_pull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/interface/zmq/zmq_push_pull.h -------------------------------------------------------------------------------- /interface/zmq/zmqpub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/interface/zmq/zmqpub.c -------------------------------------------------------------------------------- /interface/zmq/zmqpub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/interface/zmq/zmqpub.h -------------------------------------------------------------------------------- /interface/zmq/zmqsub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/interface/zmq/zmqsub.c -------------------------------------------------------------------------------- /interface/zmq/zmqsub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/interface/zmq/zmqsub.h -------------------------------------------------------------------------------- /kni_ifcfg/kni-S1Udevcfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/kni_ifcfg/kni-S1Udevcfg.sh -------------------------------------------------------------------------------- /kni_ifcfg/kni-S1Udevdel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/kni_ifcfg/kni-S1Udevdel.sh -------------------------------------------------------------------------------- /kni_ifcfg/kni-SGIdevcfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/kni_ifcfg/kni-SGIdevcfg.sh -------------------------------------------------------------------------------- /kni_ifcfg/kni-SGIdevdel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/kni_ifcfg/kni-SGIdevdel.sh -------------------------------------------------------------------------------- /lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/lib/Makefile -------------------------------------------------------------------------------- /lib/libsponsdn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/lib/libsponsdn/Makefile -------------------------------------------------------------------------------- /lib/libsponsdn/sponsdn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/lib/libsponsdn/sponsdn.c -------------------------------------------------------------------------------- /lib/libsponsdn/sponsdn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/lib/libsponsdn/sponsdn.h -------------------------------------------------------------------------------- /libgtpv2c/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/libgtpv2c/.gitignore -------------------------------------------------------------------------------- /libgtpv2c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/libgtpv2c/Makefile -------------------------------------------------------------------------------- /libgtpv2c/include/gtpv2c_messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/libgtpv2c/include/gtpv2c_messages.h -------------------------------------------------------------------------------- /libgtpv2c/include/ie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/libgtpv2c/include/ie.h -------------------------------------------------------------------------------- /libgtpv2c/include/req_resp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/libgtpv2c/include/req_resp.h -------------------------------------------------------------------------------- /libgtpv2c/include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/libgtpv2c/include/util.h -------------------------------------------------------------------------------- /libgtpv2c/src/decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/libgtpv2c/src/decoder.c -------------------------------------------------------------------------------- /libgtpv2c/src/encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/libgtpv2c/src/encoder.c -------------------------------------------------------------------------------- /libgtpv2c/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/libgtpv2c/src/util.c -------------------------------------------------------------------------------- /patches/v2-net-i40e-fix-avx2-driver-check-for-rx-rearm.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/patches/v2-net-i40e-fix-avx2-driver-check-for-rx-rearm.diff -------------------------------------------------------------------------------- /pcap/cp_in.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/pcap/cp_in.pcap -------------------------------------------------------------------------------- /pcap/dl_with_dn_ip.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/pcap/dl_with_dn_ip.pcap -------------------------------------------------------------------------------- /pcap/downlink_100flows.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/pcap/downlink_100flows.pcap -------------------------------------------------------------------------------- /pcap/indirect_dn_resp_2.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/pcap/indirect_dn_resp_2.pcap -------------------------------------------------------------------------------- /pcap/ul_with_dn_ip.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/pcap/ul_with_dn_ip.pcap -------------------------------------------------------------------------------- /pcap/uplink_100flows.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/pcap/uplink_100flows.pcap -------------------------------------------------------------------------------- /setenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/setenv.sh -------------------------------------------------------------------------------- /setup_af_ifaces.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/setup_af_ifaces.sh -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/fmea/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/test/fmea/README.txt -------------------------------------------------------------------------------- /test/fmea/fmea_test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/test/fmea/fmea_test.cfg -------------------------------------------------------------------------------- /test/fmea/host_config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/test/fmea/host_config.cfg -------------------------------------------------------------------------------- /test/fmea/pass_criteria.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/test/fmea/pass_criteria.cfg -------------------------------------------------------------------------------- /test/fmea/test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/test/fmea/test.cfg -------------------------------------------------------------------------------- /test/fmea/test_fmea.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/test/fmea/test_fmea.sh -------------------------------------------------------------------------------- /test/fmea/test_sample.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/test/fmea/test_sample.cfg -------------------------------------------------------------------------------- /test/simu_cp/ng4t/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/test/simu_cp/ng4t/.gitignore -------------------------------------------------------------------------------- /test/simu_cp/nsb/nsb_test_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/test/simu_cp/nsb/nsb_test_util.c -------------------------------------------------------------------------------- /test/simu_cp/nsb/nsb_test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/test/simu_cp/nsb/nsb_test_util.h -------------------------------------------------------------------------------- /test/simu_cp/pkt_filtrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/test/simu_cp/pkt_filtrs.c -------------------------------------------------------------------------------- /test/simu_cp/simu_cp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/test/simu_cp/simu_cp.c -------------------------------------------------------------------------------- /test/sponsdn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/test/sponsdn/Makefile -------------------------------------------------------------------------------- /test/sponsdn/fake_cp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/test/sponsdn/fake_cp.cfg -------------------------------------------------------------------------------- /test/sponsdn/hostnames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/test/sponsdn/hostnames.txt -------------------------------------------------------------------------------- /test/sponsdn/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/test/sponsdn/main.c -------------------------------------------------------------------------------- /test/sponsdn/multiple_ip.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/test/sponsdn/multiple_ip.pcap -------------------------------------------------------------------------------- /test/zmq_device/req_streamer_dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/test/zmq_device/req_streamer_dev.py -------------------------------------------------------------------------------- /test/zmq_device/resp_streamer_dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omec-project/ngic-rtc/HEAD/test/zmq_device/resp_streamer_dev.py --------------------------------------------------------------------------------