Check if incoming BIO has EOF (for BIO mode only)
(&self)
| 2460 | |
| 2461 | // Check if incoming BIO has EOF (for BIO mode only) |
| 2462 | fn is_bio_eof(&self) -> bool { |
| 2463 | match self { |
| 2464 | SslConnection::Socket(_) => false, |
| 2465 | SslConnection::Bio(stream) => stream.get_ref().inbio.eof_written.load(), |
| 2466 | } |
| 2467 | } |
| 2468 | } |
| 2469 | |
| 2470 | #[pyattr] |