All Projects → signetlabdei → quic-ns-3

signetlabdei / quic-ns-3

Licence: GPL-2.0 license
QUIC implementation for ns-3

Programming Languages

C++
36643 projects - #6 most used programming language
python
139335 projects - #7 most used programming language
c
50402 projects - #5 most used programming language
perl
6916 projects
matlab
3953 projects
Makefile
30231 projects

Projects that are alternatives of or similar to quic-ns-3

Pquic
The PQUIC implementation, a framework that enables QUIC clients and servers to dynamically exchange protocol plugins that extend the protocol on a per-connection basis
Stars: ✭ 63 (+90.91%)
Mutual labels:  quic
Hysteria
Hysteria is a set of relay & proxy utilities that are specifically optimized for harsh network environments
Stars: ✭ 121 (+266.67%)
Mutual labels:  quic
Quic
libquic: QUIC (Quick UDP Internet Connections)
Stars: ✭ 159 (+381.82%)
Mutual labels:  quic
Base Drafts
Internet-Drafts that make up the base QUIC specification
Stars: ✭ 1,270 (+3748.48%)
Mutual labels:  quic
Wg Materials
Agenda, Minutes, Presentations
Stars: ✭ 120 (+263.64%)
Mutual labels:  quic
Http3 Explained
A document describing the HTTP/3 and QUIC protocols
Stars: ✭ 1,860 (+5536.36%)
Mutual labels:  quic
T2q2t
TCP/QUIC port forward tool
Stars: ✭ 26 (-21.21%)
Mutual labels:  quic
Quic.net
A .NET C# Implementation of QUIC protocol - Google's experimental transport layer.
Stars: ✭ 173 (+424.24%)
Mutual labels:  quic
Patch
Something could be public patches
Stars: ✭ 120 (+263.64%)
Mutual labels:  quic
Quic Proxy
A http/https proxy using QUIC as transport layer
Stars: ✭ 159 (+381.82%)
Mutual labels:  quic
Go Tunnel
TLS/SSL Tunnel - A modern STunnel replacement written in golang
Stars: ✭ 110 (+233.33%)
Mutual labels:  quic
Quinn
Async-friendly QUIC implementation in Rust
Stars: ✭ 1,859 (+5533.33%)
Mutual labels:  quic
Siris
DEPRECATED: The community driven fork of Iris. The fastest web framework for Golang!
Stars: ✭ 146 (+342.42%)
Mutual labels:  quic
Warpcore
User-space UDP/IP stack on top of netmap
Stars: ✭ 67 (+103.03%)
Mutual labels:  quic
Quant
QUIC implementation for POSIX and IoT platforms
Stars: ✭ 162 (+390.91%)
Mutual labels:  quic
Nghq
An implementation of Multicast QUIC https://tools.ietf.org/html/draft-pardue-quic-http-mcast-07
Stars: ✭ 59 (+78.79%)
Mutual labels:  quic
Quic
A Go implementation of the QUIC API for Peer-to-peer and Client-to-Server Connections
Stars: ✭ 137 (+315.15%)
Mutual labels:  quic
ntu-dsi-dcn
The official open source ns-3 simulation framework for datacenter network architectures
Stars: ✭ 20 (-39.39%)
Mutual labels:  ns-3
Msquic
Cross-platform, C implementation of the IETF QUIC protocol.
Stars: ✭ 2,501 (+7478.79%)
Mutual labels:  quic
Algernon
🎩 Small self-contained pure-Go web server with Lua, Markdown, HTTP/2, QUIC, Redis and PostgreSQL support
Stars: ✭ 1,880 (+5596.97%)
Mutual labels:  quic

QUIC implementation for ns-3

QUIC code base

This repository contains in the src/quic and src/applications the code for the implementation of the QUIC protocol for ns-3.

The implementation is described in this paper.

Please use the issue tracker for bugs/questions.

The Network Simulator, Version 3

Table of Contents:

  1. An overview
  2. Building ns-3
  3. Running ns-3
  4. Getting access to the ns-3 documentation
  5. Working with the development version of ns-3

Note: Much more substantial information about ns-3 can be found at http://www.nsnam.org

An Open Source project

ns-3 is a free open source project aiming to build a discrete-event network simulator targeted for simulation research and education.
This is a collaborative project; we hope that the missing pieces of the models we have not yet implemented will be contributed by the community in an open collaboration process.

The process of contributing to the ns-3 project varies with the people involved, the amount of time they can invest and the type of model they want to work on, but the current process that the project tries to follow is described here: http://www.nsnam.org/developers/contributing-code/

This README excerpts some details from a more extensive tutorial that is maintained at: http://www.nsnam.org/documentation/latest/

Building ns-3

The code for the framework and the default models provided by ns-3 is built as a set of libraries. User simulations are expected to be written as simple programs that make use of these ns-3 libraries.

To build the set of default libraries and the example programs included in this package, you need to use the tool 'waf'. Detailed information on how to use waf is included in the file doc/build.txt

However, the real quick and dirty way to get started is to type the command

./waf configure --enable-examples

followed by

./waf

in the directory which contains this README file. The files built will be copied in the build/ directory.

The current codebase is expected to build and run on the set of platforms listed in the release notes file.

Other platforms may or may not work: we welcome patches to improve the portability of the code to these other platforms.

Running ns-3

On recent Linux systems, once you have built ns-3 (with examples enabled), it should be easy to run the sample programs with the following command, such as:

./waf --run simple-global-routing

That program should generate a simple-global-routing.tr text trace file and a set of simple-global-routing-xx-xx.pcap binary pcap trace files, which can be read by tcpdump -tt -r filename.pcap The program source can be found in the examples/routing directory.

Getting access to the ns-3 documentation

Once you have verified that your build of ns-3 works by running the simple-point-to-point example as outlined in 3) above, it is quite likely that you will want to get started on reading some ns-3 documentation.

All of that documentation should always be available from the ns-3 website: http:://www.nsnam.org/documentation/.

This documentation includes:

Working with the development version of ns-3

If you want to download and use the development version of ns-3, you need to use the tool git. A quick and dirty cheat sheet is included in the manual, but reading through the git tutorials found in the Internet is usually a good idea if you are not familiar with it.

If you have successfully installed git, you can get a copy of the development version with the following command:

git clone https://gitlab.com/nsnam/ns-3-dev.git

However, we recommend to follow the Gitlab guidelines for starters, that includes creating a Gitlab account, forking the ns-3-dev project under the new account's name, and then cloning the forked repository. You can find more information in the manual [link].

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].