Skip to main content
Deno.QuicAcceptOptions - Deno documentation
interface Deno.QuicAcceptOptions
Unstable

Type Parameters

ZRTT extends boolean

Properties

optional
alpnProtocols: string[]

Application-Layer Protocol Negotiation (ALPN) protocols to announce to the client. QUIC requires the use of ALPN.

optional
zeroRtt: ZRTT = false

Convert this connection into 0.5-RTT at the cost of weakened security, as 0.5-RTT data may be sent before TLS client authentication has occurred.

Back to top