1
0
mirror of https://github.com/facebookincubator/mvfst.git synced 2025-04-18 17:24:03 +03:00

remove reference to 'master' branch in quic

Summary: https://github.com/facebookincubator/mvfst/issues/219

Reviewed By: kvtsoy

Differential Revision: D31022876

fbshipit-source-id: 6dc4e76136d5a2e43f3daf8dd708b2cf3e688e54
This commit is contained in:
Udip Pant 2021-09-17 11:32:31 -07:00 committed by Facebook GitHub Bot
parent 707cbf8d7d
commit 606880a058
2 changed files with 4 additions and 4 deletions

View File

@ -12,7 +12,7 @@ requests are cherry-picked into our repo and then pushed back out.
## Pull Requests
We actively welcome your pull requests.
1. Fork the repo and create your branch from `master`.
1. Fork the repo and create your branch from `main`.
1. If you've added code that should be tested, add tests
1. If you've changed APIs, update the documentation.
1. Ensure the test suite passes.

View File

@ -1,9 +1,9 @@
![alt text](logo.png "MVFST")
[![Linux Build Status](https://github.com/facebookincubator/mvfst/workflows/linux/badge.svg?branch=master)](https://github.com/facebookincubator/mvfst/actions?workflow=linux)
[![macOS Build Status](https://github.com/facebookincubator/mvfst/workflows/mac/badge.svg?branch=master)](https://github.com/facebookincubator/mvfst/actions?workflow=mac)
[![Windows Build Status](https://github.com/facebookincubator/mvfst/workflows/windows/badge.svg?branch=master)](https://github.com/facebookincubator/mvfst/actions?workflow=windows)
[![Linux Build Status](https://github.com/facebookincubator/mvfst/workflows/linux/badge.svg)](https://github.com/facebookincubator/mvfst/actions?workflow=linux)
[![macOS Build Status](https://github.com/facebookincubator/mvfst/workflows/mac/badge.svg)](https://github.com/facebookincubator/mvfst/actions?workflow=mac)
[![Windows Build Status](https://github.com/facebookincubator/mvfst/workflows/windows/badge.svg)](https://github.com/facebookincubator/mvfst/actions?workflow=windows)
## Introduction
`mvfst` (Pronounced *move fast*) is a client and server implementation of [IETF QUIC](https://quicwg.org/) protocol in C++ by Facebook. QUIC is a UDP based reliable, multiplexed transport protocol that will become an internet standard. The goal of `mvfst` is to build a performant implementation of the QUIC transport protocol that applications could adapt for use cases on both the internet and the data-center. `mvfst` has been tested at scale on android, iOS apps, as well as servers and has several features to support large scale deployments.