mirror of
https://github.com/jetty/jetty.project.git
synced 2025-02-24 08:28:54 +00:00
- Started implementation of HTTP/3 APIs, frames and parsing. - Started implementation of server-side HTTP/3. - Reworked the threading model in QUIC to be more efficient and avoid contending on the QPACK encoder/decoder. - Updated QPACK NBitLongEncoder to support QUIC stream IDs of type long. Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
22 lines
708 B
XML
22 lines
708 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
<parent>
|
|
<artifactId>jetty-project</artifactId>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<version>10.0.1-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.eclipse.jetty.http3</groupId>
|
|
<artifactId>http3-parent</artifactId>
|
|
<packaging>pom</packaging>
|
|
<name>Jetty :: HTTP3</name>
|
|
|
|
<modules>
|
|
<module>http3-qpack</module>
|
|
<module>http3-common</module>
|
|
<module>http3-server</module>
|
|
</modules>
|
|
|
|
</project>
|