Lines Matching refs:wbio
11 void SSL_set_bio(SSL *ssl, BIO *rbio, BIO *wbio);
13 void SSL_set0_wbio(SSL *s, BIO *wbio);
30 the BIO B<wbio> for the write operations of the B<ssl> object. Note that if the
31 rbio and wbio are the same then SSL_set0_rbio() and SSL_set0_wbio() each take
36 If using a custom BIO, B<wbio> must implement
39 If flushing is unnecessary with B<wbio>, L<BIO_flush(3)> should return one and
43 that it connects both the B<rbio> and the B<wbio> at the same time, and
44 transfers the ownership of B<rbio> and B<wbio> to B<ssl> according to
51 If neither the B<rbio> or B<wbio> have changed from their previous values
56 If the B<rbio> and B<wbio> parameters are different and both are different
59 reference is consumed for the wbio.
63 If the B<rbio> and B<wbio> parameters are the same and the B<rbio> is not
68 If the B<rbio> and B<wbio> parameters are the same and the B<rbio> is the
73 If the B<rbio> and B<wbio> parameters are different and the B<rbio> is the
75 previously set value then one reference is consumed for the B<wbio> and no
80 If the B<rbio> and B<wbio> parameters are different and the B<wbio> is the
81 same as the previously set value and the old B<rbio> and B<wbio> values
83 and no references are consumed for the B<wbio>.
87 If the B<rbio> and B<wbio> parameters are different and the B<wbio>
89 previously set value and the old B<rbio> and B<wbio> values were different
91 reference is consumed for the B<wbio>.