Lines Matching refs:SSL_get_wbio
234 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_QUERY_MTU, 0, NULL); in dtls1_do_write()
242 BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SET_MTU, in dtls1_do_write()
253 curr_mtu = mtu - BIO_wpending(SSL_get_wbio(s)); in dtls1_do_write()
257 else if ( ( ret = BIO_flush(SSL_get_wbio(s))) <= 0) in dtls1_do_write()
260 if ( BIO_wpending(SSL_get_wbio(s)) + s->init_num >= mtu) in dtls1_do_write()
262 ret = BIO_flush(SSL_get_wbio(s)); in dtls1_do_write()
290 curr_mtu = s->d1->mtu - BIO_wpending(SSL_get_wbio(s)) - in dtls1_do_write()
296 ret = BIO_flush(SSL_get_wbio(s)); in dtls1_do_write()
341 if ( BIO_ctrl(SSL_get_wbio(s), in dtls1_do_write()
343 s->d1->mtu = BIO_ctrl(SSL_get_wbio(s), in dtls1_do_write()
1293 (void)BIO_flush(SSL_get_wbio(s)); in dtls1_retransmit_message()