Class TransportParameters.Ids

java.lang.Object
org.eclipse.jetty.quic.api.frames.TransportParameters.Ids
Enclosing class:
TransportParameters

public static class TransportParameters.Ids extends Object

The collection of known QUIC transport parameter IDs.

  • Field Details

    • MAX_IDLE_TIMEOUT

      public static final TransportParameters.Id<Long> MAX_IDLE_TIMEOUT

      The session max idle timeout in milliseconds.

    • INITIAL_MAX_DATA

      public static final TransportParameters.Id<Long> INITIAL_MAX_DATA

      The initial session max data.

      A local peer sends this parameter to inform the remote peer about the max data the local peer is willing to receive on the session.

    • INITIAL_MAX_STREAM_DATA_BIDIRECTIONAL_LOCAL

      public static final TransportParameters.Id<Long> INITIAL_MAX_STREAM_DATA_BIDIRECTIONAL_LOCAL

      The initial local bidirectional stream max data.

      A local peer sends this parameter to inform the remote peer about the max data the local peer is willing to receive on local bidirectional streams.

    • INITIAL_MAX_STREAM_DATA_BIDIRECTIONAL_REMOTE

      public static final TransportParameters.Id<Long> INITIAL_MAX_STREAM_DATA_BIDIRECTIONAL_REMOTE

      The initial remote bidirectional stream max data.

      A local peer sends this parameter to inform the remote peer about the max data the local peer is willing to receive on remote bidirectional streams.

    • INITIAL_MAX_STREAM_DATA_UNIDIRECTIONAL

      public static final TransportParameters.Id<Long> INITIAL_MAX_STREAM_DATA_UNIDIRECTIONAL

      The initial unidirectional stream max data.

      A local peer sends this parameter to inform the remote peer about the max data the local peer is willing to receive on unidirectional streams.

    • INITIAL_MAX_STREAMS_BIDIRECTIONAL

      public static final TransportParameters.Id<Long> INITIAL_MAX_STREAMS_BIDIRECTIONAL

      The initial bidirectional max streams.

      A local peer sends this parameter to inform the remote peer about the max number of streams the local peer is willing to receive.

    • INITIAL_MAX_STREAMS_UNIDIRECTIONAL

      public static final TransportParameters.Id<Long> INITIAL_MAX_STREAMS_UNIDIRECTIONAL

      The initial unidirectional max streams.

      A local peer sends this parameter to inform the remote peer about the max number of streams the local peer is willing to receive.

  • Constructor Details

    • Ids

      public Ids()
  • Method Details