logo
Free, Micro AI Code Reviews That Run on Git Commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt git-lrc - Free, Micro AI Code Reviews That Run on Git 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