{"id":20450054,"url":"https://github.com/ooni/quic-go","last_synced_at":"2026-04-19T11:33:06.617Z","repository":{"id":145890795,"uuid":"526255077","full_name":"ooni/quic-go","owner":"ooni","description":null,"archived":false,"fork":false,"pushed_at":"2022-08-18T15:21:52.000Z","size":11946,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-10-31T06:31:54.804Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ooni.png","metadata":{"files":{"readme":"README.md","changelog":"Changelog.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2022-08-18T14:53:33.000Z","updated_at":"2022-08-18T15:09:16.000Z","dependencies_parsed_at":null,"dependency_job_id":"df0adfac-a842-4b43-aa7c-43a543772c38","html_url":"https://github.com/ooni/quic-go","commit_stats":{"total_commits":4042,"total_committers":62,"mean_commits":65.19354838709677,"dds":"0.20534388916378032","last_synced_commit":"238f5f8d6ecf0051ad9d817d17b51cd6719f8073"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ooni/quic-go","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ooni%2Fquic-go","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ooni%2Fquic-go/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ooni%2Fquic-go/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ooni%2Fquic-go/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ooni","download_url":"https://codeload.github.com/ooni/quic-go/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ooni%2Fquic-go/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32005608,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T20:23:30.271Z","status":"online","status_checked_at":"2026-04-19T02:00:07.110Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-15T10:50:05.958Z","updated_at":"2026-04-19T11:33:06.490Z","avatar_url":"https://github.com/ooni.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# A QUIC implementation in pure Go\n\n**Note**: this repository is a temporary fork of\n[lucas-clemente/quic-go](https://github.com/lucas-clemente/quic-go) to experiment\nwith and figure out our needs in terms of mapping an http3 request with the five tuple\nused by the underlying http3 connection. We described this experiment in the\n[ooni/probe#2220](https://github.com/ooni/probe/issues/2220) issue. The general\nplan here is to understand what we exactly need and then see whether it's possible\nto upstream the changes.\n\nWe started this fork at lucas-clemente/quic-go@v0.27.0. We're not going to publish\nall the upstream tags for simplicity. When merging from upstream, we'll clarify which\ntags we're merging.\n\n(You should not depend on this repository! As mentioned, this is an experiment and\nwe may archive this repository anytime soon!)\n\n- - -\n\n\u003cimg src=\"docs/quic.png\" width=303 height=124\u003e\n\n[![PkgGoDev](https://pkg.go.dev/badge/github.com/lucas-clemente/quic-go)](https://pkg.go.dev/github.com/lucas-clemente/quic-go)\n[![Code Coverage](https://img.shields.io/codecov/c/github/lucas-clemente/quic-go/master.svg?style=flat-square)](https://codecov.io/gh/lucas-clemente/quic-go/)\n\nquic-go is an implementation of the [QUIC protocol, RFC 9000](https://datatracker.ietf.org/doc/html/rfc9000) protocol in Go.\nIn addition to RFC 9000, it currently implements the [IETF QUIC draft-29](https://tools.ietf.org/html/draft-ietf-quic-transport-29). Support for draft-29 will eventually be dropped, as it is phased out of the ecosystem.\n\n## Guides\n\n*We currently support Go 1.16.x, Go 1.17.x, and Go 1.18.x.*\n\nRunning tests:\n\n    go test ./...\n\n### QUIC without HTTP/3\n\nTake a look at [this echo example](example/echo/echo.go).\n\n## Usage\n\n### As a server\n\nSee the [example server](example/main.go). Starting a QUIC server is very similar to the standard lib http in go:\n\n```go\nhttp.Handle(\"/\", http.FileServer(http.Dir(wwwDir)))\nhttp3.ListenAndServeQUIC(\"localhost:4242\", \"/path/to/cert/chain.pem\", \"/path/to/privkey.pem\", nil)\n```\n\n### As a client\n\nSee the [example client](example/client/main.go). Use a `http3.RoundTripper` as a `Transport` in a `http.Client`.\n\n```go\nhttp.Client{\n  Transport: \u0026http3.RoundTripper{},\n}\n```\n\n## Projects using quic-go\n\n| Project                                              | Description                                                                                            | Stars |\n|------------------------------------------------------|--------------------------------------------------------------------------------------------------------|-------|\n| [algernon](https://github.com/xyproto/algernon)      | Small self-contained pure-Go web server with Lua, Markdown, HTTP/2, QUIC, Redis and PostgreSQL support | ![GitHub Repo stars](https://img.shields.io/github/stars/xyproto/algernon?style=flat-square) |\n| [caddy](https://github.com/caddyserver/caddy/)       | Fast, multi-platform web server with automatic HTTPS                                                   | ![GitHub Repo stars](https://img.shields.io/github/stars/caddyserver/caddy?style=flat-square) |\n| [go-ipfs](https://github.com/ipfs/go-ipfs)           | IPFS implementation in go                                                                              | ![GitHub Repo stars](https://img.shields.io/github/stars/ipfs/go-ipfs?style=flat-square) |\n| [syncthing](https://github.com/syncthing/syncthing/) | Open Source Continuous File Synchronization                                                            | ![GitHub Repo stars](https://img.shields.io/github/stars/syncthing/syncthing?style=flat-square) |\n| [traefik](https://github.com/traefik/traefik)        | The Cloud Native Application Proxy                                                                     | ![GitHub Repo stars](https://img.shields.io/github/stars/traefik/traefik?style=flat-square) |\n| [v2ray-core](https://github.com/v2fly/v2ray-core)    | A platform for building proxies to bypass network restrictions                                         | ![GitHub Repo stars](https://img.shields.io/github/stars/v2fly/v2ray-core?style=flat-square) |\n| [cloudflared](https://github.com/cloudflare/cloudflared)    | A tunneling daemon that proxies traffic from the Cloudflare network to your origins             | ![GitHub Repo stars](https://img.shields.io/github/stars/cloudflare/cloudflared?style=flat-square) |\n| [OONI Probe](https://github.com/ooni/probe-cli)            | The Open Observatory of Network Interference (OONI) aims to empower decentralized efforts in documenting Internet censorship around the world.   | ![GitHub Repo stars](https://img.shields.io/github/stars/ooni/probe-cli?style=flat-square) |\n\n\n## Contributing\n\nWe are always happy to welcome new contributors! We have a number of self-contained issues that are suitable for first-time contributors, they are tagged with [help wanted](https://github.com/lucas-clemente/quic-go/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22). If you have any questions, please feel free to reach out by opening an issue or leaving a comment.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fooni%2Fquic-go","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fooni%2Fquic-go","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fooni%2Fquic-go/lists"}