HelloVerifyRequest

class mtf.network_port.tls.tls_dtls_config.HelloVerifyRequest

Represents a DTLS HelloVerifyRequest message, which is used to prevent Denial-of-Service attacks by verifying that the client can receive packets at the claimed source address.

Attributes:

protocol_version (bytes): The DTLS protocol version.

cookie_length (bytes): The length of the cookie.

cookie (bytes): The stateless cookie the client must echo in its next ClientHello.

protocol_version: bytes
cookie_length: bytes
cookie: bytes
__init__(protocol_version: bytes, cookie_length: bytes, cookie: bytes) None