Skip to main content
Deno.QuicEndpoint - Deno documentation
class Deno.QuicEndpoint
Unstable

Constructors

new
QuicEndpoint(options?: QuicEndpointOptions)

Create a QUIC endpoint which may be used for client or server connections.

Requires allow-net permission.

Properties

readonly
addr: NetAddr

Return the address of the QuicListener.

Methods

close(info?: QuicCloseInfo): void

Closes the endpoint. All associated connections will be closed and incoming connections will be rejected.

Listen announces on the local transport address over QUIC.

Back to top