# msquic
**Repository Path**: dscoder/msquic
## Basic Information
- **Project Name**: msquic
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: main
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2020-05-16
- **Last Updated**: 2022-03-04
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README

[](https://microsoft.github.io/msquic/) [](https://dev.azure.com/ms/msquic/_build/latest?definitionId=347&branchName=main) [](https://dev.azure.com/ms/msquic/_build/latest?definitionId=347&branchName=main)  [](https://lgtm.com/projects/g/microsoft/msquic/context:cpp) [](https://bestpractices.coreinfrastructure.org/projects/4846) [](https://discord.gg/YGAtCwTSsc) [](https://crates.io/crates/msquic) [](https://www.nuget.org/profiles/msquic)
MsQuic is a Microsoft implementation of the [IETF QUIC](https://datatracker.ietf.org/wg/quic/about/)
protocol. It is cross-platform, written in C and designed to be a general purpose QUIC library.
## Protocol Features
**RFC**: [9000](https://datatracker.ietf.org/doc/html/rfc9000), [9001](https://datatracker.ietf.org/doc/html/rfc9001), [9002](https://datatracker.ietf.org/doc/html/rfc9002) **Draft**: [Datagram](https://tools.ietf.org/html/draft-ietf-quic-datagram), [Version Negotiation](https://tools.ietf.org/html/draft-ietf-quic-version-negotiation), [Load Balancing](https://tools.ietf.org/html/draft-ietf-quic-load-balancers), [ACK Frequency](https://tools.ietf.org/html/draft-ietf-quic-ack-frequency), [Perf Testing](https://datatracker.ietf.org/doc/html/draft-banks-quic-performance), [CIBIR](https://datatracker.ietf.org/doc/html/draft-banks-quic-cibir)
QUIC has many benefits when compared to existing "TLS over TCP" scenarios:
* All packets are encrypted and handshake is authenticated with TLS 1.3.
* Parallel streams of (reliable and unreliable) application data.
* Exchange application data in the first round trip (0-RTT).
* Improved congestion control and loss recovery.
* Survives a change in the clients IP address or port.
* Stateless load balancing.
* Easily extendable for new features and extensions.
## Library Features
MsQuic has several features that differentiates it from other QUIC implementations:
* Optimized for client and server.
* Optimized for maximal throughput and minimal latency.
* Asynchronous IO.
* Receive side scaling ([RSS](https://docs.microsoft.com/en-us/windows-hardware/drivers/network/introduction-to-receive-side-scaling)) support.
* UDP send and receive coalescing support.
# Documentation
* For platform support details, see the [Platforms docs](./docs/Platforms.md).
* For release details, see the [Release docs](./docs/Release.md).
* For performance data, see the [Performance dashboard](https://aka.ms/msquicperformance).
* For building the library, see the [Build docs](./docs/BUILD.md).
* For testing the library, see the [Testing docs](./docs/TEST.md).
* For using the API, see the [API docs](./docs/API.md) or the [Sample](./src/tools/sample/sample.c).
* For deploying QUIC, see the [Deployment docs](./docs/Deployment.md).
* For diagnosing issues, see the [Diagnostics docs](./docs/Diagnostics.md) and the [Trouble Shooting Guide](./docs/TSG.md).
* For other frequently asked questions, see the [FAQs](./docs/FAQ.md).
# Contributing
For information on contributing, please see our [contribution guidlines](./.github/CONTRIBUTING.md). Feel free to take a look at our [Good First Issues](https://github.com/microsoft/msquic/labels/good%20first%20issue) list if you're looking for somewhere to start. If you'd just like to talk, come chat with us [on Discord](https://discord.gg/YGAtCwTSsc).