interface Deno.QuicTransportOptions
unstable
Properties #
#keepAliveInterval: number = undefined
optional
Period of inactivity before sending a keep-alive packet. Keep-alive packets prevent an inactive but otherwise healthy connection from timing out. Only one side of any given connection needs keep-alive enabled for the connection to be preserved.
#maxIdleTimeout: number = undefined
optional
Maximum duration of inactivity to accept before timing out the connection. The true idle timeout is the minimum of this and the peer’s own max idle timeout.
#maxConcurrentBidirectionalStreams: number = 100
optional
Maximum number of incoming bidirectional streams that may be open concurrently.
#maxConcurrentUnidirectionalStreams: number = 100
optional
Maximum number of incoming unidirectional streams that may be open concurrently.
#congestionControl: "throughput"
| "low-latency"
| "default" = "default"
optional
The congestion control algorithm used when sending data over this connection.