aboutsummaryrefslogtreecommitdiffstats
path: root/doc/ssl/SSL_want.pod
diff options
context:
space:
mode:
authorNils Larsch <nils@openssl.org>2005-03-30 11:50:14 +0000
committerNils Larsch <nils@openssl.org>2005-03-30 11:50:14 +0000
commitc3e6402857a60f61cac60d56793e8a8b79cebe90 (patch)
tree54954e4ee45251fbbdf5101462a6e6a16a5b0523 /doc/ssl/SSL_want.pod
parent0821bcd4de85b527281714dd6c4d9683f0e713c4 (diff)
downloadopenssl-c3e6402857a60f61cac60d56793e8a8b79cebe90.tar.gz
update docs (recent constification)
Diffstat (limited to 'doc/ssl/SSL_want.pod')
-rw-r--r--doc/ssl/SSL_want.pod10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/ssl/SSL_want.pod b/doc/ssl/SSL_want.pod
index 50cc89db80..c0059c0d4a 100644
--- a/doc/ssl/SSL_want.pod
+++ b/doc/ssl/SSL_want.pod
@@ -8,11 +8,11 @@ SSL_want, SSL_want_nothing, SSL_want_read, SSL_want_write, SSL_want_x509_lookup
#include <openssl/ssl.h>
- int SSL_want(SSL *ssl);
- int SSL_want_nothing(SSL *ssl);
- int SSL_want_read(SSL *ssl);
- int SSL_want_write(SSL *ssl);
- int SSL_want_x509_lookup(SSL *ssl);
+ int SSL_want(const SSL *ssl);
+ int SSL_want_nothing(const SSL *ssl);
+ int SSL_want_read(const SSL *ssl);
+ int SSL_want_write(const SSL *ssl);
+ int SSL_want_x509_lookup(const SSL *ssl);
=head1 DESCRIPTION