aboutsummaryrefslogtreecommitdiff
path: root/ssl/bio_ssl.c
diff options
context:
space:
mode:
authorDaniel Bevenius <daniel.bevenius@gmail.com>2017-12-18 07:04:48 +1000
committerPauli <paul.dale@oracle.com>2017-12-18 07:04:48 +1000
commitb4ff66223b53ad9d2f5b4efd75bf8d52cc59c8dd (patch)
treefda5a73b22f6001cf68349687c59da6711b9b278 /ssl/bio_ssl.c
parentfce78bd4ede74d4fa7bd1c8195d8f7bc9403bd4c (diff)
downloadopenssl-b4ff66223b53ad9d2f5b4efd75bf8d52cc59c8dd.zip
openssl-b4ff66223b53ad9d2f5b4efd75bf8d52cc59c8dd.tar.gz
openssl-b4ff66223b53ad9d2f5b4efd75bf8d52cc59c8dd.tar.bz2
Add comments to NULL func ptrs in bio_method_st
This commit adds comments to bio_method_st definitions where the function pointers are defined as NULL. Most of the structs have comments but some where missing and not all consitent. CLA: trivial Reviewed-by: Paul Dale <paul.dale@oracle.com> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/4881)
Diffstat (limited to 'ssl/bio_ssl.c')
-rw-r--r--ssl/bio_ssl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ssl/bio_ssl.c b/ssl/bio_ssl.c
index ccc0c76..d1876d8 100644
--- a/ssl/bio_ssl.c
+++ b/ssl/bio_ssl.c
@@ -37,11 +37,11 @@ static const BIO_METHOD methods_sslp = {
BIO_TYPE_SSL,
"ssl",
ssl_write,
- NULL,
+ NULL, /* ssl_write_old, */
ssl_read,
- NULL,
+ NULL, /* ssl_read_old, */
ssl_puts,
- NULL, /* ssl_gets, */
+ NULL, /* ssl_gets, */
ssl_ctrl,
ssl_new,
ssl_free,