logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

DTLS_get_data_mtu - Get maximum data payload size

Description

       This function obtains the maximum data payload size for the established DTLS connection ssl, based on the
       DTLS record MTU and the overhead of the DTLS record header, encryption and authentication currently in
       use.

History

       The DTLS_get_data_mtu() function was added in OpenSSL 1.1.1.

Name

       DTLS_get_data_mtu - Get maximum data payload size

Return Values

       Returns the maximum data payload size on success, or 0 on failure.

Synopsis

        #include <openssl/ssl.h>

        size_t DTLS_get_data_mtu(const SSL *ssl);

See Also