aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/bio
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-12-19 14:08:18 +0100
committerRichard Levitte <levitte@openssl.org>2016-12-19 20:08:30 +0100
commit992155d0ea1d59d20f0c242ea400434cd8370fe1 (patch)
tree0672fc3d401834b5366d51d928ec0d51dd2c6b78 /crypto/bio
parentc0aa6b814e8f4d2c50d084a74a1908ec0f400aa0 (diff)
downloadopenssl-992155d0ea1d59d20f0c242ea400434cd8370fe1.tar.gz
Add bwrite_conv and bread_conv values to methods_dgramp_sctp
Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/2116)
Diffstat (limited to 'crypto/bio')
-rw-r--r--crypto/bio/bss_dgram.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/crypto/bio/bss_dgram.c b/crypto/bio/bss_dgram.c
index 89936ff177..0b1ab94b0d 100644
--- a/crypto/bio/bss_dgram.c
+++ b/crypto/bio/bss_dgram.c
@@ -91,7 +91,11 @@ static const BIO_METHOD methods_dgramp = {
static const BIO_METHOD methods_dgramp_sctp = {
BIO_TYPE_DGRAM_SCTP,
"datagram sctp socket",
+ /* TODO: Convert to new style write function */
+ bwrite_conv,
dgram_sctp_write,
+ /* TODO: Convert to new style write function */
+ bread_conv,
dgram_sctp_read,
dgram_sctp_puts,
NULL, /* dgram_gets, */