Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/superdeno/test/deps.ts>Oak.ListenOptionsTls

Super-agent driven library for testing Deno HTTP servers.
Latest
interface Oak.ListenOptionsTls
implements [Deno.ListenTlsOptions]
import { type Oak } from "https://deno.land/x/superdeno@4.9.0/test/deps.ts";
const { ListenOptionsTls } = Oak;

Properties

optional
alpnProtocols: string[]

Application-Layer Protocol Negotiation (ALPN) protocols to announce to the client. If not specified, no ALPN extension will be included in the TLS handshake.

NOTE this is part of the native HTTP server in Deno 1.9 or later, which requires the --unstable flag to be available.

secure: true
optional
signal: AbortSignal

An optional abort signal which can be used to close the listener.