diff options
author | Richard Levitte <levitte@openssl.org> | 2016-12-19 14:08:18 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2016-12-19 20:08:30 +0100 |
commit | 992155d0ea1d59d20f0c242ea400434cd8370fe1 (patch) | |
tree | 0672fc3d401834b5366d51d928ec0d51dd2c6b78 /crypto/bio | |
parent | Fix erroneous goto lable (diff) | |
download | openssl-992155d0ea1d59d20f0c242ea400434cd8370fe1.tar.xz openssl-992155d0ea1d59d20f0c242ea400434cd8370fe1.zip |
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.c | 4 |
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, */ |