Sortix nightly manual
This manual documents Sortix nightly, a development build that has not been officially released. You can instead view this document in the latest official manual.
NAME
SSL_new, SSL_up_ref — create a new SSL structure for a connectionDESCRIPTION
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.