Deno.ListenTlsOptions
interface ListenTlsOptions extends TcpListenOptions {
alpnProtocols?: string[];
cert?: string;
certFile?: string;
key?: string;
keyFile?: string;
transport?: "tcp";
}§Extends
§Properties
§
alpnProtocols?: string[]
[src]Application-Layer Protocol Negotiation (ALPN) protocols to announce to the client. If not specified, no ALPN extension will be included in the TLS handshake.