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

SSL_SESSION_get_compress_id - get details about the compression associated with a session

Description

       If compression has been negotiated for an ssl session then SSL_SESSION_get_compress_id() will return the
       id for the compression method or 0 otherwise. The only built-in supported compression method is zlib
       which has an id of 1.

Name

       SSL_SESSION_get_compress_id - get details about the compression associated with a session

Return Values

SSL_SESSION_get_compress_id() returns the id of the compression method or 0 if none.

See Also

ssl(7)

Synopsis

        #include <openssl/ssl.h>

        unsigned int SSL_SESSION_get_compress_id(const SSL_SESSION *s);

See Also