Home | History | Annotate | Download | only in ssl

Lines Matching refs:s_bio

1572 	BIO *s_bio=NULL;
1591 s_bio=BIO_new(BIO_f_ssl());
1592 if ((c_bio == NULL) || (s_bio == NULL))
1604 BIO_set_ssl(s_bio,s_ssl,BIO_NOCLOSE);
1616 i=(int)BIO_pending(s_bio);
1740 i=BIO_read(s_bio,sbuf,sizeof(cbuf));
1745 if (BIO_should_retry(s_bio))
1747 if (BIO_should_read(s_bio))
1749 if (BIO_should_write(s_bio))
1787 i=BIO_write(s_bio,sbuf,j);
1792 if (BIO_should_retry(s_bio))
1794 if (BIO_should_read(s_bio))
1796 if (BIO_should_write(s_bio))
1853 if (s_bio != NULL) BIO_free_all(s_bio);