Skip to main content

SocketOptions

interface SocketOptions
extends Abortable

Properties Jump to heading

optional
Jump to headingreuseAddr: boolean | undefined
optional
Jump to headingipv6Only: boolean | undefined
optional
Jump to headingrecvBufferSize: number | undefined
optional
Jump to headingsendBufferSize: number | undefined
optional
Jump to headinglookup: ((
hostname: string,
options: dns.LookupOneOptions,
callback: (
err: ErrnoException | null,
address: string,
family: number,
) => void
,
) => void) | undefined
Back to top