# netty_codec_quic
**Repository Path**: mingbaige/netty_codec_quic
## Basic Information
- **Project Name**: netty_codec_quic
- **Description**: 支持安卓编译
- **Primary Language**: Unknown
- **License**: Apache-2.0
- **Default Branch**: main
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2024-04-15
- **Last Updated**: 2024-04-15
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README

# Netty QUIC codec
This is a new experimental QUIC codec for netty which makes use of [quiche](https://github.com/cloudflare/quiche).
## How to include the dependency
To include the dependency you need to ensure you also specify the right classifier. At the moment we only support Linux
x86_64 / aarch_64, macOS / OSX x86_64 / aarch_64 and Windows x86_64 but this may change.
As an example this is how you would include the dependency in maven:
For Linux x86_64:
```
io.netty.incubator
netty-incubator-codec-native-quic
0.0.21.Final
linux-x86_64
```
For macOS / OSX:
```
io.netty.incubator
netty-incubator-codec-native-quic
0.0.21.Final
osx-x86_64
```
For Windows:
```
io.netty.incubator
netty-incubator-codec-native-quic
0.0.21.Final
windows-x86_64
```
## How to use this codec ?
For some examples please check our
[example package](https://github.com/netty/netty-incubator-codec-quic/tree/main/codec-native-quic/src/test/java/io/netty/incubator/codec/quic).
This contains a server and a client that can speak some limited HTTP/0.9 with each other.
For more "advanced" use cases, consider checking our
[netty-incubator-codec-http3](https://github.com/netty/netty-incubator-codec-http3) project.