summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-10-21 14:35:26 +0100
committerMatt Caswell <matt@openssl.org>2016-10-28 09:48:54 +0100
commitf42fd819d60c5ebbcfd7bff6173b89664ab2fde1 (patch)
tree2045a9b8dbb35d826c298bccb5ca1cbacc640a41 /include
parentbb5310bed5ab14747cad1f6a57aa3b075ca4af65 (diff)
Tweaks based on review feedback of BIO size_t work
Rename some parameters. Also change handling of buffer sizes >INT_MAX in length. Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'include')
-rw-r--r--include/openssl/bio.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/openssl/bio.h b/include/openssl/bio.h
index 301e01aa69..7ecd46049b 100644
--- a/include/openssl/bio.h
+++ b/include/openssl/bio.h
@@ -552,10 +552,10 @@ int BIO_get_shutdown(BIO *a);
void BIO_vfree(BIO *a);
int BIO_up_ref(BIO *a);
int BIO_read(BIO *b, void *data, int len);
-int BIO_read_ex(BIO *b, void *out, size_t outl, size_t *read);
+int BIO_read_ex(BIO *b, void *data, size_t datal, size_t *read);
int BIO_gets(BIO *bp, char *buf, int size);
int BIO_write(BIO *b, const void *data, int len);
-int BIO_write_ex(BIO *b, const void *in, size_t inl, size_t *written);
+int BIO_write_ex(BIO *b, const void *data, size_t datal, size_t *written);
int BIO_puts(BIO *bp, const char *buf);
int BIO_indent(BIO *b, int indent, int max);
long BIO_ctrl(BIO *bp, int cmd, long larg, void *parg);