summaryrefslogtreecommitdiffstats
path: root/doc/crypto/BIO_s_socket.pod
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@google.com>2016-03-19 12:32:14 -0400
committerRich Salz <rsalz@openssl.org>2016-03-21 16:49:10 -0400
commit04f6b0fd9110c85c3c0d6d1172005d1c6755ac86 (patch)
tree3ce2eb3e6743161c6753a5344424a8fe72a0d97e /doc/crypto/BIO_s_socket.pod
parent52d86d9b8da9916acf337126a9ced850cb5ab2d3 (diff)
RT4660: BIO_METHODs should be const.
BIO_new, etc., don't need a non-const BIO_METHOD. This allows all the built-in method tables to live in .rodata. Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'doc/crypto/BIO_s_socket.pod')
-rw-r--r--doc/crypto/BIO_s_socket.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/crypto/BIO_s_socket.pod b/doc/crypto/BIO_s_socket.pod
index 1c8d3a9110..13efb50edc 100644
--- a/doc/crypto/BIO_s_socket.pod
+++ b/doc/crypto/BIO_s_socket.pod
@@ -8,7 +8,7 @@ BIO_s_socket, BIO_new_socket - socket BIO
#include <openssl/bio.h>
- BIO_METHOD *BIO_s_socket(void);
+ const BIO_METHOD *BIO_s_socket(void);
long BIO_set_fd(BIO *b, int fd, long close_flag);
long BIO_get_fd(BIO *b, int *c);