Home | History | Annotate | Download | only in threads

Lines Matching full:s_bio

428 	BIO *s_bio=NULL;
456 s_bio=BIO_new(BIO_f_ssl());
457 if ((c_bio == NULL) || (s_bio == NULL)) goto err;
465 BIO_set_ssl(s_bio,s_ssl,(ctx[3] == NULL)?BIO_CLOSE:BIO_NOCLOSE);
479 i=(int)BIO_pending(s_bio);
588 i=BIO_read(s_bio,sbuf,100);
593 if (BIO_should_retry(s_bio))
595 if (BIO_should_read(s_bio))
597 if (BIO_should_write(s_bio))
625 i=BIO_write(s_bio,"hello from server\n",18);
630 if (BIO_should_retry(s_bio))
632 if (BIO_should_read(s_bio))
634 if (BIO_should_write(s_bio))
695 if (s_bio != NULL) BIO_free(s_bio);