Misc fix ups to deprecate explicit de-init documentation
[openssl.git] / doc / ssl / SSL_new.pod
1 =pod
2
3 =head1 NAME
4
5 SSL_new, SSL_up_ref - create a new SSL structure for a connection
6
7 =head1 SYNOPSIS
8
9  #include <openssl/ssl.h>
10
11  SSL *SSL_new(SSL_CTX *ctx);
12  void SSL_up_ref(SSL *s);
13
14 =head1 DESCRIPTION
15
16 SSL_new() creates a new B<SSL> structure which is needed to hold the
17 data for a TLS/SSL connection. The new structure inherits the settings
18 of the underlying context B<ctx>: connection method,
19 options, verification settings, timeout settings. An B<SSL> structure is
20 reference counted. Creating an B<SSL> structure for the first time increments
21 the reference count. Freeing it (using SSL_free) decrements it. When the
22 reference count drops to zero, any memory or resources allocated to the B<SSL>
23 structure are freed. SSL_up_ref() increments the reference count for an
24 existing B<SSL> structure.
25
26 =head1 RETURN VALUES
27
28 The following return values can occur:
29
30 =over 4
31
32 =item NULL
33
34 The creation of a new SSL structure failed. Check the error stack to
35 find out the reason.
36
37 =item Pointer to an SSL structure
38
39 The return value points to an allocated SSL structure.
40
41 =back
42
43 =head1 SEE ALSO
44
45 L<SSL_free(3)>, L<SSL_clear(3)>,
46 L<SSL_CTX_set_options(3)>,
47 L<SSL_get_SSL_CTX(3)>,
48 L<ssl(3)>
49
50 =cut