CommonConnectionOptions.SNICallback - Node documentation
property CommonConnectionOptions.SNICallback

Usage in Deno

import { type CommonConnectionOptions } from "node:tls";

SNICallback(servername, cb) A function that will be called if the client supports SNI TLS extension. Two arguments will be passed when called: servername and cb. SNICallback should invoke cb(null, ctx), where ctx is a SecureContext instance. (tls.createSecureContext(...) can be used to get a proper SecureContext.) If SNICallback wasn't provided the default callback with high-level API will be used (see below).

Type

((
servername: string,
cb: (
err: Error | null,
) => void
,
) => void) | undefined