├── .gitignore ├── CITATION.cff ├── Dockerfile ├── README.md ├── benchmarks ├── __init__.py └── benchmarks.py ├── certs ├── certificate_creation.md ├── quic │ ├── server.crt │ ├── server.csr │ └── server.key └── tcp-tls │ ├── csr.pem │ ├── private-key.pem │ └── public-cert.pem ├── docker-compose.yml ├── documentation ├── QUIC_flowchart_to_pcap_MEAN.drawio ├── QUIC_flowchart_to_pcap_MEAN.png ├── TCP_flowchart_to_pcap_MEAN.drawio ├── TCP_flowchart_to_pcap_MEAN.png ├── delay_0_comp.png ├── delay_10.png ├── delay_10_comp.png ├── delay_20.png ├── delay_20_comp.png ├── delay_50.png ├── delay_50_comp.png ├── delay_comparison.png ├── event_timeline.png ├── events.md ├── events_comparison.png ├── layer_comparison_QUIC_TCP.drawio ├── layer_comparison_QUIC_TCP.png ├── layer_comparison_QUIC_TCP_highres.png ├── median_delay_0.png ├── median_delay_10.png ├── median_delay_20.png ├── median_delay_50.png ├── nginx-quic-flow.png ├── nginx-tcp-flow.png ├── nodejs-quic-flow.png ├── pcap_communication.png ├── setup_parameters.png ├── topology.png ├── topology.xml ├── topology_localhost.png └── topology_localhost.xml ├── nginx-measurements ├── 1st-run │ ├── quic.pcap │ ├── quic_timestamps.csv │ ├── tcp.pcap │ └── tcp_timestamps.csv ├── 2nd-run │ ├── quic.pcap │ ├── quic_timestamps.csv │ ├── tcp.pcap │ └── tcp_timestamps.csv ├── 3rd-run │ ├── quic.pcap │ ├── quic_timestamps.csv │ ├── tcp.pcap │ └── tcp_timestamps.csv ├── 4th-run │ ├── quic.pcap │ ├── quic_timestamps.csv │ ├── tcp.pcap │ └── tcp_timestamps.csv ├── 5th-run │ ├── quic.pcap │ ├── quic_timestamps.csv │ ├── tcp.pcap │ └── tcp_timestamps.csv └── visualize_nginx.py ├── node ├── .babelrc ├── package-lock.json ├── package.json ├── quic │ ├── quic-client.js │ └── quic-server.js └── tcp │ ├── tcp-tls-client.js │ └── tcp-tls-server.js ├── plot.py ├── samples ├── process_pcaps_quic.py ├── process_pcaps_tcp+tls.py ├── samples_threshold15_dev2_delay10 │ ├── quic │ │ └── remote │ │ │ ├── 2021-03-11 00-31-37.626624 │ │ │ ├── mod_timestamps.csv │ │ │ ├── ping.json │ │ │ ├── quic-benchmark-client.json │ │ │ ├── quic-benchmark-server.json │ │ │ ├── quic.pcap │ │ │ └── ssl-keys.log │ │ │ ├── 2021-03-11 00-35-08.629245 │ │ │ ├── mod_timestamps.csv │ │ │ ├── ping.json │ │ │ ├── quic-benchmark-client.json │ │ │ ├── quic-benchmark-server.json │ │ │ ├── quic.pcap │ │ │ └── ssl-keys.log │ │ │ ├── 2021-03-11 00-36-41.021645 │ │ │ ├── mod_timestamps.csv │ │ │ ├── ping.json │ │ │ ├── quic-benchmark-client.json │ │ │ ├── quic-benchmark-server.json │ │ │ ├── quic.pcap │ │ │ └── ssl-keys.log │ │ │ ├── 2021-03-11 00-37-26.057760 │ │ │ ├── mod_timestamps.csv │ │ │ ├── ping.json │ │ │ ├── quic-benchmark-client.json │ │ │ ├── quic-benchmark-server.json │ │ │ ├── quic.pcap │ │ │ └── ssl-keys.log │ │ │ ├── 2021-03-11 00-42-07.346095 │ │ │ ├── mod_timestamps.csv │ │ │ ├── ping.json │ │ │ ├── quic-benchmark-client.json │ │ │ ├── quic-benchmark-server.json │ │ │ ├── quic.pcap │ │ │ └── ssl-keys.log │ │ │ ├── 2021-03-11 00-42-53.439390 │ │ │ ├── mod_timestamps.csv │ │ │ ├── ping.json │ │ │ ├── quic-benchmark-client.json │ │ │ ├── quic-benchmark-server.json │ │ │ ├── quic.pcap │ │ │ └── ssl-keys.log │ │ │ ├── 2021-03-11 00-44-17.188488 │ │ │ ├── mod_timestamps.csv │ │ │ ├── ping.json │ │ │ ├── quic-benchmark-client.json │ │ │ ├── quic-benchmark-server.json │ │ │ ├── quic.pcap │ │ │ └── ssl-keys.log │ │ │ ├── 2021-03-11 00-45-05.037939 │ │ │ ├── mod_timestamps.csv │ │ │ ├── ping.json │ │ │ ├── quic-benchmark-client.json │ │ │ ├── quic-benchmark-server.json │ │ │ ├── quic.pcap │ │ │ └── ssl-keys.log │ │ │ ├── 2021-03-11 00-45-47.433201 │ │ │ ├── mod_timestamps.csv │ │ │ ├── ping.json │ │ │ ├── quic-benchmark-client.json │ │ │ ├── quic-benchmark-server.json │ │ │ ├── quic.pcap │ │ │ └── ssl-keys.log │ │ │ └── 2021-03-11 00-49-20.013585 │ │ │ ├── mod_timestamps.csv │ │ │ ├── ping.json │ │ │ ├── quic-benchmark-client.json │ │ │ ├── quic-benchmark-server.json │ │ │ ├── quic.pcap │ │ │ └── ssl-keys.log │ └── tcp │ │ └── remote │ │ ├── 2021-03-11 00-54-54.330962 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── ssl-keys.log │ │ ├── tcp-benchmark-client.json │ │ ├── tcp-benchmark-server.json │ │ └── tcp.pcap │ │ ├── 2021-03-11 00-55-41.058272 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── ssl-keys.log │ │ ├── tcp-benchmark-client.json │ │ ├── tcp-benchmark-server.json │ │ └── tcp.pcap │ │ ├── 2021-03-11 00-56-27.950102 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── ssl-keys.log │ │ ├── tcp-benchmark-client.json │ │ ├── tcp-benchmark-server.json │ │ └── tcp.pcap │ │ ├── 2021-03-11 01-00-16.848876 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── ssl-keys.log │ │ ├── tcp-benchmark-client.json │ │ ├── tcp-benchmark-server.json │ │ └── tcp.pcap │ │ ├── 2021-03-11 01-04-06.770269 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── ssl-keys.log │ │ ├── tcp-benchmark-client.json │ │ ├── tcp-benchmark-server.json │ │ └── tcp.pcap │ │ ├── 2021-03-11 01-04-53.871564 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── ssl-keys.log │ │ ├── tcp-benchmark-client.json │ │ ├── tcp-benchmark-server.json │ │ └── tcp.pcap │ │ ├── 2021-03-11 01-06-30.160313 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── ssl-keys.log │ │ ├── tcp-benchmark-client.json │ │ ├── tcp-benchmark-server.json │ │ └── tcp.pcap │ │ ├── 2021-03-11 01-10-20.788973 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── ssl-keys.log │ │ ├── tcp-benchmark-client.json │ │ ├── tcp-benchmark-server.json │ │ └── tcp.pcap │ │ ├── 2021-03-11 02-16-18.432904 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── ssl-keys.log │ │ ├── tcp-benchmark-client.json │ │ ├── tcp-benchmark-server.json │ │ └── tcp.pcap │ │ └── 2021-03-11 02-17-48.270036 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── ssl-keys.log │ │ ├── tcp-benchmark-client.json │ │ ├── tcp-benchmark-server.json │ │ └── tcp.pcap ├── samples_threshold25_dev2_delay20 │ ├── quic │ │ └── remote │ │ │ ├── 2021-03-11 02-34-44.458038 │ │ │ ├── mod_timestamps.csv │ │ │ ├── ping.json │ │ │ ├── quic-benchmark-client.json │ │ │ ├── quic-benchmark-server.json │ │ │ ├── quic.pcap │ │ │ └── ssl-keys.log │ │ │ ├── 2021-03-11 02-36-11.551832 │ │ │ ├── mod_timestamps.csv │ │ │ ├── ping.json │ │ │ ├── quic-benchmark-client.json │ │ │ ├── quic-benchmark-server.json │ │ │ ├── quic.pcap │ │ │ └── ssl-keys.log │ │ │ ├── 2021-03-11 02-37-11.117794 │ │ │ ├── mod_timestamps.csv │ │ │ ├── ping.json │ │ │ ├── quic-benchmark-client.json │ │ │ ├── quic-benchmark-server.json │ │ │ ├── quic.pcap │ │ │ └── ssl-keys.log │ │ │ ├── 2021-03-11 02-42-14.035042 │ │ │ ├── mod_timestamps.csv │ │ │ ├── ping.json │ │ │ ├── quic-benchmark-client.json │ │ │ ├── quic-benchmark-server.json │ │ │ ├── quic.pcap │ │ │ └── ssl-keys.log │ │ │ ├── 2021-03-11 02-44-08.506013 │ │ │ ├── mod_timestamps.csv │ │ │ ├── ping.json │ │ │ ├── quic-benchmark-client.json │ │ │ ├── quic-benchmark-server.json │ │ │ ├── quic.pcap │ │ │ └── ssl-keys.log │ │ │ ├── 2021-03-11 02-48-07.309302 │ │ │ ├── mod_timestamps.csv │ │ │ ├── ping.json │ │ │ ├── quic-benchmark-client.json │ │ │ ├── quic-benchmark-server.json │ │ │ ├── quic.pcap │ │ │ └── ssl-keys.log │ │ │ ├── 2021-03-11 02-49-49.106648 │ │ │ ├── mod_timestamps.csv │ │ │ ├── ping.json │ │ │ ├── quic-benchmark-client.json │ │ │ ├── quic-benchmark-server.json │ │ │ ├── quic.pcap │ │ │ └── ssl-keys.log │ │ │ ├── 2021-03-11 02-50-37.244536 │ │ │ ├── mod_timestamps.csv │ │ │ ├── ping.json │ │ │ ├── quic-benchmark-client.json │ │ │ ├── quic-benchmark-server.json │ │ │ ├── quic.pcap │ │ │ └── ssl-keys.log │ │ │ ├── 2021-03-11 02-52-45.017605 │ │ │ ├── mod_timestamps.csv │ │ │ ├── ping.json │ │ │ ├── quic-benchmark-client.json │ │ │ ├── quic-benchmark-server.json │ │ │ ├── quic.pcap │ │ │ └── ssl-keys.log │ │ │ └── 2021-03-11 02-55-05.846140 │ │ │ ├── mod_timestamps.csv │ │ │ ├── ping.json │ │ │ ├── quic-benchmark-client.json │ │ │ ├── quic-benchmark-server.json │ │ │ ├── quic.pcap │ │ │ └── ssl-keys.log │ └── tcp │ │ └── remote │ │ ├── 2021-03-11 02-57-32.656990 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── ssl-keys.log │ │ ├── tcp-benchmark-client.json │ │ ├── tcp-benchmark-server.json │ │ └── tcp.pcap │ │ ├── 2021-03-11 03-00-37.347651 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── ssl-keys.log │ │ ├── tcp-benchmark-client.json │ │ ├── tcp-benchmark-server.json │ │ └── tcp.pcap │ │ ├── 2021-03-11 03-02-43.968738 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── ssl-keys.log │ │ ├── tcp-benchmark-client.json │ │ ├── tcp-benchmark-server.json │ │ └── tcp.pcap │ │ ├── 2021-03-11 03-07-13.849391 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── ssl-keys.log │ │ ├── tcp-benchmark-client.json │ │ ├── tcp-benchmark-server.json │ │ └── tcp.pcap │ │ ├── 2021-03-11 03-16-02.838427 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── ssl-keys.log │ │ ├── tcp-benchmark-client.json │ │ ├── tcp-benchmark-server.json │ │ └── tcp.pcap │ │ ├── 2021-03-11 03-20-08.404555 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── ssl-keys.log │ │ ├── tcp-benchmark-client.json │ │ ├── tcp-benchmark-server.json │ │ └── tcp.pcap │ │ ├── 2021-03-11 03-21-42.988058 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── ssl-keys.log │ │ ├── tcp-benchmark-client.json │ │ ├── tcp-benchmark-server.json │ │ └── tcp.pcap │ │ ├── 2021-03-11 03-30-13.906017 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── ssl-keys.log │ │ ├── tcp-benchmark-client.json │ │ ├── tcp-benchmark-server.json │ │ └── tcp.pcap │ │ ├── 2021-03-11 03-32-57.000260 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── ssl-keys.log │ │ ├── tcp-benchmark-client.json │ │ ├── tcp-benchmark-server.json │ │ └── tcp.pcap │ │ └── 2021-03-11 03-33-42.462737 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── ssl-keys.log │ │ ├── tcp-benchmark-client.json │ │ ├── tcp-benchmark-server.json │ │ └── tcp.pcap ├── samples_threshold55_dev2_delay50 │ ├── quic │ │ └── remote │ │ │ ├── 2021-03-11 03-48-17.392495 │ │ │ ├── mod_timestamps.csv │ │ │ ├── ping.json │ │ │ ├── quic-benchmark-client.json │ │ │ ├── quic-benchmark-server.json │ │ │ ├── quic.pcap │ │ │ └── ssl-keys.log │ │ │ ├── 2021-03-11 03-50-06.311944 │ │ │ ├── mod_timestamps.csv │ │ │ ├── ping.json │ │ │ ├── quic-benchmark-client.json │ │ │ ├── quic-benchmark-server.json │ │ │ ├── quic.pcap │ │ │ └── ssl-keys.log │ │ │ ├── 2021-03-11 03-55-51.515341 │ │ │ ├── mod_timestamps.csv │ │ │ ├── ping.json │ │ │ ├── quic-benchmark-client.json │ │ │ ├── quic-benchmark-server.json │ │ │ ├── quic.pcap │ │ │ └── ssl-keys.log │ │ │ ├── 2021-03-11 03-57-23.422037 │ │ │ ├── mod_timestamps.csv │ │ │ ├── ping.json │ │ │ ├── quic-benchmark-client.json │ │ │ ├── quic-benchmark-server.json │ │ │ ├── quic.pcap │ │ │ └── ssl-keys.log │ │ │ ├── 2021-03-11 04-02-03.485329 │ │ │ ├── mod_timestamps.csv │ │ │ ├── ping.json │ │ │ ├── quic-benchmark-client.json │ │ │ ├── quic-benchmark-server.json │ │ │ ├── quic.pcap │ │ │ └── ssl-keys.log │ │ │ ├── 2021-03-11 04-03-57.944611 │ │ │ ├── mod_timestamps.csv │ │ │ ├── ping.json │ │ │ ├── quic-benchmark-client.json │ │ │ ├── quic-benchmark-server.json │ │ │ ├── quic.pcap │ │ │ └── ssl-keys.log │ │ │ ├── 2021-03-11 04-04-41.153167 │ │ │ ├── mod_timestamps.csv │ │ │ ├── ping.json │ │ │ ├── quic-benchmark-client.json │ │ │ ├── quic-benchmark-server.json │ │ │ ├── quic.pcap │ │ │ └── ssl-keys.log │ │ │ ├── 2021-03-11 04-16-39.285300 │ │ │ ├── mod_timestamps.csv │ │ │ ├── ping.json │ │ │ ├── quic-benchmark-client.json │ │ │ ├── quic-benchmark-server.json │ │ │ ├── quic.pcap │ │ │ └── ssl-keys.log │ │ │ ├── 2021-03-11 04-19-47.740487 │ │ │ ├── mod_timestamps.csv │ │ │ ├── ping.json │ │ │ ├── quic-benchmark-client.json │ │ │ ├── quic-benchmark-server.json │ │ │ ├── quic.pcap │ │ │ └── ssl-keys.log │ │ │ └── 2021-03-11 04-21-44.192339 │ │ │ ├── mod_timestamps.csv │ │ │ ├── ping.json │ │ │ ├── quic-benchmark-client.json │ │ │ ├── quic-benchmark-server.json │ │ │ ├── quic.pcap │ │ │ └── ssl-keys.log │ └── tcp │ │ └── remote │ │ ├── 2021-03-11 04-23-53.269404 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── ssl-keys.log │ │ ├── tcp-benchmark-client.json │ │ ├── tcp-benchmark-server.json │ │ └── tcp.pcap │ │ ├── 2021-03-11 04-26-33.097585 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── ssl-keys.log │ │ ├── tcp-benchmark-client.json │ │ ├── tcp-benchmark-server.json │ │ └── tcp.pcap │ │ ├── 2021-03-11 04-29-06.964280 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── ssl-keys.log │ │ ├── tcp-benchmark-client.json │ │ ├── tcp-benchmark-server.json │ │ └── tcp.pcap │ │ ├── 2021-03-11 04-32-22.554660 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── ssl-keys.log │ │ ├── tcp-benchmark-client.json │ │ ├── tcp-benchmark-server.json │ │ └── tcp.pcap │ │ ├── 2021-03-11 04-33-37.770333 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── ssl-keys.log │ │ ├── tcp-benchmark-client.json │ │ ├── tcp-benchmark-server.json │ │ └── tcp.pcap │ │ ├── 2021-03-11 04-34-40.650957 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── ssl-keys.log │ │ ├── tcp-benchmark-client.json │ │ ├── tcp-benchmark-server.json │ │ └── tcp.pcap │ │ ├── 2021-03-11 04-38-02.863627 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── ssl-keys.log │ │ ├── tcp-benchmark-client.json │ │ ├── tcp-benchmark-server.json │ │ └── tcp.pcap │ │ ├── 2021-03-11 04-38-51.013888 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── ssl-keys.log │ │ ├── tcp-benchmark-client.json │ │ ├── tcp-benchmark-server.json │ │ └── tcp.pcap │ │ ├── 2021-03-11 04-41-08.250651 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── ssl-keys.log │ │ ├── tcp-benchmark-client.json │ │ ├── tcp-benchmark-server.json │ │ └── tcp.pcap │ │ └── 2021-03-11 04-41-58.689620 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── ssl-keys.log │ │ ├── tcp-benchmark-client.json │ │ ├── tcp-benchmark-server.json │ │ └── tcp.pcap └── samples_threshold5_dev2_delay0 │ ├── quic │ └── remote │ │ ├── 2021-03-08 08-21-15.964770 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── quic-benchmark-client.json │ │ ├── quic-benchmark-server.json │ │ ├── quic.pcap │ │ ├── ssl-keys.log │ │ └── timestamps.csv │ │ ├── 2021-03-08 08-23-34.178260 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── quic-benchmark-client.json │ │ ├── quic-benchmark-server.json │ │ ├── quic.pcap │ │ ├── ssl-keys.log │ │ └── timestamps.csv │ │ ├── 2021-03-08 08-25-08.967745 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── quic-benchmark-client.json │ │ ├── quic-benchmark-server.json │ │ ├── quic.pcap │ │ ├── ssl-keys.log │ │ └── timestamps.csv │ │ ├── 2021-03-08 08-26-31.705285 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── quic-benchmark-client.json │ │ ├── quic-benchmark-server.json │ │ ├── quic.pcap │ │ ├── ssl-keys.log │ │ └── timestamps.csv │ │ ├── 2021-03-08 08-28-21.012236 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── quic-benchmark-client.json │ │ ├── quic-benchmark-server.json │ │ ├── quic.pcap │ │ ├── ssl-keys.log │ │ └── timestamps.csv │ │ ├── 2021-03-08 08-32-17.040706 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── quic-benchmark-client.json │ │ ├── quic-benchmark-server.json │ │ ├── quic.pcap │ │ ├── ssl-keys.log │ │ └── timestamps.csv │ │ ├── 2021-03-08 08-34-36.318718 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── quic-benchmark-client.json │ │ ├── quic-benchmark-server.json │ │ ├── quic.pcap │ │ ├── ssl-keys.log │ │ └── timestamps.csv │ │ ├── 2021-03-08 08-40-19.121335 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── quic-benchmark-client.json │ │ ├── quic-benchmark-server.json │ │ ├── quic.pcap │ │ ├── ssl-keys.log │ │ └── timestamps.csv │ │ ├── 2021-03-08 08-42-11.102905 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── quic-benchmark-client.json │ │ ├── quic-benchmark-server.json │ │ ├── quic.pcap │ │ ├── ssl-keys.log │ │ └── timestamps.csv │ │ └── 2021-03-08 08-43-43.584919 │ │ ├── mod_timestamps.csv │ │ ├── ping.json │ │ ├── quic-benchmark-client.json │ │ ├── quic-benchmark-server.json │ │ ├── quic.pcap │ │ ├── ssl-keys.log │ │ └── timestamps.csv │ └── tcp │ └── remote │ ├── 2021-03-08 08-53-34.612692 │ ├── mod_timestamps.csv │ ├── ping.json │ ├── ssl-keys.log │ ├── tcp-benchmark-client.json │ ├── tcp-benchmark-server.json │ ├── tcp.pcap │ └── timestamps.csv │ ├── 2021-03-08 08-55-12.544361 │ ├── mod_timestamps.csv │ ├── ping.json │ ├── ssl-keys.log │ ├── tcp-benchmark-client.json │ ├── tcp-benchmark-server.json │ ├── tcp.pcap │ └── timestamps.csv │ ├── 2021-03-08 08-56-46.086451 │ ├── mod_timestamps.csv │ ├── ping.json │ ├── ssl-keys.log │ ├── tcp-benchmark-client.json │ ├── tcp-benchmark-server.json │ ├── tcp.pcap │ └── timestamps.csv │ ├── 2021-03-08 08-58-29.177156 │ ├── mod_timestamps.csv │ ├── ping.json │ ├── ssl-keys.log │ ├── tcp-benchmark-client.json │ ├── tcp-benchmark-server.json │ ├── tcp.pcap │ └── timestamps.csv │ ├── 2021-03-08 08-59-06.053982 │ ├── mod_timestamps.csv │ ├── ping.json │ ├── ssl-keys.log │ ├── tcp-benchmark-client.json │ ├── tcp-benchmark-server.json │ ├── tcp.pcap │ └── timestamps.csv │ ├── 2021-03-08 09-00-39.234748 │ ├── mod_timestamps.csv │ ├── ping.json │ ├── ssl-keys.log │ ├── tcp-benchmark-client.json │ ├── tcp-benchmark-server.json │ ├── tcp.pcap │ └── timestamps.csv │ ├── 2021-03-08 09-06-13.770530 │ ├── mod_timestamps.csv │ ├── ping.json │ ├── ssl-keys.log │ ├── tcp-benchmark-client.json │ ├── tcp-benchmark-server.json │ ├── tcp.pcap │ └── timestamps.csv │ ├── 2021-03-08 09-08-23.246872 │ ├── mod_timestamps.csv │ ├── ping.json │ ├── ssl-keys.log │ ├── tcp-benchmark-client.json │ ├── tcp-benchmark-server.json │ ├── tcp.pcap │ └── timestamps.csv │ ├── 2021-03-08 09-08-55.386537 │ ├── mod_timestamps.csv │ ├── ping.json │ ├── ssl-keys.log │ ├── tcp-benchmark-client.json │ ├── tcp-benchmark-server.json │ ├── tcp.pcap │ └── timestamps.csv │ └── 2021-03-08 09-12-51.075999 │ ├── mod_timestamps.csv │ ├── ping.json │ ├── ssl-keys.log │ ├── tcp-benchmark-client.json │ ├── tcp-benchmark-server.json │ ├── tcp.pcap │ └── timestamps.csv ├── setup.py ├── traffic-analysis ├── parse_capfile.py ├── pshark.py ├── tcp.cap └── udp.cap ├── traffic ├── __init__.py ├── delay.py └── shark.py ├── utils ├── __init__.py ├── check-ping.json ├── measurements.py ├── parser.py ├── ping.json └── ping.py └── visualize_events ├── __init__.py ├── dataloader.py ├── figures ├── local_run_1.png ├── local_run_2.png ├── local_run_3.png ├── local_run_4.png ├── local_run_5_err.png ├── network_run1.png ├── network_run2_err.png ├── network_run3.png ├── network_run4_err.png └── network_run5_err.png ├── pcap_loader.py ├── plot_pcap_files.py ├── plot_timeline.py ├── plot_timeplan.py └── visualize_events.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/CITATION.cff -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmarks/benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/benchmarks/benchmarks.py -------------------------------------------------------------------------------- /certs/certificate_creation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/certs/certificate_creation.md -------------------------------------------------------------------------------- /certs/quic/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/certs/quic/server.crt -------------------------------------------------------------------------------- /certs/quic/server.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/certs/quic/server.csr -------------------------------------------------------------------------------- /certs/quic/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/certs/quic/server.key -------------------------------------------------------------------------------- /certs/tcp-tls/csr.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/certs/tcp-tls/csr.pem -------------------------------------------------------------------------------- /certs/tcp-tls/private-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/certs/tcp-tls/private-key.pem -------------------------------------------------------------------------------- /certs/tcp-tls/public-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/certs/tcp-tls/public-cert.pem -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /documentation/QUIC_flowchart_to_pcap_MEAN.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/documentation/QUIC_flowchart_to_pcap_MEAN.drawio -------------------------------------------------------------------------------- /documentation/QUIC_flowchart_to_pcap_MEAN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/documentation/QUIC_flowchart_to_pcap_MEAN.png -------------------------------------------------------------------------------- /documentation/TCP_flowchart_to_pcap_MEAN.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/documentation/TCP_flowchart_to_pcap_MEAN.drawio -------------------------------------------------------------------------------- /documentation/TCP_flowchart_to_pcap_MEAN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/documentation/TCP_flowchart_to_pcap_MEAN.png -------------------------------------------------------------------------------- /documentation/delay_0_comp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/documentation/delay_0_comp.png -------------------------------------------------------------------------------- /documentation/delay_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/documentation/delay_10.png -------------------------------------------------------------------------------- /documentation/delay_10_comp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/documentation/delay_10_comp.png -------------------------------------------------------------------------------- /documentation/delay_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/documentation/delay_20.png -------------------------------------------------------------------------------- /documentation/delay_20_comp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/documentation/delay_20_comp.png -------------------------------------------------------------------------------- /documentation/delay_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/documentation/delay_50.png -------------------------------------------------------------------------------- /documentation/delay_50_comp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/documentation/delay_50_comp.png -------------------------------------------------------------------------------- /documentation/delay_comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/documentation/delay_comparison.png -------------------------------------------------------------------------------- /documentation/event_timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/documentation/event_timeline.png -------------------------------------------------------------------------------- /documentation/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/documentation/events.md -------------------------------------------------------------------------------- /documentation/events_comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/documentation/events_comparison.png -------------------------------------------------------------------------------- /documentation/layer_comparison_QUIC_TCP.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/documentation/layer_comparison_QUIC_TCP.drawio -------------------------------------------------------------------------------- /documentation/layer_comparison_QUIC_TCP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/documentation/layer_comparison_QUIC_TCP.png -------------------------------------------------------------------------------- /documentation/layer_comparison_QUIC_TCP_highres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/documentation/layer_comparison_QUIC_TCP_highres.png -------------------------------------------------------------------------------- /documentation/median_delay_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/documentation/median_delay_0.png -------------------------------------------------------------------------------- /documentation/median_delay_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/documentation/median_delay_10.png -------------------------------------------------------------------------------- /documentation/median_delay_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/documentation/median_delay_20.png -------------------------------------------------------------------------------- /documentation/median_delay_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/documentation/median_delay_50.png -------------------------------------------------------------------------------- /documentation/nginx-quic-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/documentation/nginx-quic-flow.png -------------------------------------------------------------------------------- /documentation/nginx-tcp-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/documentation/nginx-tcp-flow.png -------------------------------------------------------------------------------- /documentation/nodejs-quic-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/documentation/nodejs-quic-flow.png -------------------------------------------------------------------------------- /documentation/pcap_communication.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/documentation/pcap_communication.png -------------------------------------------------------------------------------- /documentation/setup_parameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/documentation/setup_parameters.png -------------------------------------------------------------------------------- /documentation/topology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/documentation/topology.png -------------------------------------------------------------------------------- /documentation/topology.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/documentation/topology.xml -------------------------------------------------------------------------------- /documentation/topology_localhost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/documentation/topology_localhost.png -------------------------------------------------------------------------------- /documentation/topology_localhost.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/documentation/topology_localhost.xml -------------------------------------------------------------------------------- /nginx-measurements/1st-run/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/nginx-measurements/1st-run/quic.pcap -------------------------------------------------------------------------------- /nginx-measurements/1st-run/quic_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/nginx-measurements/1st-run/quic_timestamps.csv -------------------------------------------------------------------------------- /nginx-measurements/1st-run/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/nginx-measurements/1st-run/tcp.pcap -------------------------------------------------------------------------------- /nginx-measurements/1st-run/tcp_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/nginx-measurements/1st-run/tcp_timestamps.csv -------------------------------------------------------------------------------- /nginx-measurements/2nd-run/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/nginx-measurements/2nd-run/quic.pcap -------------------------------------------------------------------------------- /nginx-measurements/2nd-run/quic_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/nginx-measurements/2nd-run/quic_timestamps.csv -------------------------------------------------------------------------------- /nginx-measurements/2nd-run/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/nginx-measurements/2nd-run/tcp.pcap -------------------------------------------------------------------------------- /nginx-measurements/2nd-run/tcp_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/nginx-measurements/2nd-run/tcp_timestamps.csv -------------------------------------------------------------------------------- /nginx-measurements/3rd-run/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/nginx-measurements/3rd-run/quic.pcap -------------------------------------------------------------------------------- /nginx-measurements/3rd-run/quic_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/nginx-measurements/3rd-run/quic_timestamps.csv -------------------------------------------------------------------------------- /nginx-measurements/3rd-run/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/nginx-measurements/3rd-run/tcp.pcap -------------------------------------------------------------------------------- /nginx-measurements/3rd-run/tcp_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/nginx-measurements/3rd-run/tcp_timestamps.csv -------------------------------------------------------------------------------- /nginx-measurements/4th-run/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/nginx-measurements/4th-run/quic.pcap -------------------------------------------------------------------------------- /nginx-measurements/4th-run/quic_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/nginx-measurements/4th-run/quic_timestamps.csv -------------------------------------------------------------------------------- /nginx-measurements/4th-run/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/nginx-measurements/4th-run/tcp.pcap -------------------------------------------------------------------------------- /nginx-measurements/4th-run/tcp_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/nginx-measurements/4th-run/tcp_timestamps.csv -------------------------------------------------------------------------------- /nginx-measurements/5th-run/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/nginx-measurements/5th-run/quic.pcap -------------------------------------------------------------------------------- /nginx-measurements/5th-run/quic_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/nginx-measurements/5th-run/quic_timestamps.csv -------------------------------------------------------------------------------- /nginx-measurements/5th-run/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/nginx-measurements/5th-run/tcp.pcap -------------------------------------------------------------------------------- /nginx-measurements/5th-run/tcp_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/nginx-measurements/5th-run/tcp_timestamps.csv -------------------------------------------------------------------------------- /nginx-measurements/visualize_nginx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/nginx-measurements/visualize_nginx.py -------------------------------------------------------------------------------- /node/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/node/.babelrc -------------------------------------------------------------------------------- /node/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/node/package-lock.json -------------------------------------------------------------------------------- /node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/node/package.json -------------------------------------------------------------------------------- /node/quic/quic-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/node/quic/quic-client.js -------------------------------------------------------------------------------- /node/quic/quic-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/node/quic/quic-server.js -------------------------------------------------------------------------------- /node/tcp/tcp-tls-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/node/tcp/tcp-tls-client.js -------------------------------------------------------------------------------- /node/tcp/tcp-tls-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/node/tcp/tcp-tls-server.js -------------------------------------------------------------------------------- /plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/plot.py -------------------------------------------------------------------------------- /samples/process_pcaps_quic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/process_pcaps_quic.py -------------------------------------------------------------------------------- /samples/process_pcaps_tcp+tls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/process_pcaps_tcp+tls.py -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-31-37.626624/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-31-37.626624/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-31-37.626624/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-31-37.626624/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-31-37.626624/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-31-37.626624/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-31-37.626624/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-31-37.626624/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-31-37.626624/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-31-37.626624/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-31-37.626624/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-31-37.626624/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-35-08.629245/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-35-08.629245/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-35-08.629245/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-35-08.629245/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-35-08.629245/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-35-08.629245/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-35-08.629245/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-35-08.629245/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-35-08.629245/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-35-08.629245/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-35-08.629245/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-35-08.629245/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-36-41.021645/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-36-41.021645/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-36-41.021645/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-36-41.021645/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-36-41.021645/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-36-41.021645/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-36-41.021645/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-36-41.021645/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-36-41.021645/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-36-41.021645/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-36-41.021645/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-36-41.021645/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-37-26.057760/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-37-26.057760/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-37-26.057760/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-37-26.057760/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-37-26.057760/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-37-26.057760/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-37-26.057760/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-37-26.057760/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-37-26.057760/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-37-26.057760/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-37-26.057760/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-37-26.057760/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-42-07.346095/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-42-07.346095/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-42-07.346095/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-42-07.346095/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-42-07.346095/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-42-07.346095/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-42-07.346095/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-42-07.346095/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-42-07.346095/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-42-07.346095/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-42-07.346095/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-42-07.346095/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-42-53.439390/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-42-53.439390/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-42-53.439390/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-42-53.439390/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-42-53.439390/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-42-53.439390/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-42-53.439390/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-42-53.439390/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-42-53.439390/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-42-53.439390/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-42-53.439390/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-42-53.439390/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-44-17.188488/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-44-17.188488/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-44-17.188488/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-44-17.188488/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-44-17.188488/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-44-17.188488/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-44-17.188488/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-44-17.188488/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-44-17.188488/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-44-17.188488/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-44-17.188488/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-44-17.188488/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-45-05.037939/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-45-05.037939/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-45-05.037939/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-45-05.037939/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-45-05.037939/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-45-05.037939/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-45-05.037939/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-45-05.037939/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-45-05.037939/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-45-05.037939/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-45-05.037939/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-45-05.037939/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-45-47.433201/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-45-47.433201/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-45-47.433201/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-45-47.433201/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-45-47.433201/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-45-47.433201/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-45-47.433201/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-45-47.433201/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-45-47.433201/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-45-47.433201/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-45-47.433201/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-45-47.433201/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-49-20.013585/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-49-20.013585/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-49-20.013585/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-49-20.013585/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-49-20.013585/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-49-20.013585/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-49-20.013585/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-49-20.013585/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-49-20.013585/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-49-20.013585/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-49-20.013585/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/quic/remote/2021-03-11 00-49-20.013585/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 00-54-54.330962/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 00-54-54.330962/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 00-54-54.330962/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 00-54-54.330962/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 00-54-54.330962/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 00-54-54.330962/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 00-54-54.330962/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 00-54-54.330962/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 00-54-54.330962/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 00-54-54.330962/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 00-54-54.330962/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 00-54-54.330962/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 00-55-41.058272/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 00-55-41.058272/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 00-55-41.058272/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 00-55-41.058272/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 00-55-41.058272/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 00-55-41.058272/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 00-55-41.058272/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 00-55-41.058272/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 00-55-41.058272/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 00-55-41.058272/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 00-55-41.058272/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 00-55-41.058272/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 00-56-27.950102/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 00-56-27.950102/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 00-56-27.950102/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 00-56-27.950102/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 00-56-27.950102/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 00-56-27.950102/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 00-56-27.950102/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 00-56-27.950102/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 00-56-27.950102/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 00-56-27.950102/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 00-56-27.950102/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 00-56-27.950102/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-00-16.848876/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-00-16.848876/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-00-16.848876/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-00-16.848876/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-00-16.848876/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-00-16.848876/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-00-16.848876/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-00-16.848876/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-00-16.848876/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-00-16.848876/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-00-16.848876/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-00-16.848876/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-04-06.770269/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-04-06.770269/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-04-06.770269/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-04-06.770269/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-04-06.770269/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-04-06.770269/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-04-06.770269/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-04-06.770269/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-04-06.770269/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-04-06.770269/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-04-06.770269/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-04-06.770269/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-04-53.871564/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-04-53.871564/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-04-53.871564/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-04-53.871564/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-04-53.871564/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-04-53.871564/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-04-53.871564/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-04-53.871564/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-04-53.871564/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-04-53.871564/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-04-53.871564/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-04-53.871564/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-06-30.160313/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-06-30.160313/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-06-30.160313/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-06-30.160313/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-06-30.160313/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-06-30.160313/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-06-30.160313/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-06-30.160313/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-06-30.160313/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-06-30.160313/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-06-30.160313/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-06-30.160313/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-10-20.788973/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-10-20.788973/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-10-20.788973/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-10-20.788973/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-10-20.788973/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-10-20.788973/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-10-20.788973/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-10-20.788973/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-10-20.788973/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-10-20.788973/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-10-20.788973/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 01-10-20.788973/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 02-16-18.432904/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 02-16-18.432904/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 02-16-18.432904/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 02-16-18.432904/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 02-16-18.432904/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 02-16-18.432904/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 02-16-18.432904/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 02-16-18.432904/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 02-16-18.432904/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 02-16-18.432904/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 02-16-18.432904/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 02-16-18.432904/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 02-17-48.270036/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 02-17-48.270036/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 02-17-48.270036/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 02-17-48.270036/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 02-17-48.270036/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 02-17-48.270036/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 02-17-48.270036/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 02-17-48.270036/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 02-17-48.270036/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 02-17-48.270036/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 02-17-48.270036/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold15_dev2_delay10/tcp/remote/2021-03-11 02-17-48.270036/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-34-44.458038/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-34-44.458038/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-34-44.458038/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-34-44.458038/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-34-44.458038/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-34-44.458038/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-34-44.458038/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-34-44.458038/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-34-44.458038/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-34-44.458038/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-34-44.458038/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-34-44.458038/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-36-11.551832/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-36-11.551832/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-36-11.551832/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-36-11.551832/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-36-11.551832/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-36-11.551832/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-36-11.551832/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-36-11.551832/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-36-11.551832/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-36-11.551832/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-36-11.551832/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-36-11.551832/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-37-11.117794/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-37-11.117794/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-37-11.117794/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-37-11.117794/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-37-11.117794/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-37-11.117794/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-37-11.117794/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-37-11.117794/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-37-11.117794/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-37-11.117794/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-37-11.117794/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-37-11.117794/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-42-14.035042/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-42-14.035042/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-42-14.035042/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-42-14.035042/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-42-14.035042/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-42-14.035042/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-42-14.035042/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-42-14.035042/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-42-14.035042/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-42-14.035042/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-42-14.035042/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-42-14.035042/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-44-08.506013/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-44-08.506013/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-44-08.506013/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-44-08.506013/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-44-08.506013/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-44-08.506013/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-44-08.506013/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-44-08.506013/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-44-08.506013/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-44-08.506013/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-44-08.506013/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-44-08.506013/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-48-07.309302/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-48-07.309302/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-48-07.309302/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-48-07.309302/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-48-07.309302/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-48-07.309302/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-48-07.309302/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-48-07.309302/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-48-07.309302/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-48-07.309302/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-48-07.309302/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-48-07.309302/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-49-49.106648/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-49-49.106648/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-49-49.106648/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-49-49.106648/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-49-49.106648/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-49-49.106648/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-49-49.106648/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-49-49.106648/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-49-49.106648/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-49-49.106648/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-49-49.106648/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-49-49.106648/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-50-37.244536/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-50-37.244536/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-50-37.244536/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-50-37.244536/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-50-37.244536/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-50-37.244536/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-50-37.244536/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-50-37.244536/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-50-37.244536/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-50-37.244536/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-50-37.244536/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-50-37.244536/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-52-45.017605/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-52-45.017605/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-52-45.017605/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-52-45.017605/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-52-45.017605/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-52-45.017605/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-52-45.017605/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-52-45.017605/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-52-45.017605/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-52-45.017605/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-52-45.017605/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-52-45.017605/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-55-05.846140/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-55-05.846140/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-55-05.846140/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-55-05.846140/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-55-05.846140/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-55-05.846140/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-55-05.846140/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-55-05.846140/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-55-05.846140/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-55-05.846140/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-55-05.846140/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/quic/remote/2021-03-11 02-55-05.846140/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 02-57-32.656990/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 02-57-32.656990/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 02-57-32.656990/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 02-57-32.656990/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 02-57-32.656990/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 02-57-32.656990/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 02-57-32.656990/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 02-57-32.656990/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 02-57-32.656990/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 02-57-32.656990/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 02-57-32.656990/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 02-57-32.656990/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-00-37.347651/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-00-37.347651/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-00-37.347651/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-00-37.347651/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-00-37.347651/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-00-37.347651/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-00-37.347651/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-00-37.347651/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-00-37.347651/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-00-37.347651/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-00-37.347651/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-00-37.347651/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-02-43.968738/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-02-43.968738/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-02-43.968738/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-02-43.968738/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-02-43.968738/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-02-43.968738/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-02-43.968738/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-02-43.968738/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-02-43.968738/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-02-43.968738/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-02-43.968738/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-02-43.968738/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-07-13.849391/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-07-13.849391/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-07-13.849391/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-07-13.849391/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-07-13.849391/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-07-13.849391/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-07-13.849391/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-07-13.849391/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-07-13.849391/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-07-13.849391/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-07-13.849391/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-07-13.849391/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-16-02.838427/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-16-02.838427/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-16-02.838427/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-16-02.838427/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-16-02.838427/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-16-02.838427/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-16-02.838427/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-16-02.838427/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-16-02.838427/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-16-02.838427/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-16-02.838427/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-16-02.838427/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-20-08.404555/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-20-08.404555/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-20-08.404555/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-20-08.404555/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-20-08.404555/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-20-08.404555/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-20-08.404555/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-20-08.404555/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-20-08.404555/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-20-08.404555/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-20-08.404555/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-20-08.404555/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-21-42.988058/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-21-42.988058/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-21-42.988058/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-21-42.988058/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-21-42.988058/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-21-42.988058/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-21-42.988058/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-21-42.988058/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-21-42.988058/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-21-42.988058/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-21-42.988058/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-21-42.988058/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-30-13.906017/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-30-13.906017/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-30-13.906017/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-30-13.906017/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-30-13.906017/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-30-13.906017/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-30-13.906017/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-30-13.906017/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-30-13.906017/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-30-13.906017/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-30-13.906017/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-30-13.906017/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-32-57.000260/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-32-57.000260/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-32-57.000260/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-32-57.000260/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-32-57.000260/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-32-57.000260/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-32-57.000260/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-32-57.000260/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-32-57.000260/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-32-57.000260/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-32-57.000260/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-32-57.000260/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-33-42.462737/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-33-42.462737/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-33-42.462737/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-33-42.462737/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-33-42.462737/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-33-42.462737/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-33-42.462737/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-33-42.462737/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-33-42.462737/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-33-42.462737/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-33-42.462737/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold25_dev2_delay20/tcp/remote/2021-03-11 03-33-42.462737/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-48-17.392495/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-48-17.392495/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-48-17.392495/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-48-17.392495/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-48-17.392495/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-48-17.392495/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-48-17.392495/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-48-17.392495/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-48-17.392495/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-48-17.392495/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-48-17.392495/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-48-17.392495/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-50-06.311944/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-50-06.311944/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-50-06.311944/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-50-06.311944/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-50-06.311944/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-50-06.311944/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-50-06.311944/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-50-06.311944/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-50-06.311944/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-50-06.311944/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-50-06.311944/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-50-06.311944/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-55-51.515341/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-55-51.515341/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-55-51.515341/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-55-51.515341/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-55-51.515341/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-55-51.515341/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-55-51.515341/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-55-51.515341/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-55-51.515341/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-55-51.515341/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-55-51.515341/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-55-51.515341/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-57-23.422037/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-57-23.422037/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-57-23.422037/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-57-23.422037/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-57-23.422037/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-57-23.422037/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-57-23.422037/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-57-23.422037/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-57-23.422037/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-57-23.422037/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-57-23.422037/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 03-57-23.422037/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-02-03.485329/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-02-03.485329/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-02-03.485329/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-02-03.485329/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-02-03.485329/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-02-03.485329/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-02-03.485329/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-02-03.485329/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-02-03.485329/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-02-03.485329/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-02-03.485329/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-02-03.485329/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-03-57.944611/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-03-57.944611/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-03-57.944611/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-03-57.944611/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-03-57.944611/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-03-57.944611/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-03-57.944611/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-03-57.944611/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-03-57.944611/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-03-57.944611/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-03-57.944611/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-03-57.944611/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-04-41.153167/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-04-41.153167/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-04-41.153167/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-04-41.153167/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-04-41.153167/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-04-41.153167/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-04-41.153167/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-04-41.153167/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-04-41.153167/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-04-41.153167/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-04-41.153167/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-04-41.153167/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-16-39.285300/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-16-39.285300/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-16-39.285300/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-16-39.285300/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-16-39.285300/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-16-39.285300/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-16-39.285300/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-16-39.285300/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-16-39.285300/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-16-39.285300/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-16-39.285300/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-16-39.285300/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-19-47.740487/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-19-47.740487/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-19-47.740487/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-19-47.740487/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-19-47.740487/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-19-47.740487/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-19-47.740487/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-19-47.740487/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-19-47.740487/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-19-47.740487/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-19-47.740487/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-19-47.740487/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-21-44.192339/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-21-44.192339/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-21-44.192339/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-21-44.192339/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-21-44.192339/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-21-44.192339/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-21-44.192339/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-21-44.192339/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-21-44.192339/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-21-44.192339/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-21-44.192339/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/quic/remote/2021-03-11 04-21-44.192339/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-23-53.269404/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-23-53.269404/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-23-53.269404/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-23-53.269404/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-23-53.269404/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-23-53.269404/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-23-53.269404/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-23-53.269404/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-23-53.269404/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-23-53.269404/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-23-53.269404/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-23-53.269404/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-26-33.097585/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-26-33.097585/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-26-33.097585/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-26-33.097585/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-26-33.097585/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-26-33.097585/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-26-33.097585/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-26-33.097585/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-26-33.097585/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-26-33.097585/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-26-33.097585/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-26-33.097585/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-29-06.964280/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-29-06.964280/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-29-06.964280/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-29-06.964280/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-29-06.964280/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-29-06.964280/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-29-06.964280/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-29-06.964280/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-29-06.964280/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-29-06.964280/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-29-06.964280/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-29-06.964280/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-32-22.554660/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-32-22.554660/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-32-22.554660/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-32-22.554660/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-32-22.554660/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-32-22.554660/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-32-22.554660/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-32-22.554660/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-32-22.554660/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-32-22.554660/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-32-22.554660/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-32-22.554660/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-33-37.770333/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-33-37.770333/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-33-37.770333/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-33-37.770333/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-33-37.770333/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-33-37.770333/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-33-37.770333/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-33-37.770333/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-33-37.770333/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-33-37.770333/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-33-37.770333/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-33-37.770333/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-34-40.650957/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-34-40.650957/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-34-40.650957/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-34-40.650957/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-34-40.650957/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-34-40.650957/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-34-40.650957/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-34-40.650957/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-34-40.650957/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-34-40.650957/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-34-40.650957/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-34-40.650957/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-38-02.863627/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-38-02.863627/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-38-02.863627/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-38-02.863627/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-38-02.863627/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-38-02.863627/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-38-02.863627/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-38-02.863627/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-38-02.863627/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-38-02.863627/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-38-02.863627/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-38-02.863627/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-38-51.013888/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-38-51.013888/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-38-51.013888/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-38-51.013888/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-38-51.013888/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-38-51.013888/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-38-51.013888/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-38-51.013888/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-38-51.013888/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-38-51.013888/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-38-51.013888/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-38-51.013888/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-41-08.250651/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-41-08.250651/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-41-08.250651/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-41-08.250651/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-41-08.250651/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-41-08.250651/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-41-08.250651/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-41-08.250651/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-41-08.250651/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-41-08.250651/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-41-08.250651/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-41-08.250651/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-41-58.689620/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-41-58.689620/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-41-58.689620/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-41-58.689620/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-41-58.689620/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-41-58.689620/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-41-58.689620/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-41-58.689620/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-41-58.689620/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-41-58.689620/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-41-58.689620/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold55_dev2_delay50/tcp/remote/2021-03-11 04-41-58.689620/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-21-15.964770/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-21-15.964770/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-21-15.964770/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-21-15.964770/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-21-15.964770/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-21-15.964770/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-21-15.964770/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-21-15.964770/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-21-15.964770/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-21-15.964770/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-21-15.964770/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-21-15.964770/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-21-15.964770/timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-21-15.964770/timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-23-34.178260/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-23-34.178260/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-23-34.178260/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-23-34.178260/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-23-34.178260/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-23-34.178260/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-23-34.178260/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-23-34.178260/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-23-34.178260/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-23-34.178260/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-23-34.178260/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-23-34.178260/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-23-34.178260/timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-23-34.178260/timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-25-08.967745/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-25-08.967745/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-25-08.967745/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-25-08.967745/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-25-08.967745/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-25-08.967745/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-25-08.967745/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-25-08.967745/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-25-08.967745/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-25-08.967745/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-25-08.967745/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-25-08.967745/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-25-08.967745/timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-25-08.967745/timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-26-31.705285/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-26-31.705285/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-26-31.705285/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-26-31.705285/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-26-31.705285/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-26-31.705285/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-26-31.705285/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-26-31.705285/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-26-31.705285/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-26-31.705285/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-26-31.705285/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-26-31.705285/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-26-31.705285/timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-26-31.705285/timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-28-21.012236/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-28-21.012236/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-28-21.012236/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-28-21.012236/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-28-21.012236/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-28-21.012236/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-28-21.012236/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-28-21.012236/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-28-21.012236/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-28-21.012236/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-28-21.012236/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-28-21.012236/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-28-21.012236/timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-28-21.012236/timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-32-17.040706/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-32-17.040706/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-32-17.040706/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-32-17.040706/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-32-17.040706/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-32-17.040706/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-32-17.040706/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-32-17.040706/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-32-17.040706/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-32-17.040706/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-32-17.040706/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-32-17.040706/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-32-17.040706/timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-32-17.040706/timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-34-36.318718/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-34-36.318718/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-34-36.318718/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-34-36.318718/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-34-36.318718/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-34-36.318718/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-34-36.318718/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-34-36.318718/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-34-36.318718/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-34-36.318718/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-34-36.318718/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-34-36.318718/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-34-36.318718/timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-34-36.318718/timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-40-19.121335/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-40-19.121335/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-40-19.121335/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-40-19.121335/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-40-19.121335/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-40-19.121335/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-40-19.121335/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-40-19.121335/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-40-19.121335/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-40-19.121335/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-40-19.121335/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-40-19.121335/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-40-19.121335/timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-40-19.121335/timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-42-11.102905/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-42-11.102905/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-42-11.102905/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-42-11.102905/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-42-11.102905/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-42-11.102905/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-42-11.102905/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-42-11.102905/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-42-11.102905/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-42-11.102905/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-42-11.102905/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-42-11.102905/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-42-11.102905/timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-42-11.102905/timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-43-43.584919/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-43-43.584919/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-43-43.584919/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-43-43.584919/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-43-43.584919/quic-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-43-43.584919/quic-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-43-43.584919/quic-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-43-43.584919/quic-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-43-43.584919/quic.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-43-43.584919/quic.pcap -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-43-43.584919/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-43-43.584919/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-43-43.584919/timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/quic/remote/2021-03-08 08-43-43.584919/timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-53-34.612692/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-53-34.612692/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-53-34.612692/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-53-34.612692/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-53-34.612692/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-53-34.612692/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-53-34.612692/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-53-34.612692/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-53-34.612692/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-53-34.612692/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-53-34.612692/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-53-34.612692/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-53-34.612692/timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-53-34.612692/timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-55-12.544361/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-55-12.544361/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-55-12.544361/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-55-12.544361/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-55-12.544361/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-55-12.544361/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-55-12.544361/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-55-12.544361/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-55-12.544361/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-55-12.544361/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-55-12.544361/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-55-12.544361/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-55-12.544361/timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-55-12.544361/timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-56-46.086451/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-56-46.086451/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-56-46.086451/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-56-46.086451/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-56-46.086451/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-56-46.086451/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-56-46.086451/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-56-46.086451/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-56-46.086451/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-56-46.086451/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-56-46.086451/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-56-46.086451/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-56-46.086451/timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-56-46.086451/timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-58-29.177156/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-58-29.177156/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-58-29.177156/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-58-29.177156/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-58-29.177156/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-58-29.177156/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-58-29.177156/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-58-29.177156/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-58-29.177156/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-58-29.177156/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-58-29.177156/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-58-29.177156/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-58-29.177156/timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-58-29.177156/timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-59-06.053982/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-59-06.053982/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-59-06.053982/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-59-06.053982/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-59-06.053982/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-59-06.053982/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-59-06.053982/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-59-06.053982/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-59-06.053982/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-59-06.053982/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-59-06.053982/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-59-06.053982/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-59-06.053982/timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 08-59-06.053982/timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-00-39.234748/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-00-39.234748/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-00-39.234748/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-00-39.234748/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-00-39.234748/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-00-39.234748/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-00-39.234748/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-00-39.234748/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-00-39.234748/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-00-39.234748/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-00-39.234748/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-00-39.234748/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-00-39.234748/timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-00-39.234748/timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-06-13.770530/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-06-13.770530/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-06-13.770530/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-06-13.770530/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-06-13.770530/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-06-13.770530/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-06-13.770530/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-06-13.770530/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-06-13.770530/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-06-13.770530/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-06-13.770530/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-06-13.770530/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-06-13.770530/timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-06-13.770530/timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-08-23.246872/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-08-23.246872/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-08-23.246872/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-08-23.246872/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-08-23.246872/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-08-23.246872/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-08-23.246872/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-08-23.246872/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-08-23.246872/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-08-23.246872/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-08-23.246872/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-08-23.246872/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-08-23.246872/timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-08-23.246872/timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-08-55.386537/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-08-55.386537/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-08-55.386537/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-08-55.386537/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-08-55.386537/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-08-55.386537/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-08-55.386537/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-08-55.386537/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-08-55.386537/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-08-55.386537/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-08-55.386537/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-08-55.386537/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-08-55.386537/timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-08-55.386537/timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-12-51.075999/mod_timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-12-51.075999/mod_timestamps.csv -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-12-51.075999/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-12-51.075999/ping.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-12-51.075999/ssl-keys.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-12-51.075999/ssl-keys.log -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-12-51.075999/tcp-benchmark-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-12-51.075999/tcp-benchmark-client.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-12-51.075999/tcp-benchmark-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-12-51.075999/tcp-benchmark-server.json -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-12-51.075999/tcp.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-12-51.075999/tcp.pcap -------------------------------------------------------------------------------- /samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-12-51.075999/timestamps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/samples/samples_threshold5_dev2_delay0/tcp/remote/2021-03-08 09-12-51.075999/timestamps.csv -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/setup.py -------------------------------------------------------------------------------- /traffic-analysis/parse_capfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/traffic-analysis/parse_capfile.py -------------------------------------------------------------------------------- /traffic-analysis/pshark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/traffic-analysis/pshark.py -------------------------------------------------------------------------------- /traffic-analysis/tcp.cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/traffic-analysis/tcp.cap -------------------------------------------------------------------------------- /traffic-analysis/udp.cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/traffic-analysis/udp.cap -------------------------------------------------------------------------------- /traffic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /traffic/delay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/traffic/delay.py -------------------------------------------------------------------------------- /traffic/shark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/traffic/shark.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/check-ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/utils/check-ping.json -------------------------------------------------------------------------------- /utils/measurements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/utils/measurements.py -------------------------------------------------------------------------------- /utils/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/utils/parser.py -------------------------------------------------------------------------------- /utils/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/utils/ping.json -------------------------------------------------------------------------------- /utils/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/utils/ping.py -------------------------------------------------------------------------------- /visualize_events/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /visualize_events/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/visualize_events/dataloader.py -------------------------------------------------------------------------------- /visualize_events/figures/local_run_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/visualize_events/figures/local_run_1.png -------------------------------------------------------------------------------- /visualize_events/figures/local_run_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/visualize_events/figures/local_run_2.png -------------------------------------------------------------------------------- /visualize_events/figures/local_run_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/visualize_events/figures/local_run_3.png -------------------------------------------------------------------------------- /visualize_events/figures/local_run_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/visualize_events/figures/local_run_4.png -------------------------------------------------------------------------------- /visualize_events/figures/local_run_5_err.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/visualize_events/figures/local_run_5_err.png -------------------------------------------------------------------------------- /visualize_events/figures/network_run1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/visualize_events/figures/network_run1.png -------------------------------------------------------------------------------- /visualize_events/figures/network_run2_err.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/visualize_events/figures/network_run2_err.png -------------------------------------------------------------------------------- /visualize_events/figures/network_run3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/visualize_events/figures/network_run3.png -------------------------------------------------------------------------------- /visualize_events/figures/network_run4_err.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/visualize_events/figures/network_run4_err.png -------------------------------------------------------------------------------- /visualize_events/figures/network_run5_err.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/visualize_events/figures/network_run5_err.png -------------------------------------------------------------------------------- /visualize_events/pcap_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/visualize_events/pcap_loader.py -------------------------------------------------------------------------------- /visualize_events/plot_pcap_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/visualize_events/plot_pcap_files.py -------------------------------------------------------------------------------- /visualize_events/plot_timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/visualize_events/plot_timeline.py -------------------------------------------------------------------------------- /visualize_events/plot_timeplan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/visualize_events/plot_timeplan.py -------------------------------------------------------------------------------- /visualize_events/visualize_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JonathanJustavino/quic-benchmark/HEAD/visualize_events/visualize_events.py --------------------------------------------------------------------------------