OlegDokuka / netty-incubator-codec-quic

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build project

Netty QUIC codec

This is a new experimental QUIC codec for netty which makes use of 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, macOS / OSX x86_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:

<dependency>
    <groupId>io.netty.incubator</groupId>
    <artifactId>netty-incubator-codec-quic</artifactId>
    <version>0.0.16.Final</version>
    <classifier>linux-x86_64</classifier>
</dependency>

For macOS / OSX:

<dependency>
    <groupId>io.netty.incubator</groupId>
    <artifactId>netty-incubator-codec-quic</artifactId>
    <version>0.0.16.Final</version>
    <classifier>osx-x86_64</classifier>
</dependency>

For Windows:

<dependency>
    <groupId>io.netty.incubator</groupId>
    <artifactId>netty-incubator-codec-quic</artifactId>
    <version>0.0.16.Final</version>
    <classifier>windows-x86_64</classifier>
</dependency>

How to use this codec ?

For some examples please check our example package. This contains a server and a client that can speak some limited HTTP/0.9 with each other.

For more "advanced" use-case consider checking our netty-incubator-codec-http3 project.

About

License:Apache License 2.0


Languages

Language:Java 87.3%Language:C 11.3%Language:Shell 1.3%Language:PowerShell 0.2%Language:Ruby 0.0%