Check if this is BIO mode
(&self)
| 2380 | impl PySSLSocket { |
| 2381 | // Check if this is BIO mode |
| 2382 | pub(crate) fn is_bio_mode(&self) -> bool { |
| 2383 | self.incoming_bio.is_some() && self.outgoing_bio.is_some() |
| 2384 | } |
| 2385 | |
| 2386 | // Get incoming BIO reference (for EOF checking) |
| 2387 | pub(crate) fn incoming_bio(&self) -> Option<PyObjectRef> { |
no outgoing calls
no test coverage detected