Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

public class quiche_h
{
private static final String EXPECTED_QUICHE_VERSION = "0.29.1";
private static final String EXPECTED_QUICHE_VERSION = "0.29.2";
private static final Logger LOG = LoggerFactory.getLogger(quiche_h.class);

static void initialize()
Expand Down Expand Up @@ -780,14 +780,6 @@ private static class DowncallHandles
C_POINTER,
C_INT
));
private static final MethodHandle quiche_conn_retired_scid_next = NativeHelper.downcallHandle(
"quiche_conn_retired_scid_next",
FunctionDescriptor.of(
C_BOOL,
C_POINTER,
C_POINTER,
C_POINTER
));
private static final MethodHandle quiche_conn_retired_scids = NativeHelper.downcallHandle(
"quiche_conn_retired_scids",
FunctionDescriptor.of(
Expand Down Expand Up @@ -2173,18 +2165,6 @@ public static long quiche_conn_send_ack_eliciting_on_path(MemorySegment conn, Me
}
}

public static boolean quiche_conn_retired_scid_next(MemorySegment conn, MemorySegment out, MemorySegment out_len)
{
try
{
return (byte)DowncallHandles.quiche_conn_retired_scid_next.invokeExact(conn, out, out_len) != 0;
}
catch (Throwable x)
{
throw new AssertionError("should not reach here", x);
}
}

public static long quiche_conn_retired_scids(MemorySegment conn)
{
try
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public interface LibQuiche extends Library
{
// This interface is a translation of the quiche.h header of a specific version.
// It needs to be reviewed each time the native lib version changes.
String EXPECTED_QUICHE_VERSION = "0.29.1";
String EXPECTED_QUICHE_VERSION = "0.29.2";

// The charset used to convert java.lang.String to char * and vice versa.
Charset CHARSET = StandardCharsets.UTF_8;
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@
<jboss.logging.processor.version>3.0.4.Final</jboss.logging.processor.version>
<jboss.logging.version>3.6.3.Final</jboss.logging.version>
<jetty-assembly-descriptors.version>1.1</jetty-assembly-descriptors.version>
<jetty-quiche-native.version>0.29.1</jetty-quiche-native.version>
<jetty-quiche-native.version>0.29.2</jetty-quiche-native.version>
<jetty-test-policy.version>1.2</jetty-test-policy.version>
<jetty-version.maven.plugin.version>2.7</jetty-version.maven.plugin.version>
<jetty.perf-helper.version>1.0.7</jetty.perf-helper.version>
Expand Down
Loading