interface Deno.QuicIncoming
unstable
An incoming connection for which the server has not yet begun its part of the handshake.
Properties Jump to heading
readonly
Jump to headinglocalIp: stringThe local IP address which was used when the peer established the connection.
readonly
Jump to headingremoteAddr: NetAddrThe peer’s UDP address.
readonly
Jump to headingremoteAddressValidated: booleanWhether the socket address that is initiating this connection has proven that they can receive traffic.
Methods Jump to heading
Jump to headingaccept<ZRTT extends boolean>(options?: QuicAcceptOptions<ZRTT>): ZRTT extends true ? QuicConn : Promise<QuicConn>Accept this incoming connection.
Jump to headingrefuse(): voidRefuse this incoming connection.
Jump to headingignore(): voidIgnore this incoming connection attempt, not sending any packet in response.