Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(292)

Side by Side Diff: openssl/doc/ssl/SSL_CTX_new.pod

Issue 9254031: Upgrade chrome's OpenSSL to same version Android ships with. (Closed) Base URL: http://src.chromium.org/svn/trunk/deps/third_party/openssl/
Patch Set: '' Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « openssl/doc/crypto/threads.pod ('k') | openssl/doc/ssl/SSL_CTX_set_mode.pod » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 =pod 1 =pod
2 2
3 =head1 NAME 3 =head1 NAME
4 4
5 SSL_CTX_new - create a new SSL_CTX object as framework for TLS/SSL enabled funct ions 5 SSL_CTX_new - create a new SSL_CTX object as framework for TLS/SSL enabled funct ions
6 6
7 =head1 SYNOPSIS 7 =head1 SYNOPSIS
8 8
9 #include <openssl/ssl.h> 9 #include <openssl/ssl.h>
10 10
11 SSL_CTX *SSL_CTX_new(SSL_METHOD *method); 11 SSL_CTX *SSL_CTX_new(const SSL_METHOD *method);
12 12
13 =head1 DESCRIPTION 13 =head1 DESCRIPTION
14 14
15 SSL_CTX_new() creates a new B<SSL_CTX> object as framework to establish 15 SSL_CTX_new() creates a new B<SSL_CTX> object as framework to establish
16 TLS/SSL enabled connections. 16 TLS/SSL enabled connections.
17 17
18 =head1 NOTES 18 =head1 NOTES
19 19
20 The SSL_CTX object uses B<method> as connection method. The methods exist 20 The SSL_CTX object uses B<method> as connection method. The methods exist
21 in a generic type (for client and server use), a server only type, and a 21 in a generic type (for client and server use), a server only type, and a
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 The return value points to an allocated SSL_CTX object. 85 The return value points to an allocated SSL_CTX object.
86 86
87 =back 87 =back
88 88
89 =head1 SEE ALSO 89 =head1 SEE ALSO
90 90
91 L<SSL_CTX_free(3)|SSL_CTX_free(3)>, L<SSL_accept(3)|SSL_accept(3)>, 91 L<SSL_CTX_free(3)|SSL_CTX_free(3)>, L<SSL_accept(3)|SSL_accept(3)>,
92 L<ssl(3)|ssl(3)>, L<SSL_set_connect_state(3)|SSL_set_connect_state(3)> 92 L<ssl(3)|ssl(3)>, L<SSL_set_connect_state(3)|SSL_set_connect_state(3)>
93 93
94 =cut 94 =cut
OLDNEW
« no previous file with comments | « openssl/doc/crypto/threads.pod ('k') | openssl/doc/ssl/SSL_CTX_set_mode.pod » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698