Skip to content
/ taurus Public

Implementation of QUIC v1 as my Bachelor Thesis

License

Notifications You must be signed in to change notification settings

ilumary/taurus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation


Taurus (Bachelor Thesis)

A self made implementation of QUIC Version 1 in Rust following RFC 9000 and 9001, accompanied by my bachelors thesis. For now, this is purely a research project and in no way intended for commercial use!

Bachelor Thesis (Completed)

This repository contains my bachelor thesis from Heinrich-Heine Universität Düsseldorf, Germany. It has the title "Development Of A Minimal QUIC Implementation In Rust: An Introduction To Next Generation Networking", is written in english, and covers the design and connection mechanics of QUIC as well as details of my implementation as of the submit date. The rendered pdf can be found in the document subdirectory. It may also be helpful to those who simply want to get started with QUIC without using the RFCs directly.

Key Features (In Development)

The QUIC library is still in a very early development stage and a majority of the features required for any kind of meaningful use are not yet implemented. As I lack the resources of the likes of Amazon, Cloudflare and co, development may only progress slowly. Currently in Development are:

  • QUIC 1-RTT Handshake
  • Full TLS 1.3 Integration using rustls
  • Server and Client API for easy integration with HTTP/3 or other Application Protocols

The Server API design (Client API coming sometime in the future) is heavily inspired by Amazons QUIC API design. As of now it is still in development and neither fully functional nor feature complete.

Contributing

Feel free to open a pull request or report an issue. All contributions are welcome!

Build

Building requires a recent version of rustc (>=1.72.0):

# Clone & Build
$ git clone https://github.com/ilumary/taurus.git
$ cd taurus/project/ && cargo build

Note Windows can't be officially supported. Rust should work cross platform though.

Run

Currently the Client API is not yet implemented. Therefore one has to use an external QUIC implementation to act as Client. I recommend quinn. The local server implementation can be found in main.rs.

# Start the server
~/taurus/project/ $ cargo run
# Start client
~/quinn/ $ cargo run --example client https://127.0.0.1:34254/

Credits

Taurus uses the following open source packages:

Collaborators

ilumary - Me

License

MIT

About

Implementation of QUIC v1 as my Bachelor Thesis

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published