mirror of
https://github.com/jetty/jetty.project.git
synced 2025-02-24 00:17:18 +00:00
- Avoid sending the last=true flag as a separate QUIC frame. Apparently Quiche has problem notifying this frame to the receiving peer. Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
24 lines
775 B
XML
24 lines
775 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.7-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>
|
|
<module>http3-client</module>
|
|
<module>http3-tests</module>
|
|
</modules>
|
|
|
|
</project>
|