Lines Matching refs:ssl_bio
21 BIO *ssl_bio; member
142 conn->ssl_bio = out; in new_conn()
158 l = BIO_write(conn->ssl_bio, buf, buf_len); in tx()
160 if (BIO_should_retry(conn->ssl_bio)) { in tx()
161 conn->tx_need_rx = BIO_should_read(conn->ssl_bio); in tx()
183 l = BIO_read(conn->ssl_bio, buf, buf_len); in rx()
185 if (BIO_should_retry(conn->ssl_bio)) { in rx()
186 conn->rx_need_tx = BIO_should_write(conn->ssl_bio); in rx()
205 if (!BIO_get_rpoll_descriptor(conn->ssl_bio, &d)) in get_conn_fd()
210 return BIO_get_fd(conn->ssl_bio, NULL); in get_conn_fd()
283 BIO_free_all(conn->ssl_bio); in teardown()