Sortix cross-volatile manual
This manual documents Sortix cross-volatile. You can instead view this document in the latest official manual.
NAME
SSL_new, SSL_up_ref — create a new SSL structure for a connectionSYNOPSIS
library “libssl” libcrypto#include <openssl/ssl.h>
SSL_new(SSL_CTX *ctx);
SSL_up_ref(SSL *ssl);
DESCRIPTION
SSL_new() creates a new SSL structure which is needed to hold the data for a TLS/SSL connection. The new structure inherits the settings of the underlying context ctx: connection method, options, verification settings, timeout settings, security level. The reference count of the new structure is set to 1.RETURN VALUES
The following return values can occur:- NULL
- The creation of a new SSL structure failed. Check the error stack to find out the reason.
-
Pointer to an SSL
structure - The return value points to an allocated SSL structure.